/* =============================================
   AADHYA SKIN CLINIC — STYLES.CSS
   Dark Luxury Teal Aesthetic
   ============================================= */

/* --- VARIABLES --- */
:root {
  --black:       #0A0F0E;
  --black-2:     #0E1312;
  --black-3:     #151C1A;
  --card-bg:     #101716;
  --card-border: rgba(94, 198, 184, 0.18);
  --gold:        #5ec6b8;
  --gold-dark:   #3aa899;
  --gold-light:  #8fd9cf;
  --white:       #ffffff;
  --off-white:   #edf5f3;
  --muted:       rgba(255,255,255,0.55);
  --header-h:    76px;
  --promo-h:     44px;
  --serif:       'Playfair Display', 'Georgia', serif;
  --sans:        'Montserrat', 'Open Sans', sans-serif;
  --trans:       0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h));
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CONTAINER --- */
.sc-container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* --- PROMO BANNER --- */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--promo-h);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promo-banner a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity var(--trans);
}
.promo-banner a:hover { opacity: 0.75; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--header-h);
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.6);
}

.header-inner {
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo a,
.footer-logo,
.drawer-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Main Nav */
.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-list li { position: relative; }

.nav-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--trans);
}

.nav-list a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown li a {
  padding: 0.65rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(94,198,184,0.08); color: var(--gold); }

/* Header Right CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-phone:hover { color: var(--gold); }

/* Nav Buttons */
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--trans);
}

.btn-nav-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-nav-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-nav-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--black-2);
  border-left: 1px solid var(--card-border);
  z-index: 1100;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer.open { transform: translateX(0); }

.close-drawer {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--muted);
  font-size: 1.2rem;
  padding: 0.25rem;
  transition: color var(--trans);
}
.close-drawer:hover { color: var(--gold); }

.drawer-logo { margin-top: 1rem; }

.mobile-nav-list {
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
}
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-list a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--trans);
}
.mobile-nav-list a:hover { color: var(--gold); }

.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.5rem;
}

.w-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.drawer-socials {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.drawer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all var(--trans);
}
.drawer-socials a:hover { color: var(--gold); border-color: var(--gold); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.drawer-overlay.visible { opacity: 1; visibility: visible; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* modern browsers dynamic viewport */
  height: calc(var(--vh, 1vh) * 100); /* JS fallback for older iOS */
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--promo-h) + var(--header-h));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-location {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--trans);
}

.hero-btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.hero-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(94,198,184,0.08);
}

.hero-btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.hero-btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   REUSABLE SECTION ELEMENTS
   ============================================= */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.center-text { text-align: center; }

.serif-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.serif-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.8rem;
}

.gold-line.center-line {
  margin-left: auto;
  margin-right: auto;
  background: var(--gold);
}

.section-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Universal Buttons */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--trans);
  gap: 0.5rem;
}

.sc-btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.sc-btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.sc-btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.sc-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sc-btn-outline-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
  border: 1px solid rgba(94,198,184,0.45);
  color: var(--gold);
}
.sc-btn-outline-sm:hover {
  background: rgba(94,198,184,0.08);
  border-color: var(--gold);
}

.sc-btn-sm-gold {
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.sc-btn-sm-gold:hover { background: var(--gold-dark); }

.sc-btn-sm-outline {
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
  border: 1px solid var(--card-border);
  color: rgba(255,255,255,0.7);
}
.sc-btn-sm-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; }

.mt-20 { margin-top: 1.5rem; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 7rem 0;
  background: var(--black-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-visual { position: relative; }

.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(94,198,184,0.1);
  z-index: 1;
  pointer-events: none;
}

.about-img-frame img {
  transition: transform 0.8s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.badge-star {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 7rem 0;
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--trans);
  animation-delay: var(--delay, 0s);
}
.svc-card:hover {
  border-color: rgba(94,198,184,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.svc-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.svc-img-wrap img { transition: transform 0.6s ease; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.07); }

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.svc-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(94,198,184,0.2);
  line-height: 1;
  z-index: 1;
}

.svc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

.svc-list {
  flex: 1;
  margin-bottom: 1.5rem;
}

.svc-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 1rem;
  position: relative;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, #0d1a17 0%, #0a0f0e 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 3rem 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.8rem;
  color: var(--gold-dark);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: var(--card-border);
  flex-shrink: 0;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 7rem 0;
  background: var(--black-2);
  overflow: hidden;
}

