/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #812972; /* Deep Purple/Black */
    --secondary-color: #2d1b4e; /* Lighter Purple */
   --accent-gradient: linear-gradient(90deg, #FAAC4D, #FFF212);
    --accent-color: #FAAC4D; /* fallback ke liye solid color */
    --text-light: #f5f5f5;
    --text-dim: rgba(219, 214, 214, 0.945);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #812972; /* tera current body color */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- NAVIGATION (Fixed & Responsive) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: white; 
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(129, 41, 114, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo {
    font-size: 0.5rem;
    /* font-weight: 700;
    color: var(--accent-color);
    z-index: 1001; */
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-size: 1.1rem;
    color: #883A74;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #FAAC4D;
    transition: all 0.3s;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #812972;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1000;
    padding: 0.8rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #812972;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 0 0.5rem 1.5rem;
        border: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        content: '\f078';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 0.5rem;
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}



/* end nvbar */

/* --- HERO BANNER (VIDEO BACKGROUND) --- */
/* --- HERO BANNER WITH VIDEO BACKGROUND --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* navbar space */
    overflow: hidden;
    background-color: #0f0518; /* dark fallback */
}

/* Video full cover style */
.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video,
.video-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark overlay – text ke liye important */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #81297257;
    z-index: 1;
}

/* Rotating mandala */
.cosmic-layers {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.rotating-zodiac {
    position: absolute;
    animation: slowRotate 90s linear infinite;
}

.main-zodiac {
    width: 65vw;
    max-width: 900px;
    opacity: 0.60;
    filter: brightness(1.99) contrast(2.9) drop-shadow(0 0 50px rgba(14, 12, 8, 0.1));
    animation-duration: 75s;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Content sabse upar */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 920px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.75), 0 0 35px rgba(212,175,85,0.35);
}

.hero p {
    font-size: 21px;
    margin-bottom: 2.8rem;
    opacity: 0.92;
    letter-spacing: 0.6px;
}

/* Mobile */
@media (max-width: 768px) {
    .main-zodiac {
        width: 90vw;
        opacity: 0.38;
    }
    
    .hero h1 {
        font-size: clamp(2.8rem, 9vw, 4.8rem);
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/* Baaki sab sections same rakhe hain (about, services, booking, faq, footer) */
/* Sirf hero ke liye video background set kiya hai, purana image background hata diya */

/* --- SECTION GLOBAL --- */
section {
    padding: 5rem 10%;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
}

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 0.5rem;
        }

        .section-title .divider {
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 0 auto;
        }

        /* --- ABOUT --- */
       /* --- ABOUT SECTION (Mystical Upgrade) --- */
.about-section {
    background: linear-gradient(#872577bd, #81297282), url('../images/about_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 10% 7rem;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-img {
    flex: 1 1 340px;
    max-width: 480px;
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6),
                0 0 0 2px rgba(212, 175, 55, 0.15);
    transition: transform 0.5s ease;
}

.about-img:hover .img-wrapper {
    transform: translateY(-10px);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,11,46,0.1), rgba(212,175,55,0.08) 50%, rgba(26,11,46,0.25));
    pointer-events: none;
}

.about-text {
    flex: 1 1 340px;
    max-width: 580px;
}

