html {
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8fc;
    color:#333;
}

/* Navigation */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(255,255,255,.85);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.35);
    box-shadow:none;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:24px;
    font-weight:700;
    color:#7b3ff2;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    font-size:15px;
    letter-spacing:.5px;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:#7b3ff2;
}
.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#7b3ff2;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}
.book-btn{
    background:linear-gradient(135deg,#7b3ff2,#9c6bff);
    color:#fff;
    text-decoration:none;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(123,63,242,.35);
}

.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(123,63,242,.45);
}

/* Hero */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
}
.hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.35)
    );
    z-index:-1;
}

.hero-content{
    position:relative;
    z-index:2;
    transform:translateY(-30px);
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    color:#fff;
    font-size:68px;
    line-height:1.1;
    letter-spacing:-1px;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
    margin-bottom:20px;
}

.hero-content p{
    color:#fff;
    font-size:22px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.btn-primary{
    background:#fff;
    color:#7b3ff2;
}

.btn-secondary{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

/* Services */

.services{
    padding:100px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#7b3ff2;
}

.section-title p{
    margin-top:15px;
    color:#666;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card h3{
    color:#7b3ff2;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/* Mobile */

@media (max-width:768px){

    .navbar{
        padding:10px 8%;
        justify-content:space-between;
        flex-direction:row;
        position:relative;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
    }

    .nav-links.active{
        display:flex;
    }

    .book-btn{
        display:none;
    }

    .hero-content h1{
    font-size:48px;
    line-height:1.15;
}

    .hero-content p{
    font-size:17px;
    max-width:320px;
    margin:15px auto 35px;
}
}
/* Services */

.services{
    padding:100px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#7b3ff2;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    color:#7b3ff2;
}

.service-card p{
    padding:0 20px;
    color:#666;
    line-height:1.7;
}

.service-btn{
    display:inline-block;
    margin:20px;
    padding:12px 24px;
    background:#7b3ff2;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}
/* Price List */

.price-section{
    padding:100px 8%;
    background:#f8f8fc;
}

.price-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.price-card h3{
    color:#7b3ff2;
    margin-bottom:20px;
}

.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.price-item:last-child{
    border-bottom:none;
}

.price-item strong{
    color:#333;
}

.price-item button{
    background:#7b3ff2;
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

.price-item button:hover{
    background:#5d2fc2;
}

/* Floating WhatsApp */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:90px;
    width:56px;
    height:56px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:26px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.3s;
    z-index:999;
}

.floating-whatsapp:hover{
    transform: translateY(-3px) scale(1.08);
}

/* Floating Call */

.floating-call{
    position:fixed;
    right:20px;
    bottom:20px;
    width:56px;
    height:56px;
    background:#7B2FF7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:26px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.3s;
    z-index:999;
}

.floating-call:hover{
    transform: translateY(-3px) scale(1.08);
}
/* Gallery */

.gallery-section{

    padding:80px 8%;
    background:#111;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:40px;

}

.gallery-grid img{

    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/* Contact */

.contact-section{
    padding:100px 8%;
    background:#fff;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.contact-box{
    background:#f8f8fc;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-8px);
}

.contact-box i{
    font-size:42px;
    color:#7b3ff2;
    margin-bottom:20px;
}

.contact-box h3{
    margin-bottom:12px;
}

.contact-box p,
.contact-box a{
    color:#666;
    text-decoration:none;
}

/* Footer */

.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer h2{
    font-family:'Playfair Display',serif;
    color:#7b3ff2;
    margin-bottom:15px;
}

.footer p{
    color:#bbb;
    margin:8px 0;
}

.copyright{
    margin-top:20px;
    font-size:14px;
    color:#888;
}

/* Lightbox */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
}

.lightbox .close{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
/* Google Map */

.map-section{
    padding:0 8% 80px;
    background:#fff;
}

.map-section iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.map-button{
    text-align:center;
    margin-top:25px;
}

.map-button a{
    display:inline-block;
    background:#7b3ff2;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.map-button a:hover{
    background:#5d2fc2;
}

/* Hamburger Menu */

.menu-toggle{
    display:block;
    font-size:32px;
    cursor:pointer;
    color:#7b3ff2;
    transition:.3s;
}
.menu-toggle:hover{
    transform:scale(1.1);
}
@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        text-align:center;
        display:none;
        padding:20px 0;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
    }

    .nav-links.active{
        display:flex;
    }

    .book-btn{
        display:none;
    }
}
/* Testimonials */

.testimonial-section{
    padding:100px 8%;
    background:#f8f8fc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#f5b301;
    font-size:20px;
    margin-bottom:8px;
}

.testimonial-card span{
    color:#7b3ff2;
    font-weight:600;
}
/* Floating Telegram */

.floating-telegram{
    position:fixed;
    right:20px;
    bottom:160px;
    width:56px;
    height:56px;
    background:#229ED9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:26px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.3s;
    z-index:999;
}

.floating-telegram:hover{
    transform:translateY(-3px) scale(1.08);
}