.reviews-slider-wrap {
  overflow: hidden;
  margin-bottom: 2rem;
}

.reviews-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: calc(33.333% - 0.8rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.review-card:hover {
  border-color: rgba(94,198,184,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.review-quote {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(94,198,184,0.12);
  line-height: 0.8;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.review-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: all var(--trans);
  flex-shrink: 0;
}
.arrow-btn:hover { border-color: var(--gold); color: var(--gold); }

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--trans);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 7rem 0;
  background: var(--black);
}

.faq-inner { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: color var(--trans);
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  transition: all var(--trans);
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* =============================================
   SOCIAL / INSTAGRAM
   ============================================= */
.social-sec {
  padding: 7rem 0;
  background: var(--black-2);
}

.social-cta-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.social-big-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--card-bg);
  transition: all var(--trans);
  min-width: 180px;
}
.social-big-btn:hover {
  border-color: var(--gold);
  background: rgba(94,198,184,0.04);
}

.social-big-btn i {
  font-size: 1.5rem;
  color: var(--gold);
}

.social-big-btn strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.social-big-btn small {
  font-size: 0.72rem;
  color: var(--muted);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
}

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}
.insta-tile img { object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.1); }

.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.insta-tile:hover .insta-hover { opacity: 1; }

/* =============================================
   DOCTOR SECTION
   ============================================= */
.doctor-sec {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.doctor-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.doctor-img-frame img { transition: transform 0.6s ease; }
.doctor-img-frame:hover img { transform: scale(1.04); }

.doctor-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.doctor-role {
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 1.2rem !important;
}

.doctor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.dh-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--card-bg);
}

.dh-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.dh-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 7rem 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-left p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contact-info-list strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-list a,
.contact-info-list span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  transition: color var(--trans);
}
.contact-info-list a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  transition: border-color var(--trans);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(94,198,184,0.55);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option { background: #1a1a1a; color: var(--white); }

.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  background: rgba(94,198,184,0.1);
  border: 1px solid rgba(94,198,184,0.35);
  border-radius: 3px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.form-success.visible {
  display: flex;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--card-border);
}

.footer-top {
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 1.2rem 0 1.5rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  transition: all var(--trans);
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--card-border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color var(--trans);
  position: relative;
  padding-left: 0.8rem;
}
.footer-col ul li a::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  opacity: 0.5;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.footer-contact-list a,
.footer-contact-list span {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  transition: color var(--trans);
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* =============================================
   MOBILE BOTTOM BAR
   ============================================= */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  height: 62px;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
}

.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
  padding: 0.5rem 0;
}
.mobile-bar a:hover { color: var(--gold); }
.mobile-bar a i { font-size: 1.05rem; }

