:root{
  --gold:#DA9D44;
  --black:#2E2E2E;
  --white:#FFFFFF;
  --font-heading:"Cinzel", serif;
  --font-body:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}
html,body{scroll-behavior:smooth}
body{font-family:var(--font-body); color:var(--black); background:var(--white)}
.font-cinzel{font-family:var(--font-heading)}
.btn-gold{ --bs-btn-bg:var(--gold); --bs-btn-border-color:var(--gold); --bs-btn-color:#000 }
.section{padding:6rem 0}
.offcanvas-body { -webkit-overflow-scrolling: touch; }
html, body, header { transform:none !important; filter:none !important; }
header { overflow:visible !important; }

/* === BUTTON STYLES (flat, no radius) === */
.btn-black,
.btn-white,
.btn-golden,
.btn-blackGolden {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
}

/* Black button */
.btn-black {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-black:hover {
  background-color: var(--white);
  color: var(--black);
}

/* Black Golden button */
.btn-blackGolden {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-blackGolden:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* White button */
.btn-white {
  background-color: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Golden button */
.btn-golden {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-golden:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Header/UI fixes */
/* Header */
.nav-link{
  color: var(--black);
  font-weight: 400;
  letter-spacing:.02em;
  padding-bottom:.25rem;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus{
  color: var(--gold);
}

.activeButton{
  background-color:var(--black);
  color:white;
  padding:15px;
}
.activeButton:hover{
  background: var(--gold);
  color: white;
}

.offcanvas-footer{
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + .75rem);
}

/* === HERO SPLIT === */
.hero-split{
  min-height: 80vh;
  display: grid;
  place-items: center;
  background: var(--white);
}
.hero-side{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-left{  right: 50%; }
.hero-right{ left: 50%; }

/* Set your images */
.hero-left{  background-image: url("../../img/frontend/assets/images/hero-left.webp"); }
.hero-right{ background-image: url("../../img/frontend/assets/images/hero-right.webp"); }

/* vertical divider */

/* content */
.hero-content{ position: relative; z-index: 1; padding: 2rem; background-color:rgba(255, 255, 255, .8); }
.hero-logo{ height: 100px; }
@media (max-width: 991.98px){
  .hero-split{ min-height: 80vh; padding-block: 3.5rem; }
  /* stack images on mobile */
  .hero-left{ right:auto; bottom:50%; }
  .hero-right{ left:auto; top:50%; }
  .hero-divider{ display:none; }
  .hero-logo{ height: 60px; }
}

/* Mobile layout: stack images, keep them visible */
@media (max-width: 991.98px){
  .hero-split{ min-height: 100vh; }

  /* left half = top 50% */
  .hero-left{
    top: 0; left: 0; right: 0;
    height: 50vh; width: 100%;
  }

  /* right half = bottom 50% */
  .hero-right{
    bottom: 0; left: 0; right: 0;
    height: 50vh; width: 100%;
  }

  /* remove the center divider on mobile */
  .hero-divider{ display:none; }

  /* keep content centered over both images */
  .hero-content{
    color: var(--black);
    width: 100%;
    position: absolute; z-index: 1;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    padding: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    background-color: white;
  }
  .hero-logo{ height: 60px; }
}

/* === FEATURES STRIP === */
.features-strip{
  background-color: var(--gold);
}
.features-strip .feature-item{
  font-size: 1rem;
  font-weight: 500;
}
.features-strip i{
  font-size: 1.2rem;
}
@media (max-width: 767px){
  .features-strip .feature-item{
    font-size: 12px;
  }
}

/* === EXPERIENCE === */
.text-gold{ color: var(--gold); }
.experience{ padding-block: 6rem; }

.exp-collage{ max-width: 560px; margin-inline: auto; }
.exp-base{ width: 100%; }
.exp-top{
  position: absolute; top: 10%; right: -18px;
  width: 48%; object-fit: cover;
}
.exp-front{
  position: absolute; left: -10%; bottom: -10%;
  width: 42%; object-fit: cover;
}

/* title scale similar to reference */
.exp-title{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing:.02em; }

/* responsive */
@media (max-width: 991.98px){
  .experience{ padding-block: 3rem; }
  .exp-top{ top: -16px; right: -10px; width: 58%; }
  .exp-front{ right: 6%; bottom: -12%; width: 50%; }
}
@media (max-width: 575.98px){
  .exp-top{ width:50%;left:50%;top:-6% }        /* keep layout clean on small phones */
  .exp-front{ left: 5%; top: 50%; width: 40%; }
}

/* === EXCLUSIVE SECTION === */
.text-white-80{ color: rgba(255,255,255,.8); }

.exclusive-pane{
  background: var(--gold);
  padding-block: clamp(2.5rem, 4vw, 4rem);
}
.exclusive-inner{ max-width: 720px; }

.exclusive-img{
  background-image: url("../../img/frontend/assets/images/whywe.webp"); /* <- replace */
  background-size: cover;
  background-position: center;
  min-height: 420px; /* ensures height on mobile */
}

/* circle icon box for SVG */
.icon-circle{
  width: 70px; height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: 0 0 70px;
}
.icon-circle img,
.icon-circle svg{
  width: 40px; height: 40px; /* your SVG fits inside */
  display: block;
}

/* spacing tune on large screens */
@media (min-width: 992px){
  .exclusive-pane{ padding-block: 5rem; }
  .exclusive-img{ min-height: 100%; }
}

/* === SERVICES GRID === */
.text-gold{ color: var(--gold); }

.services .service-card{
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  background: #fff;
}
.service-img{
  width: 100%; height: 350px; object-fit: cover; display: block;
}
.service-title{
  margin-top: 15px;
  font-weight: 600;
  color: var(--black);
  font-size: 18px;
}

.services ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Hover overlay */
.service-overlay{
  position: absolute; inset: 0;
  background: rgba(218,157,68,.95); /* gold */
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.service-card:hover .service-overlay,
.service-card:focus-within .service-overlay{
  opacity: 1; transform: translateY(0);
}
.overlay-inner{ max-width: 90%; }
.overlay-inner ul li{
  padding: 5px 0;
}
/* Mobile: show overlay on tap via :active hint */
@media (hover: none){
  .overlay-inner ul li{padding: 2px 0}
  .service-card:active .service-overlay{ opacity:1; transform:translateY(0); }
}

/* === SPECIALIST === */
.specialist{
  /* soft gold using your token */
  background: rgba(218, 157, 68, .1);
  color: var(--black);
  padding-block: clamp(2.5rem, 4vw, 4rem);
}
.text-gold{ color: var(--gold); }

.doc-portrait{
  width: min(520px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.doc-portrait img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* === VISITING DOCTORS === */
.visiting{
  padding-block: 3rem 4rem;
}
.visiting .text-gold{ color: var(--gold); }

.doc-card{
  background: transparent;
  border-radius: .5rem;
  overflow: hidden;
}
.doc-card img{
  width: 100%; height: 350px; object-fit: cover; display: block;
}
.doc-meta{
  padding: .6rem .25rem 0;
  color: var(--black);
}
.doc-meta .name{ color: var(--black); font-weight: 600; }
.doc-meta .role{ color: var(--black); }

/* mobile tweaks */
@media (max-width: 575.98px){
  #specialist{
    text-align: center;
  }
  .doc-card img{ height: 200px; }
}

/* === FAQ === */
.faqs{ background: var(--gold); padding-block: 6rem; }
.text-white-80{ color: rgba(255,255,255,.8); }

/* accordion look: white bars with gold text and right chevron */
.faqs .accordion-item{ border: 0; background: transparent; }
.faqs .accordion-button{
  background: #fff;
  color: var(--gold);
  border-radius: 0;
  padding: 1.5rem 1.25rem;
  font-weight: 400;
  letter-spacing: .01em;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 21px;
}
.faqs .accordion-button::after{ display: none; }           /* hide default caret */
.faqs .accordion-button .bi{ transition: transform .2s ease; }
.faqs .accordion-button[aria-expanded="true"] .bi{ transform: rotate(90deg); }
.faqs .accordion-button:not(.collapsed){ background:#fff; color: var(--gold); box-shadow: none; }

.faqs .accordion-body{
  background: #fff;
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 1rem 1.25rem 1.25rem;
}

/* === APPOINTMENT === */
.appointment { padding-block: 6rem; }

.form-card{
  background: rgba(218,157,68,.08);            /* soft gold wash */
  padding: 2rem;
}

.form-card .form-control{
  border-radius: 0;
  border: 1px solid rgba(46,46,46,.25);
  background-color: #fff;
  color: var(--black);
  padding: .7rem .8rem;
}
.form-card .form-control::placeholder{ color: rgba(46,46,46,.55); }
.form-card .form-control:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 .1rem rgba(218,157,68,.15);
}

.form-card .form-check-input{
  border-radius: 0;
  border: 1px solid rgba(46,46,46,.35);
  accent-color: var(--gold);
}

.appointment .text-gold{ color: var(--gold); }

/* Footer */
.site-footer{
  background: var(--white) url("../../img/frontend/assets/images/bg-marble.webp") center/cover no-repeat;
  padding: 2.5rem 3.5rem;
}
.footer-logo{ height: 60px; }

.text-dark-60{ color: rgba(46,46,46,.75); }

/* Social buttons */
.social-btn{
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.social-btn:hover{ background: var(--gold); color: var(--white); }
.social-btn i{ font-size: 1.1rem; }
.social-btn img{ width: 22px; height: 22px; display:block; }


/* Global mobile spacing */
@media (max-width: 575.98px){
  .section{ padding: 3.25rem 0; }
  .display-5{ font-size: 2rem; }
  .service-img{ height: 400px; }
  .doc-card img{ height: 220px; }
}

/* HERO: unify mobile rules and remove white box behind text */
@media (max-width: 991.98px){
  .hero-split{ min-height: 100vh; }
  .hero-left,.hero-right{ left:0; right:0; width:100%; position:absolute; }
  .hero-left{ top:0; height:50vh; }
  .hero-right{ bottom:0; height:50vh; }
  .hero-divider{ display:none; }
  .hero-content{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    padding:1rem; background:rgba(255, 255, 255, .8); text-shadow:0 1px 2px rgba(0,0,0,.25);
    width:min(92%, 560px);
  }
}
/* Navbar: slimmer on phones */
@media (max-width: 575.98px){
  .navbar{ padding-block:.5rem !important; }
}

/* Privacy modal theming */
.privacy-modal{ border-radius: 0; }
.privacy-modal .modal-header{
  border-bottom: 1px solid rgba(218,157,68,.35);
}
.privacy-modal .modal-title{ color: var(--gold); letter-spacing:.02em; }
.privacy-modal .btn-close{
  filter: invert(41%) sepia(41%) saturate(564%) hue-rotate(353deg) brightness(96%) contrast(88%);
}

.whatsappChat{
  position: fixed;
  right: 20px;
  bottom: 20px;
}

@media (max-width: 767px){
  .hero-split{
    display: block;
    padding: 0;
  }
  .hero-left, .hero-right, .hero-content{
    position: relative;
  }
  .hero-content{
    transform:none;
    left: auto;
    top: auto;
  }
}