.about-text h3 {
    font-size: 2.1rem;
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.about-text p {
    margin-bottom: 1.6rem;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .about-container {
        gap: 3.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
        /* --- SERVICES --- */
       /* --- SERVICES SECTION (Mystical Design with Center Rotating Chakra) --- */
/* --- SERVICES SECTION (Left-Right 3+3 Cards with Center Chakra) --- */
.services {
    background: linear-gradient(rgb(124 6 103 / 0%), rgb(19 19 19 / 85%)), url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 7rem 8%;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    z-index: 0;
}

.services-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 35%; /* left-right columns */
}

.services-chakra-center {
    width: 30%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: relative;
    pointer-events: none;
}

.rotating-chakra {
    width: 100%;
    height: 100%;
    animation: slowRotate 70s linear infinite;
    filter:brightness(3.15) contrast(1.9) drop-shadow(0 0 70px rgba(212, 175, 55, 0.45));
    /* opacity: 0.28; */
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    padding: 2.2rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.11);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(12deg);
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* New Book Slot Button */
.book-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 8px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.book-btn:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.book-btn1 {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 8px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.book-btn1:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-wrapper {
        flex-direction: column;
        gap: 5rem;
    }
    
    .services-column {
        width: 80%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .services-column > .service-card {
        flex: 1 1 45%;
    }
    
    .services-chakra-center {
        width: 50%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 5%;
    }
    
    .services-column {
        flex-direction: column;
        width: 100%;
    }
    
    .services-column > .service-card {
        flex: 1 1 100%;
    }
    
    .services-chakra-center {
        width: 70%;
        max-width: none;
        opacity: 0.32;
    }
}




        /* --- FOOTER --- */
.site-footer {
    background: linear-gradient(rgb(10 10 10 / 72%), rgb(6 2 6 / 85%)), url('../images/testimonial-background.jpg');
    color: var(--text-light);
    padding: 5rem 8% 2rem;
    position: relative;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-dim);
    opacity: 0.9;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--text-dim);
    font-size: 1.6rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}



/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-bottom .copyright {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column ul {
        margin-bottom: 1.5rem;
    }
    
   
}

        /* --- MEDIA QUERIES (THE MAGIC FOR RESPONSIVENESS) --- */
        
        /* Tablet & Mobile Navigation Logic */
        @media (max-width: 991px) {
            .navbar {
                padding: 1rem 5%;
            }
            
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: var(--primary-color);
                width: 100%;
                height: calc(100vh - 70px); /* Fill rest of screen */
                text-align: center;
                transition: 0.3s;
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a, .nav-links .btn-gold {
                margin: 6px 1px;
                display: block;
                font-size: 18px;
            }
            
            section {
                padding: 4rem 5%;
            }
        }

        /* Mobile Phones */
        @media (max-width: 768px) {
           
          

            .about-container {
                gap: 2rem;
            }
            
            .section-title h2 {
                line-height: 1.3;
            }
        }



/* BLOG SECTION with Video Background */
.blog-section {
    position: relative;
    padding: 6rem 8%;
    overflow: hidden;
    min-height: 100vh; /* optional – pura screen cover karega */
}

/* Video Background */
.blog-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.blog-video-bg video,
.blog-video-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay (text padhne layak rahe) */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: #81297266; /* dark purple – adjust opacity agar light chahiye */
    z-index: -1;
}

/* Section Title (same rakh sakte ho) */
.blog-section .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section .section-title h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blog-section .section-title p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Blog Grid (same rakh sakte ho ya thoda tweak kar sakte ho) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: #8129728f;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.8rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more:hover {
    color: #fff;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}


/* TESTIMONIAL SECTION – Open Elegant Design */
.testimonial-section {
    background: linear-gradient(#8129724d, #812972),
                url('../images/testimonial-background.jpg') center center / cover no-repeat fixed;
    /* 
       ↑↑↑ Yeh image sabse achhi cosmic feel deti hai (deep space nebula with stars)
       Agar apni image chahiye to path change kar dena jaise: url('assets/images/testimonial-bg.jpg')
    */
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.testimonial-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.client-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '“';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -40px;
    right: -20px;
    transform: rotate(180deg);
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
}

.client-role {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.15);
    border: none;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.4);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}






.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.booking-box {
  background: #fff;
  padding: 25px;
  width: 600px;
  border-radius: 12px;
}

.booking-content {
  display: flex;
  gap: 20px;
}

.time-slots button {
  display: block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.modal-actions {
  margin-top: 15px;
  text-align: center;
}

.book-confirm {
  background: orange;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
}

.close-modal {
  background: #ffb3b3;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
}

