@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f4ef;
    overflow-x:hidden;
    color:#2c241f;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}



/* NAVBAR */

.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:26px 0;
}

.nav-container{
    width:86%;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-main{
    font-family:'Cormorant Garamond',serif;
    font-size:31px;
    color:#d4aa61;
    font-weight:500;
}

.logo-sub{
    font-size:10px;
    letter-spacing:4px;
    color:#c49c5a;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:36px;
}

.nav-links a{
    color:rgba(255,255,255,0.82);
    font-size:14px;
    letter-spacing:1px;
    font-weight:400;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#d4aa61;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:24px;
}

.phone{
    color:rgba(255,255,255,0.84);
    font-size:13px;
}

.appointment-btn{
    background:#d3a55a;
    color:#fff;
    padding:15px 24px;
    font-size:11px;
    letter-spacing:1.5px;
    font-weight:600;
    transition:.3s;
}

.appointment-btn:hover{
    background:#bf9249;
}



/* HERO */

.treatment-hero{
    position:relative;
    height:620px;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
}

.hero-content{
    position:relative;
    z-index:2;

    width:86%;
    margin:auto;
    padding-top:70px;
}

.mini-heading{
    display:block;
    margin-bottom:24px;

    color:#d2a255;
    font-size:11px;
    letter-spacing:4px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    line-height:.96;
    color:#fff;
    font-weight:500;
    margin-bottom:24px;
}

.hero-content p{
    font-size:17px;
    color:#ece6df;
    line-height:1.9;
}



/* OVERVIEW */

.overview-section{
    padding:115px 0 80px;
    background:#f7f4ef;
}

.overview-container{
    width:72%;
    margin:auto;
}

.overview-box{
    max-width:760px;
}

.overview-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:46px;
    font-weight:500;
    margin-bottom:14px;
    color:#2d241f;
}

.gold-line{
    width:60px;
    height:1px;
    background:#c79d59;
    margin-bottom:30px;
}

.overview-box p{
    color:#70655c;
    font-size:15px;
    line-height:2;
}



/* BENEFITS */

.benefits-section{
    padding:40px 0 110px;
}

.benefits-container{
    width:72%;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:110px;
}

.benefit-column h3{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    color:#2d241f;
    font-weight:500;
    margin-bottom:32px;
}

.benefit-column ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:20px;

    color:#6d635b;
    font-size:15px;
    line-height:1.8;
}

.benefit-column ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;

    color:#d1a456;
    font-size:15px;
}



/* PROCEDURE */

.procedure-section{
    padding:120px 0;
    background:#fbf8f4;
}

.procedure-container{
    width:58%;
    margin:auto;
}

.procedure-container h2{
    text-align:center;

    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#2d241f;
    font-weight:500;

    margin-bottom:70px;
}

.procedure-steps{
    display:flex;
    flex-direction:column;
    gap:34px;
}

.step{
    display:flex;
    align-items:center;
    gap:36px;

    padding-bottom:24px;
    border-bottom:1px solid #e7ddd2;
}

.step span{
    color:#cfa052;
    font-size:20px;
    min-width:40px;
    font-family:'Cormorant Garamond',serif;
}

.step p{
    color:#6f645b;
    font-size:15px;
    line-height:1.8;
}

/* RESULT STRIP */

.results-strip{
    background:
    linear-gradient(rgba(25,18,13,.82),rgba(25,18,13,.82)),
    url('dark-texture.jpg') center/cover no-repeat;

    padding:105px 20px;
    text-align:center;
}

.results-content span{
    display:block;
    margin-bottom:20px;

    color:#d0a45a;
    font-size:11px;
    letter-spacing:4px;
}

.results-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    line-height:1.1;
    color:#fff;
    font-weight:500;

    margin-bottom:22px;
}

.results-content p{
    color:#d3cbc3;
    font-size:15px;
    line-height:1.9;

    margin-bottom:36px;
}

.gallery-btn{
    display:inline-block;

    background:#d3a55a;
    color:#fff;

    padding:18px 36px;

    font-size:11px;
    letter-spacing:2px;
    font-weight:600;

    transition:.3s;
}

.gallery-btn:hover{
    background:#bf9249;
}



/* FAQ */

.faq-section{
    padding:120px 0;
    background:#f7f4ef;
}

.faq-container{
    width:58%;
    margin:auto;
}

.faq-container h2{
    text-align:center;

    font-family:'Cormorant Garamond',serif;
    font-size:50px;
    color:#2c241f;
    font-weight:500;

    margin-bottom:60px;
}

.faq-box{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:#f4f1ec;
    border:1px solid #e8dfd5;
}

.faq-question{
    width:100%;

    background:none;
    border:none;
    outline:none;

    padding:28px 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    color:#41362e;
    font-size:15px;
    font-weight:500;
}