.mobile-bar .bar-book {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.mobile-bar .bar-book:hover { background: var(--gold-dark); color: var(--black); }

/* =============================================
   RESPONSIVE — FULL MOBILE (Android + iOS)
   ============================================= */

/* --- TABLET: 1200px and below --- */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* --- SMALL TABLET / LARGE PHONE: 1100px and below --- */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-right { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; margin: 0 auto; }

  .doctor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .doctor-img-wrap { max-width: 400px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- MOBILE: 768px and below (most phones landscape + small tablets) --- */
@media (max-width: 768px) {
  :root {
    --promo-h: 38px;
    --header-h: 64px;
  }

  .sc-container { width: 90%; }

  /* Promo Banner */
  .promo-banner { height: var(--promo-h); }
  .promo-banner a { font-size: 0.65rem; letter-spacing: 0.08em; padding: 0 0.5rem; }

  /* Header */
  .header-inner { padding: 0 1rem; }
  .logo-text { font-size: 1rem; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; }
  .hero-title { font-size: clamp(1.8rem, 7.5vw, 3rem); }
  .hero-location { font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 1.8rem; }
  .hero-buttons { gap: 0.75rem; flex-direction: column; align-items: center; }
  .hero-btn { padding: 0.85rem 2.2rem; font-size: 0.72rem; width: 220px; text-align: center; }
  .hero-scroll { display: none; }

  /* Sections */
  .about, .services, .reviews, .faq, .social-sec, .contact, .doctor-sec {
    padding: 4rem 0;
  }

  .serif-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
  .section-head { margin-bottom: 2rem; }
  .section-desc { font-size: 0.88rem; }

  /* About */
  .about-text p { font-size: 0.9rem; }
  .about-img-frame { aspect-ratio: 4/4; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .svc-img-wrap { aspect-ratio: 16/10; }
  .svc-body h3 { font-size: 1.1rem; }
  .svc-list li { font-size: 0.82rem; padding: 0.35rem 0 0.35rem 1rem; }

  /* Stats */
  .stats-strip { padding: 2rem 0; }
  .stats-row { flex-wrap: wrap; gap: 0; }
  .stat-sep { display: none; }
  .stat-item { flex: 0 0 50%; padding: 1rem 0.5rem; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.62rem; }

  /* Reviews */
  .reviews-track .review-card { min-width: 100%; }
  .review-card { padding: 1.5rem; }
  .review-card p { font-size: 0.85rem; }
  .slider-controls { gap: 1rem; }
  .arrow-btn { width: 36px; height: 36px; font-size: 0.75rem; }

  /* Doctor */
  .doctor-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .doctor-img-wrap { max-width: 320px; margin: 0 auto; }
  .doctor-img-frame { aspect-ratio: 3/3.5; }
  .doctor-highlights { gap: 0.8rem; }
  .dh-item { padding: 0.5rem 0.75rem; }
  .dh-item span { font-size: 0.72rem; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; padding: 1.2rem 0; }
  .faq-a p { font-size: 0.88rem; }

  /* Social */
  .social-cta-row { flex-direction: column; align-items: center; gap: 0.8rem; }
  .social-big-btn { width: 100%; max-width: 300px; justify-content: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1.2rem; }

  /* Footer */
  .footer-top { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Mobile Bottom Bar */
  .mobile-bar { display: flex; }
  body { padding-bottom: 62px; }
  .site-footer { padding-bottom: 0; }
}

/* --- SMALL PHONE: 520px and below (typical Android phones) --- */
@media (max-width: 520px) {
  :root {
    --promo-h: 34px;
    --header-h: 58px;
  }

  .sc-container { width: 92%; }

  .promo-banner a { font-size: 0.58rem; letter-spacing: 0.05em; }

  .hero-eyebrow { font-size: 0.62rem; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); letter-spacing: 0.02em; }
  .hero-location { font-size: 0.68rem; }
  .hero-btn { width: 200px; padding: 0.75rem 1.5rem; font-size: 0.68rem; }
  .hero-content { padding: 1.5rem 1rem; }

  .about-badge { left: 0.5rem; bottom: 1rem; padding: 0.7rem 0.9rem; }
  .badge-star { font-size: 1.3rem; }
  .badge-text { font-size: 0.5rem; }

  .eyebrow { font-size: 0.65rem; letter-spacing: 0.25em; }
  .serif-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .gold-line { margin-bottom: 1.2rem; }

  .svc-body { padding: 1.2rem; }
  .svc-body h3 { font-size: 1rem; }

  .stat-item { padding: 0.8rem 0.4rem; }
  .stat-num { font-size: 1.8rem; }

  .reviews-track .review-card { min-width: 100%; padding: 1.2rem; }
  .review-quote { font-size: 3rem; }
  .review-card p { font-size: 0.82rem; line-height: 1.65; }
  .review-author { font-size: 0.7rem; }

  .doctor-img-wrap { max-width: 280px; }
  .doctor-info p { font-size: 0.88rem; }
  .doctor-highlights { flex-direction: column; }
  .dh-item { width: 100%; }

  .faq-q { font-size: 0.88rem; gap: 0.75rem; }
  .faq-q span:first-child { flex: 1; }
  .faq-icon { width: 26px; height: 26px; }
  .faq-a p { font-size: 0.82rem; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-info-list li { gap: 0.75rem; }
  .ci-icon { width: 34px; height: 34px; font-size: 0.7rem; }
  .contact-info-list strong { font-size: 0.65rem; }
  .contact-info-list a, .contact-info-list span { font-size: 0.82rem; }

  .contact-form-wrap { padding: 1.2rem 1rem; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 0.85rem;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .footer-col h4 { font-size: 0.65rem; }
  .footer-col ul li a { font-size: 0.8rem; }
  .footer-contact-list a, .footer-contact-list span { font-size: 0.78rem; }
  .footer-bottom p { font-size: 0.7rem; }
}

/* --- EXTRA SMALL: 380px and below (iPhone SE, small Androids) --- */
@media (max-width: 380px) {
  :root {
    --promo-h: 30px;
    --header-h: 54px;
  }

  .promo-banner a { font-size: 0.52rem; }
  .logo-text { font-size: 0.9rem; letter-spacing: 0.18em; }
  .logo-sub { font-size: 0.5rem; }

  .hero-title { font-size: 1.4rem; }
  .hero-eyebrow { font-size: 0.58rem; margin-bottom: 0.6rem; }
  .hero-btn { width: 180px; padding: 0.7rem 1.2rem; font-size: 0.62rem; }

  .serif-title { font-size: 1.3rem; }
  .about-text p, .doctor-info p { font-size: 0.84rem; }

  .svc-number { font-size: 2rem; }
  .svc-list li { font-size: 0.78rem; }

  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.56rem; }

  .review-card p { font-size: 0.78rem; }

  .faq-q { font-size: 0.82rem; padding: 1rem 0; }

  .sc-btn, .sc-btn-gold { padding: 0.7rem 1.5rem; font-size: 0.7rem; }
  .sc-btn-outline-sm { padding: 0.55rem 1.1rem; font-size: 0.65rem; }

  .social-big-btn { padding: 0.8rem 1.2rem; }
  .social-big-btn i { font-size: 1.2rem; }
  .social-big-btn strong { font-size: 0.78rem; }
}

/* --- iOS SAFE AREA SUPPORT (iPhone X+ notch/dynamic island) --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-bar {
    height: calc(62px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .promo-banner {
    padding-top: env(safe-area-inset-top);
    height: calc(var(--promo-h) + env(safe-area-inset-top));
  }

  .mobile-drawer {
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

/* --- TOUCH DEVICE IMPROVEMENTS --- */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets */
  .nav-list a { padding: 0.65rem 0.85rem; }
  .mobile-nav-list a { padding: 1rem 0; min-height: 44px; }
  .faq-q { min-height: 52px; }
  .arrow-btn { width: 44px; height: 44px; }
  .dot { width: 10px; height: 10px; }
  .dot.active { width: 28px; }
  .drawer-socials a { width: 44px; height: 44px; }
  .footer-socials a { width: 44px; height: 44px; }

  /* Remove hover effects on touch */
  .svc-card:hover { transform: none; box-shadow: none; }
  .about-img-frame:hover img { transform: none; }
  .doctor-img-frame:hover img { transform: none; }
  .insta-tile:hover img { transform: none; }
  .insta-tile:hover .insta-hover { opacity: 0; }

  /* Smooth scrolling tap areas */
  .hero-btn, .sc-btn, .btn-nav, .sc-btn-outline-sm, .sc-btn-sm-gold, .sc-btn-sm-outline {
    -webkit-tap-highlight-color: rgba(94, 198, 184, 0.15);
  }
}

/* --- LANDSCAPE PHONE --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-title { font-size: 1.8rem; }
  .hero-eyebrow { font-size: 0.6rem; margin-bottom: 0.4rem; }
  .hero-location { margin-bottom: 1rem; }
  .hero-buttons { flex-direction: row; }
  .hero-btn { width: auto; padding: 0.6rem 1.5rem; }
  .hero-content { padding: 1rem; }
  .hero-scroll { display: none; }

  .about, .services, .reviews, .faq, .social-sec, .contact, .doctor-sec {
    padding: 3rem 0;
  }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { transition: none; transform: scale(1); }
  html { scroll-behavior: auto; }
}

/* --- PRINT --- */
@media print {
  .promo-banner, .site-header, .mobile-bar, .hero-scroll,
  .hero-buttons, .slider-controls, .drawer-overlay, .mobile-drawer { display: none; }
  body { background: #fff; color: #000; padding: 0; }
  .hero { min-height: auto; height: auto; padding: 2rem 0; }
  .hero-overlay { background: none; }
  .hero-title { color: #000; text-shadow: none; }
}

