*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7f4ef;
  color:#2b211b;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}



/* NAVBAR */

.navbar{
  width:100%;
  padding:22px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #ebe3d9;
  background:#f7f4ef;
}



.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-btn{
  padding:14px 28px;
  background:#c59b5f;
  color:#fff;
  font-size:12px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  transition:0.3s;
}

.nav-btn:hover{
  background:#fff;
  color:#1f1712;
}

.nav-links{
  display:flex;
  gap:34px;
}

.nav-links a{
  color:#ffffff;
  font-size:15px;
  letter-spacing:0.5px;
  transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
  color:#c79b5f;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-right p{
  font-size:13px;
  color:#6d5b4f;
}

.book-btn{
  background:#c79b5f;
  color:#fff;
  padding:14px 22px;
  font-size:12px;
  letter-spacing:1px;
  transition:0.3s;
}

.book-btn:hover{
  background:#2a211b;
}

.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;
}

/* HERO */

.treatments-hero{
  padding:110px 20px 130px;
  text-align:center;
}

.small-heading{
  color:#c79b5f;
  font-size:12px;
  letter-spacing:4px;
  margin-bottom:22px;
}

.hero-content h1{
  font-family:'Cormorant Garamond',serif;
  font-size:88px;
  line-height:0.95;
  font-weight:400;
  color:#2b211b;
}

.hero-content h1 span{
  color:#c79b5f;
}

.line{
  width:80px;
  height:1px;
  background:#c79b5f;
  margin:35px auto;
}

.hero-text{
  max-width:760px;
  margin:auto;
  color:#6b5b4d;
  line-height:2;
  font-size:16px;
}



/* TREATMENTS */

.treatments-section{
  padding:0 80px 130px;
}

.treatments-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.treatment-card{
  background:#f7f4ef;
  border:1px solid #e7ddd1;
  display:grid;
  grid-template-columns:240px 1fr;
  min-height:250px;
  overflow:hidden;
  transition:0.4s;
}