.faq-question span{
    color:#cfa052;
    font-size:24px;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 30px 28px;

    color:#6d635b;
    font-size:14px;
    line-height:1.9;
}



/* CTA */

.consultation-section{
    padding:0 0 120px;
}

.consultation-box{
    width:72%;
    margin:auto;

    background:
    linear-gradient(135deg,#b4853d,#ddb66d,#bc8e46);

    padding:100px 70px;

    text-align:center;
}

.consult-small{
    color:#fff;
    font-size:11px;
    letter-spacing:4px;

    margin-bottom:24px;
}

.consultation-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1;

    color:#fff;
    font-weight:500;

    margin-bottom:30px;
}

.consultation-box h2 span{
    text-decoration:underline;
}

.consult-text{
    max-width:760px;
    margin:auto auto 42px;

    color:#f7f2ea;
    font-size:16px;
    line-height:1.9;
}

.consult-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
}

.consult-btn{
    padding:18px 34px;

    font-size:12px;
    letter-spacing:2px;
    font-weight:600;

    transition:.3s;
}

.dark-consult-btn{
    background:#2a201a;
    color:#fff;
}

.dark-consult-btn:hover{
    background:#1d1511;
}

.light-consult-btn{
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
}

.light-consult-btn:hover{
    background:rgba(255,255,255,.1);
}



/* FOOTER */

.footer{
    background:
    linear-gradient(90deg,#231a15,#34261f,#231a15);

    padding-top:95px;
}

.footer-container{
    width:72%;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1.2fr;
    gap:70px;

    padding-bottom:70px;
}

.footer-brand h2{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    color:#d3a55a;
    font-weight:500;

    margin-bottom:10px;
}

.footer-brand span{
    display:block;

    color:#bc9558;
    font-size:11px;
    letter-spacing:4px;

    margin-bottom:28px;
}

.footer-brand p{
    color:#bdb3a9;
    font-size:14px;
    line-height:2;
}

.footer-socials{
    display:flex;
    gap:12px;

    margin-top:28px;
}

.footer-socials a{
    width:36px;
    height:36px;

    border:1px solid rgba(255,255,255,.18);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    transition:.3s;
}

.footer-socials a:hover{
    background:#c89d56;
    border-color:#c89d56;
}

.footer-col h4{
    color:#c89d56;
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:28px;
}

.footer-col ul li{
    margin-bottom:16px;
}

.footer-col ul li a{
    color:#d0c7bf;
    font-size:14px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#d3a55a;
}

.footer-col p{
    color:#d0c7bf;
    font-size:14px;
    line-height:1.9;
    margin-bottom:16px;
}



/* FOOTER BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 14%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    color:#9d9085;
    font-size:12px;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#9d9085;
    font-size:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#d3a55a;
}



/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:28px;
    bottom:28px;

    background:#25d366;
    color:#fff;

    padding:15px 24px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
}



/* RESPONSIVE */

@media(max-width:1200px){

    .benefits-container,
    .footer-container,
    .consultation-box,
    .overview-container{
        width:86%;
    }

    .faq-container,
    .procedure-container{
        width:82%;
    }

    .hero-content{
        width:86%;
    }

}



@media(max-width:900px){

    .nav-container{
        width:92%;
        flex-direction:column;
        gap:22px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero-content h1{
        font-size:56px;
    }

    .benefits-container{
        grid-template-columns:1fr;
        gap:70px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        padding:28px 8%;
    }

    .consultation-box{
        padding:80px 40px;
    }

    .consultation-box h2{
        font-size:56px;
    }

    .results-content h2{
        font-size:44px;
    }

}



@media(max-width:600px){

    .hero-content h1{
        font-size:40px;
        line-height:1.05;
    }

    .hero-content p{
        font-size:15px;
    }

    .overview-box h2,
    .procedure-container h2,
    .faq-container h2{
        font-size:38px;
    }

    .consultation-box h2{
        font-size:40px;
    }

    .results-content h2{
        font-size:36px;
    }

    .consult-buttons{
        flex-direction:column;
    }

    .consultation-box{
        width:90%;
        padding:60px 24px;
    }

    .faq-container,
    .procedure-container,
    .overview-container,
    .benefits-container,
    .footer-container{
        width:90%;
    }

    .footer-bottom{
        padding:24px 5%;
    }

    .whatsapp-btn{
        right:18px;
        bottom:18px;
        padding:13px 20px;
    }

}



.sub-menu{
    list-style:none;
    padding:0;
    margin:0;
}

/* =========================
   NAVBAR DROPDOWN FIX
========================= */

.dropdown{
    position:relative;
}

.sub-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    min-width:280px;

    background:#ffffff;
    border-radius:15px;

    padding:10px 0;
    margin-top:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:none;
    z-index:99999;
}

.sub-menu li{
    width:100%;
}

.sub-menu li a{
    display:block;
    padding:12px 20px;
    color:#2b211b !important;
    font-size:14px !important;
    text-transform:none !important;
    letter-spacing:.5px !important;
    transition:.3s;
}

.sub-menu li a:hover{
    background:#f7f4ef;
    color:#c79b5f !important;
    padding-left:28px;
}

/* Desktop Hover */

@media(min-width:901px){

    .dropdown:hover .sub-menu{
        display:block;
        animation:dropdownFade .3s ease;
    }

}

/* Mobile */

@media(max-width:900px){

    .dropdown{
        width:100%;
    }

    .sub-menu{
        position:static;
        transform:none;
        width:90%;
        margin:10px auto;
        box-shadow:none;
        border:1px solid #e7ded2;
        border-radius:10px;
    }

    .sub-menu li a{
        text-align:center;
        padding:10px;
    }
}

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateX(-50%) translateY(10px);
    }
    to{
        opacity:1;
        transform:translateX(-50%) translateY(0);
    }
}

.sub-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    min-width:280px;

    background:#fff;
    border-radius:15px;

    padding:10px 0;

    margin-top:0;   /* change */

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:none;
    z-index:99999;
}

/* ===================================
   PREMIUM GLASSMORPHISM NAVBAR
=================================== */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    max-width:1600px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 35px;

    background:
    rgba(63, 44, 38, 0.678);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.15);
    border-radius:60px;

    box-shadow:0 10px 40px rgba(0,0,0,.15);

    z-index:99999;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-main{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    color:#d4aa61;
    font-weight:500;
}

.logo-sub{
    font-size:10px;
    letter-spacing:4px;
    color:#d4aa61;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-links a{
    color:#fff;
    font-size:14px;
    letter-spacing:0.5px;
    
    transition:.3s;
}

.nav-links a:hover{
    color:#d4aa61;
}

.nav-btn{
    padding:14px 26px;
    border-radius:40px;
    background:#c59b5f;
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.nav-btn:hover{
    background:#fff;
    color:#1f1712;
}

/* ===================
   DROPDOWN
=================== */

.dropdown{
    position:relative;
}

.dropdown::after{
    content:'';
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:20px;
}

.sub-menu{
    position:absolute;
    top:calc(100% + 8px);
    left:50%;
    transform:translateX(-50%);

    min-width:300px;
    background:#fff;

    border-radius:16px;
    padding:10px 0;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    display:none;
    z-index:999999;
}

.dropdown:hover .sub-menu{
    display:block;
}

.sub-menu li{
    width:100%;
}

.sub-menu li a{
    display:block;
    padding:12px 22px;
    color:#2b211b !important;
    font-size:14px !important;
    text-transform:none !important;
    letter-spacing:.3px !important;
}

.sub-menu li a:hover{
    background:#f7f4ef;
    color:#c59b5f !important;
}

/* ===================
   MOBILE NAVBAR
=================== */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#fff;
}

@media(max-width:900px){

    .navbar{
        padding:18px 22px;
        border-radius:25px;
    }

    .hamburger{
        display:flex;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:110%;
        left:0;
        width:100%;
        background:#fff;
        border-radius:20px;
        padding:20px;
        flex-direction:column;
        gap:15px;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        color:#2b211b;
    }

    .sub-menu{
        position:static;
        transform:none;
        width:100%;
        min-width:100%;
        margin-top:10px;
        box-shadow:none;
        border:1px solid #eee;
    }
}




.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    position:relative;
}

.logo img{
    height:55px;
    width:auto;
}

.hamburger{
    display:flex;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:9999;
}

.hamburger span{
    width:32px;
    height:3px;
    background:#fff;
    border-radius:10px;
}

/* Menu hidden by default */

.nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:350px;
    background:#4b310aab;
    padding:30px;
    display:none;
    flex-direction:column;
    list-style:none;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.nav-links.active{
    display:flex;
}

.nav-btn{
    display:none;
}




.book-now-btn{
    position: fixed;
    right: 20px;
    bottom: 90px; /* WhatsApp button ke upar/neeche adjust kar sakta hai */
    
    background: linear-gradient(135deg,#c79b5f,#e3c082);
    color: #fff;
    
    padding: 8px 16px;
    border-radius: 8px;
    
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    
    z-index: 9999;
    transition: .3s;
    margin-bottom: 1rem;
}

.book-now-btn:hover{
    transform: translateY(-3px);
}


.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:16px;
    transition:.35s ease;
}

.footer-social a:hover{
    background:#8db69a;
    color:#1d3127;
    border-color:#8db69a;
    transform:translateY(-4px);
}