.treatment-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.card-image{
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.treatment-card:hover .card-image img{
  transform:scale(1.06);
}

.card-content{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.card-content h3{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  font-weight:400;
  color:#2b211b;
  margin-bottom:18px;
}

.card-content p{
  color:#66584c;
  line-height:2;
  font-size:15px;
  margin-bottom:26px;
  max-width:320px;
}

.card-content a{
  color:#c79b5f;
  font-size:12px;
  letter-spacing:3px;
}

/* CTA SECTION */

.cta-section{
  padding:120px 80px;
  background:#f7f4ef;
}

.cta-box{
  max-width:1200px;
  margin:auto;
  background:linear-gradient(135deg,#bf9458,#e3c082);
  padding:100px 40px;
  text-align:center;
  box-shadow:0 30px 70px rgba(0,0,0,0.08);
}

.cta-box p{
  color:#fff;
  font-size:12px;
  letter-spacing:4px;
  margin-bottom:20px;
}

.cta-box h2{
  font-family:'Cormorant Garamond',serif;
  color:#fff;
  font-size:74px;
  line-height:1.05;
  font-weight:400;
  margin-bottom:28px;
}

.cta-box span{
  display:block;
  max-width:760px;
  margin:auto;
  color:#fff;
  line-height:2;
  margin-bottom:42px;
  font-size:15px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.primary-btn{
  background:#2a211b;
  color:#fff;
  padding:18px 34px;
  font-size:12px;
  letter-spacing:2px;
  transition:0.3s;
}

.primary-btn:hover{
  background:#fff;
  color:#2a211b;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.6);
  color:#fff;
  padding:18px 34px;
  font-size:12px;
  letter-spacing:2px;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#fff;
  color:#2a211b;
}



/* FOOTER */

.footer{
  background:#241b16;
  padding-top:100px;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  padding:0 80px 70px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo h3{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;
  color:#c79b5f;
  font-weight:400;
}

.footer-logo span{
  color:#b8945d;
  font-size:11px;
  letter-spacing:4px;
}

.footer-col p{
  color:#bbaea2;
  line-height:2;
  margin:22px 0;
  font-size:14px;
}

.social-icons{
  display:flex;
  gap:14px;
}

.social-icons a{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.footer-col h4{
  color:#c79b5f;
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:24px;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a,
.contact-list li{
  color:#bbaea2;
  font-size:14px;
  line-height:1.8;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#fff;
}



/* FOOTER BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:28px 80px;
}

.footer-bottom-content{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:#9e9083;
  font-size:13px;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#9e9083;
  font-size:13px;
  transition:0.3s;
}

.footer-links a:hover{
  color:#c79b5f;
}


/* WHATSAPP BUTTON */

.whatsapp-btn{
  position:fixed;
  right:30px;
  bottom:30px;
  background:#c79b5f;
  color:#fff;
  padding:16px 24px;
  font-size:13px;
  letter-spacing:1px;
  z-index:999;
  transition:0.3s;
}

.whatsapp-btn:hover{
  background:#2a211b;
}



/* ANIMATIONS */

.fade-up{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}



/* RESPONSIVE */

@media(max-width:1200px){

  .treatments-grid{
    grid-template-columns:1fr;
  }

}



@media(max-width:900px){

  .navbar{
    padding:24px 30px;
    flex-direction:column;
    gap:25px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }

  .nav-right{
    flex-direction:column;
    gap:16px;
  }

  .hero-content h1{
    font-size:58px;
  }

  .treatments-section,
  .cta-section{
    padding-left:30px;
    padding-right:30px;
  }

  .treatment-card{
    grid-template-columns:1fr;
  }

  .card-image img{
    height:320px;
  }

  .cta-box h2{
    font-size:48px;
  }

  .footer-container{
    grid-template-columns:1fr;
    padding:0 30px 60px;
  }

  .footer-bottom{
    padding:25px 30px;
  }

  .footer-bottom-content{
    flex-direction:column;
    align-items:flex-start;
  }

}



@media(max-width:600px){

  .hero-content h1{
    font-size:42px;
  }

  .hero-text{
    font-size:15px;
  }

  .card-content{
    padding:32px 24px;
  }

  .card-content h3{
    font-size:30px;
  }

  .cta-box{
    padding:70px 24px;
  }

  .cta-box h2{
    font-size:38px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .footer-links{
    gap:16px;
  }

  .whatsapp-btn{
    right:20px;
    bottom:20px;
    padding:14px 20px;
  }

}

.pulse{
  transform:scale(1.06);
}















.hero-content span{
    color:#d4a55d;
}

.hero-text{
    color:#f2f2f2;
    max-width:700px;
    margin:auto;
}
.line{

    width:0;
    height:2px;

    margin:30px auto;

    background:#d4a55d;

    animation:lineGrow 2s ease forwards;
}

@keyframes lineGrow{
    to{
        width:220px;
    }
}

.navbar{

    position:fixed;
    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:90%;

    backdrop-filter:blur(20px);

    background:
    rgba(63, 44, 38, 0.678);

    border:
    1px solid rgba(255,255,255,.12);

    border-radius:60px;

    padding:18px 40px;

    z-index:9999;

    box-shadow:
    0 10px 40px rgba(0,0,0,.15);
}

.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;
}




.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:90px;
    right:20px;
    width:350px;
    background:#111;
    padding:30px;
    display:none;
    flex-direction:column;
    border-radius:15px;
    z-index:999999;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.nav-links.active{
    display:flex !important;
}

.nav-links.active{
    display:flex !important;
    border:3px solid red;
}

.nav-btn{
    display:none;
}


#navLinks{
    display:none;
    position:absolute;
    top:90px;
    right:20px;

    width:350px;

    background:#4b310aab;
    border-radius:15px;

    padding:30px;

    flex-direction:column;
    gap:15px;

    z-index:999999;
}

#navLinks.active{
    display:flex !important;
}




.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);
}