/* =============================================
   CHANGATH CLINIC — NEW DESIGN SYSTEM
   Inspired by Changath Ayurveda UI v2
   ============================================= */

/* ---- Design Tokens ---- */
:root {
  --forest:       #2C3E2D;
  --forest-deep:  #1E2A1F;
  --forest-soft:  #4A6147;
  --terracotta:   #B8553A;
  --terra-deep:   #8E3E26;
  --ochre:        #C89F5C;
  --ochre-soft:   #DCBE89;
  --cream:        #F5EFE0;
  --cream-deep:   #EBE2CC;
  --paper:        #FAF6EC;
  --ink:          #1F1A14;
  --ink-soft:     #4A4238;
  --muted:        #8B8275;
  --line:         rgba(31,26,20,0.12);
  --line-strong:  rgba(31,26,20,0.22);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --hand:  "Caveat", cursive;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,85,58,0.03) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(44,62,45,0.04) 0, transparent 40%);
}

/* ---- Utilities ---- */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
section { position: relative; }
section[id] { scroll-margin-top: 80px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--terracotta);
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}
.h-display em { font-style: italic; color: var(--terracotta); }

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}
.h-section em { font-style: italic; color: var(--terracotta); }

.body-lg { font-size: 18px; line-height: 1.65; color: var(--ink-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(184,85,58,0.45); }
.btn-ghost   { background: transparent; color: var(--forest-deep); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* Fade-in animation */
.fade-in { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.will-animate { opacity: 0; transform: translateY(24px); }
.fade-in.visible { opacity: 1; transform: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,246,236,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(31,26,20,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.15rem; font-weight: 700; color: var(--forest-deep); }
.logo-sub  { font-family: var(--sans); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--forest-deep); background: rgba(44,62,45,0.06); }
.nav-links .nav-cta {
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  padding: 9px 20px;
  margin-left: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.nav-links .nav-cta:hover { background: var(--terracotta); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--forest-deep); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO
   ============================================= */
#home {
  min-height: 100vh;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200,159,92,0.14), transparent 50%),
    radial-gradient(ellipse at 15% 100%, rgba(44,62,45,0.09), transparent 50%),
    var(--paper);
  overflow: hidden;
}
.hero-leaves { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-leaf { position: absolute; }
.hero-leaf-1 { top: 8%;  left: 3%;  }
.hero-leaf-2 { top: 12%; right: 7%; }
.hero-leaf-3 { top: 48%; left: 1%; }
.hero-leaf-4 { bottom: 15%; right: 3%; }
.hero-leaf-5 { top: 28%; right: 30%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge { margin-bottom: 22px; }
.hero-title { margin: 20px 0 26px; }
.hero-lede  { max-width: 520px; margin-bottom: 36px; }
.hero-hand  { font-family: var(--hand); font-size: 22px; color: var(--terracotta); font-weight: 400; }
.hero-cta   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-meta { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num  { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--forest-deep); line-height: 1; }
.meta-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.meta-divider { width: 1px; height: 36px; background: var(--line-strong); }

.hero-visual { position: relative; height: 580px; }
.hero-card {
  position: absolute;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(31,26,20,0.18), 0 4px 8px -4px rgba(31,26,20,0.08);
}
.hero-card-main  { top:0; left:8%; width:70%; height:72%; }
.hero-card-small { bottom:2%; right:0; width:50%; height:42%; transform: rotate(2deg); }
.hero-card-quote {
  position: absolute;
  bottom: 26%; left: -6%;
  width: 210px;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 22px 20px 18px;
  transform: rotate(-3deg);
  z-index: 3;
  border-radius: 4px;
}
.quote-icon   { color: var(--terracotta); font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.quote-text   { font-family: var(--serif); font-size: 17px; line-height: 1.35; margin-bottom: 12px; }
.quote-text em { color: var(--ochre-soft); font-style: italic; }
.quote-attr   { font-size: 10px; color: var(--ochre-soft); letter-spacing: 0.1em; }

.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-card-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(250,246,236,0.92);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-visual { position: relative; height: 600px; }
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 74%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(31,26,20,0.16);
}
.about-img-1 img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%; height: 50%;
  border-radius: 6px;
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: 0 20px 40px -15px rgba(31,26,20,0.16);
}
.about-img-2 img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.about-img-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--forest-soft);
}
.about-stamp {
  position: absolute;
  top: 4%; right: 8%;
  width: 128px; height: 128px;
  z-index: 2;
}
.about-stamp svg { animation: spin-slow 28s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.about-text .h-section { margin: 20px 0 24px; }
.about-pillars {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.pillar-icon { font-size: 1.6rem; margin-bottom: 12px; }
.pillar h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; margin-bottom: 6px; color: var(--forest-deep); }
.pillar p  { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* =============================================
   CONDITIONS
   ============================================= */
#conditions {
  padding: 120px 0;
  background: var(--paper);
}
.c-head { max-width: 680px; margin-bottom: 60px; }
.c-head .h-section { margin: 18px 0 22px; }
.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.c-card {
  background: var(--paper);
  padding: 32px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.c-card:hover { background: var(--forest-deep); color: var(--cream); }
.c-card:hover .c-icon { background: rgba(245,239,224,0.1); }
.c-card:hover .c-count { color: var(--ochre-soft); }
.c-card:hover .c-count span { color: rgba(245,239,224,0.6); }
.c-card:hover .c-name { color: var(--cream); }
.c-card:hover .c-desc { color: var(--ochre-soft); }
.c-card:hover .c-arr  { opacity: 1; transform: translate(0,0); }
.c-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.c-count {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  color: var(--terracotta);
  display: flex; align-items: baseline; gap: 7px; line-height: 1;
}
.c-count span { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.c-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--forest-deep); line-height: 1.15; }
.c-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.c-arr  { position: absolute; top: 26px; right: 26px; opacity: 0; transform: translate(-8px,8px); transition: all 0.3s; color: var(--ochre-soft); font-size: 1rem; }
.c-note {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-soft);
}
.c-note a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================
   SERVICES / TREATMENTS
   ============================================= */
#services {
  padding: 120px 0;
  background: var(--cream);
}
.s-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.s-header .h-section { margin-top: 18px; }
.s-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
}
.s-card {
  background: var(--paper);
  border-radius: 4px;
  padding: 28px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2,0.8,0.2,1);
  border: 1px solid var(--line);
}
.s-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 0;
}
.s-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(31,26,20,0.2); }
.s-card:hover::before { transform: translateY(0); }
.s-card:hover .s-icon { background: rgba(245,239,224,0.15); }
.s-card:hover .s-cat  { background: rgba(245,239,224,0.15); color: var(--cream); }
.s-card:hover .s-name { color: var(--cream); }
.s-card:hover .s-desc { color: rgba(245,239,224,0.8); }
.s-card:hover .s-hint { opacity: 1; transform: translateX(0); color: var(--ochre-soft); }
.s-card > * { position: relative; z-index: 1; }

.s-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.s-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: background 0.3s;
}
.s-cat {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; background: var(--cream); border-radius: 999px;
  color: var(--ink-soft); font-weight: 500; transition: all 0.3s;
}
.s-name {
  font-family: var(--serif);
  font-size: 24px; font-weight: 500;
  color: var(--forest-deep); margin-bottom: 10px; line-height: 1.15;
  transition: color 0.3s;
}
.s-desc {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.55; transition: color 0.3s;
}
.s-hint {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest-soft);
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s;
}

/* =============================================
   DOCTORS
   ============================================= */
#doctors {
  padding: 120px 0;
  background: var(--paper);
}
.d-head { margin-bottom: 56px; max-width: 680px; }
.d-head .h-section { margin-top: 18px; }
.d-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.d-tabs { display: flex; flex-direction: column; }
.d-tab {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0;
  background: none; border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer; text-align: left;
  font-family: var(--sans);
  transition: padding 0.3s;
  line-height: 1.3; width: 100%;
}
.d-tab:first-child { border-top: 1px solid var(--line); }
.d-tab.active { padding-left: 14px; }
.d-tab-num  { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; font-family: monospace; flex-shrink: 0; }
.d-tab-name {
  display: block; font-family: var(--serif);
  font-size: 21px; color: var(--forest-deep); line-height: 1.2;
}
.d-tab-title { display: block; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; margin-top: 2px; }
.d-tab.active .d-tab-num  { color: var(--terracotta); }
.d-tab.active .d-tab-name { color: var(--terracotta); font-style: italic; }

.d-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.d-photo-wrap {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  position: relative;
}
.d-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.d-photo-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:5rem; }
.d-info { animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }

.d-name   { font-family: var(--serif); font-size: 34px; color: var(--forest-deep); line-height: 1.05; }
.d-title-tag { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin: 8px 0 20px; }
.d-quals  { font-size: 14px; color: var(--forest-soft); font-weight: 500; margin-bottom: 16px; }
.d-bio    { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }
.d-specs  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.d-spec   { padding: 6px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft); }
.d-hours  {
  background: var(--cream);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  border: 1px solid var(--line);
}
.d-hours strong { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }

/* Doctor panels wrapper — arrows float on left/right */
.d-panels-wrap { position: relative; }

/* Carousel nav: absolute left/right arrows on desktop */
.d-carousel-nav {
  position: absolute;
  top: 38%;                        /* vertically centred over the photo area */
  left: -22px;
  right: -22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;            /* let clicks through to content */
  z-index: 10;
  gap: 0;
}
.d-carr-btn {
  pointer-events: all;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: rgba(250,246,236,0.95);
  backdrop-filter: blur(8px);
  color: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(31,26,20,0.12);
  flex-shrink: 0;
}
.d-carr-btn:hover {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(31,26,20,0.22);
}

/* Dots hidden on desktop (tabs serve as navigation) */
.d-carr-dots { display: none; }
.d-dot {
  width: 20px; height: 2px;
  border: none; border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer; padding: 0;
  transition: all 0.3s;
}
.d-dot.active { background: var(--terracotta); width: 32px; }

/* =============================================
   ACHIEVEMENTS
   ============================================= */
#achievements { padding: 120px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 18px;
}
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,26,20,0.08);
  transition: all 0.3s;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,26,20,0.14); }
.gallery-item img { width:100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-empty { grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--muted); }
.gallery-empty .icon { font-size:3rem; margin-bottom:12px; }

/* =============================================
   REVIEWS — CAROUSEL
   ============================================= */
#reviews { padding: 120px 0; background: var(--paper); }
.reviews-badge-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 40px;
}
.reviews-google-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1.5px solid var(--line-strong);
  border-radius: 999px; padding: 10px 22px;
  box-shadow: 0 2px 10px rgba(31,26,20,0.07);
}
.reviews-google-badge .g-logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.5px; }
.reviews-google-badge .g-logo span:nth-child(1) { color: #4285f4; }
.reviews-google-badge .g-logo span:nth-child(2) { color: #ea4335; }
.reviews-google-badge .g-logo span:nth-child(3) { color: #fbbc05; }
.reviews-google-badge .g-logo span:nth-child(4) { color: #4285f4; }
.reviews-google-badge .g-logo span:nth-child(5) { color: #34a853; }
.reviews-google-badge .g-logo span:nth-child(6) { color: #ea4335; }
.reviews-stars { display: flex; align-items: center; gap: 5px; }
.reviews-stars .stars  { color: #f4b400; font-size: 1.1rem; letter-spacing: 1px; }
.reviews-stars .rating { font-weight: 700; font-size: 1rem; color: var(--ink); }
.reviews-stars .count  { font-size: 0.82rem; color: var(--muted); }

.reviews-carousel-wrap {
  display: flex; align-items: center; gap: 12px;
}
.rc-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--cream);
  color: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(31,26,20,0.06);
}
.rc-arrow svg { width: 20px; height: 20px; }
.rc-arrow:hover:not(:disabled) { background: var(--forest-deep); border-color: var(--forest-deep); color: white; transform: scale(1.08); box-shadow: 0 6px 20px rgba(31,26,20,0.16); }
.rc-arrow:disabled { opacity: 0.3; cursor: default; }
.reviews-carousel { flex: 1; overflow: hidden; border-radius: 6px; }
.reviews-track {
  display: flex; gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.review-slide { flex-shrink: 0; overflow: hidden; }
.review-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,26,20,0.08);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  height: 100%;
  width: 100%;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(31,26,20,0.14); border-top-color: var(--forest-deep); }
.review-card img { width: 100%; max-width: 100%; height: auto; display: block; transition: transform 0.4s; }
.review-card:hover img { transform: scale(1.02); }
.review-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,42,31,0.75));
  padding: 28px 14px 14px;
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.review-card:hover .review-card-overlay { opacity: 1; }
.review-card-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }

.rc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.rc-dot {
  width: 24px; height: 2px;
  border-radius: 999px; border: none;
  background: var(--line-strong); cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.rc-dot.active { background: var(--terracotta); width: 36px; }
.rc-dot:hover:not(.active) { background: var(--forest-soft); }

.reviews-empty { text-align:center; padding:60px 20px; color:var(--muted); background:var(--cream); border-radius:6px; border:1px dashed var(--line-strong); }
.reviews-empty .icon { font-size:3rem; margin-bottom:12px; }

/* =============================================
   TESTIMONIALS (written quotes)
   ============================================= */
#testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.testi-side .h-section { margin: 18px 0; }
.testi-stats {
  display: flex; gap: 40px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.testi-stat { display: flex; flex-direction: column; gap: 6px; }
.testi-stat-num { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--terracotta); line-height: 1; }
.testi-stars { display: flex; gap: 2px; color: var(--ochre); font-size: 1rem; }
.testi-stat-label { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); line-height: 1.4; }

.testi-card {
  background: var(--paper);
  padding: 52px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(31,26,20,0.16);
}
.testi-big-quote { color: var(--terracotta); font-size: 3.5rem; line-height: 1; font-family: Georgia, serif; margin-bottom: 12px; }
.testi-quote {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  line-height: 1.45; color: var(--forest-deep);
  margin-bottom: 36px;
  animation: fadeUp 0.6s;
}
.testi-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.6s 0.1s backwards;
}
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  flex-shrink: 0;
}
.testi-name { font-family: var(--serif); font-size: 18px; color: var(--forest-deep); font-weight: 500; }
.testi-cond { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.testi-nav {
  position: absolute;
  bottom: 52px; right: 52px;
  display: flex; gap: 8px;
}
.testi-dot { width: 24px; height: 2px; background: var(--line-strong); border: none; padding: 0; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.testi-dot.active { background: var(--terracotta); width: 36px; }

/* =============================================
   VIDEO TESTIMONIALS
   ============================================= */
#videos { padding: 120px 0; background: var(--cream); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px;
}
.video-item {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,26,20,0.08);
  border: 1px solid var(--line);
  background: var(--paper);
}
.video-item iframe { width:100%; height:480px; border:none; }

/* =============================================
   BLOG
   ============================================= */
#blog { padding: 120px 0; background: var(--paper); }
.blog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 32px; flex-wrap: wrap;
}
.blog-head .h-section { margin-top: 18px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(31,26,20,0.16); border-color: var(--terracotta); }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-img-wrap { overflow: hidden; height: 200px; background: linear-gradient(135deg, var(--cream-deep), var(--cream)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-img-wrap img { width:100%; height:200px; object-fit:cover; transition: transform 0.5s; }
.blog-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 12px;
}
.blog-meta .sep { color: var(--muted); }
.blog-meta .blog-date { color: var(--muted); }
.blog-title { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--forest-deep); line-height: 1.2; margin-bottom: 10px; }
.blog-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.blog-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted); letter-spacing: 0.06em;
}
.blog-arrow { color: var(--forest-deep); transition: transform 0.3s; font-size: 1rem; }
.blog-card:hover .blog-arrow { transform: translateX(4px); color: var(--terracotta); }

/* =============================================
   CONTACT / BOOKING
   ============================================= */
#appointment {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .h-section { margin: 20px 0; }
.contact-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid var(--line);
}
.ci-label { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item p { font-size: 15px; line-height: 1.55; color: var(--ink); }
.contact-item a { color: var(--terracotta); }
.contact-item a:hover { text-decoration: underline; }
.map-wrap {
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width:100%; height:100%; border:none; }

.booking-form-wrap {
  background: var(--paper);
  padding: 48px;
  border-radius: 6px;
  box-shadow: 0 20px 50px -20px rgba(31,26,20,0.12);
  position: sticky;
  top: 100px;
}
.booking-form-wrap h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--forest-deep); margin-bottom: 6px; }
.booking-form-wrap .form-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 30px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field.field-full { grid-column: 1/-1; }
.field label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field label span { color: #c53030; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--forest); }
.field textarea { resize: vertical; min-height: 80px; }
.field select { cursor: pointer; }
.form-submit-btn {
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.form-submit-btn:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(184,85,58,0.4); }
.form-fine { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-fine strong { color: var(--forest-deep); }
.alert-success {
  background: #e8f5e9; color: #1a5c38;
  border: 1px solid #c8e6c9;
  padding: 14px 18px; border-radius: 6px;
  margin-bottom: 18px; font-size: 14px;
}
.alert-error {
  background: #fff5f5; color: #c53030;
  border: 1px solid #feb2b2;
  padding: 14px 18px; border-radius: 6px;
  margin-bottom: 18px; font-size: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-end;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(245,239,224,0.14);
  margin-bottom: 60px;
}
.footer-cta .h-display { color: var(--cream); font-size: clamp(34px,4.5vw,68px); }
.footer-cta .h-display em { color: var(--ochre-soft); }
.footer-cta .btn {
  background: var(--ochre);
  color: var(--forest-deep);
  border-color: var(--ochre);
  white-space: nowrap;
}
.footer-cta .btn:hover { background: var(--ochre-soft); border-color: var(--ochre-soft); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo .logo-mark { background: var(--ochre); }
.footer-blurb { font-size: 14px; line-height: 1.7; color: rgba(245,239,224,0.68); max-width: 300px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ochre-soft); margin-bottom: 18px;
}
.footer-col p { font-size: 14px; line-height: 1.8; color: rgba(245,239,224,0.75); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(245,239,224,0.75); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--ochre-soft); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,224,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(245,239,224,0.45);
  letter-spacing: 0.04em; flex-wrap: wrap; gap: 14px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: inherit; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--ochre-soft); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(31,26,20,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 6px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   WHATSAPP
   ============================================= */
#whatsappBtn {
  position: fixed;
  bottom: 84px; right: 28px;
  z-index: 600;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}
#whatsappBtn:hover { background: #1da851; transform: scale(1.1); animation: none; }
#whatsappBtn svg  { width: 28px; height: 28px; fill: white; }
#whatsappBtn::before {
  content: 'Chat with us';
  position: absolute; right: 64px;
  background: var(--ink); color: white;
  font-size: 0.75rem; font-weight: 600;
  padding: 5px 10px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
#whatsappBtn:hover::before { opacity: 1; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--forest-deep); color: white;
  border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(31,26,20,0.2);
  transition: all 0.3s; z-index: 500;
}
#scrollTop.show { display: flex; }
#scrollTop:hover { background: var(--terracotta); transform: translateY(-2px); }

/* =============================================
   SECTION TITLE (shared utility)
   ============================================= */
.section-title { text-align: center; margin-bottom: 52px; }
.section-title .eyebrow { justify-content: center; }
.section-title .eyebrow::before { display: none; }
.section-title .h-section { margin: 18px 0 14px; }
.section-title p { color: var(--ink-soft); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; max-width: 560px; }
  .hero-card-quote { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 520px; height: 480px; }
  .about-pillars { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .d-layout { grid-template-columns: 1fr; }
  .d-detail { grid-template-columns: 1fr; }
  .d-photo-wrap { max-width: 300px; }
  .testi-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-form-wrap { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .s-header { grid-template-columns: 1fr; gap: 24px; }
  .video-item iframe { height: 320px; }
}

/* ── Tablet / large phone ── */
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 18px; }
  #home { padding: 100px 0 70px; }
  #about, #conditions, #services, #doctors, #achievements,
  #reviews, #testimonials, #videos, #blog, #appointment { padding: 72px 0; }
  footer { padding: 60px 0 24px; }

  /* ── Nav ── */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,246,236,0.98);
    border-top: 1px solid var(--line);
    padding: 12px 18px 18px;
    box-shadow: 0 12px 32px rgba(31,26,20,0.12);
    gap: 2px;
    z-index: 999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 8px;
  }
  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
    justify-content: center;
    display: block;
    padding: 12px;
  }
  .hamburger { display: flex; }

  /* ── Hero ── */
  .hero-inner { gap: 40px; }
  .h-display { font-size: clamp(34px, 9vw, 50px); }
  .hero-visual { height: 300px; max-width: 100%; }
  /* Simplify hero cards on mobile — show only main card full-width */
  .hero-card-main  { top: 0; left: 0; width: 100%; height: 100%; border-radius: 8px; }
  .hero-card-small { display: none; }
  .hero-meta { gap: 18px; flex-wrap: wrap; }
  .meta-num  { font-size: 28px; }
  .meta-divider { display: none; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; max-width: 320px; }
  /* Reduce decorative leaf opacity on mobile */
  .hero-leaf-2, .hero-leaf-5 { display: none; }
  .hero-leaf-1, .hero-leaf-3, .hero-leaf-4 { opacity: 0.5; }

  /* ── About ── */
  .about-pillars { grid-template-columns: 1fr; gap: 16px; }
  .about-visual  { height: 320px; max-width: 100%; }
  .about-img-1   { width: 78%; height: 76%; }
  .about-img-2   { width: 54%; height: 46%; border-width: 5px; }
  .about-stamp   { width: 90px; height: 90px; top: 3%; right: 3%; }

  /* ── Conditions ── */
  .c-grid { grid-template-columns: 1fr 1fr; }
  .c-card { padding: 24px 18px; }

  /* ── About — hide second doctor photo on mobile ── */
  .about-img-2 { display: none; }
  .about-img-1 { width: 100%; height: 100%; }

  /* ── Doctors — full card carousel on mobile ── */
  .d-layout { gap: 0; grid-template-columns: 1fr; }
  .d-tabs { display: none; }

  /* Stack: card first, nav row below */
  .d-panels-wrap { display: flex; flex-direction: column; }
  .d-carousel-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: all;
    gap: 14px;
    order: 2;
    margin-top: 18px;
    margin-bottom: 0;
    left: auto; right: auto; top: auto;
  }
  .d-carr-dots { display: flex !important; gap: 8px; align-items: center; }
  .d-detail {
    order: 1;
    display: flex !important;
    flex-direction: column;
    grid-template-columns: unset;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    gap: 0;
  }
  .d-photo-wrap {
    width: 100%;
    max-width: 100%;
    height: 220px;
    aspect-ratio: unset;
    border-radius: 0;
    flex-shrink: 0;
  }
  .d-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .d-info { padding: 20px 18px 22px; }
  .d-name { font-size: 24px; margin-bottom: 4px; }
  .d-title-tag { font-size: 11px; margin-bottom: 10px; }
  .d-quals { font-size: 13px; margin-bottom: 10px; }
  .d-bio { font-size: 13px; line-height: 1.55; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
  .d-specs { gap: 6px; margin-bottom: 14px; }
  .d-spec { font-size: 11px; padding: 4px 10px; }
  .d-hours { font-size: 12px; padding: 12px 14px; margin-bottom: 14px; }
  .d-hours strong { font-size: 9px; }
  .d-info .btn { padding: 10px 20px; font-size: 11px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }

  /* ── Reviews carousel ── */
  .reviews-carousel-wrap { gap: 6px; }
  .rc-arrow {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-width: 1px;
  }
  .rc-arrow svg { width: 14px; height: 14px; }
  .reviews-carousel { border-radius: 4px; overflow: hidden; }
  .review-slide { overflow: hidden; }

  /* ── Videos ── */
  .video-item iframe { height: 220px; }
  .videos-grid { gap: 16px; }

  /* ── Testimonials ── */
  .testi-card { padding: 28px 20px; }
  .testi-quote { font-size: 20px; }
  .testi-nav { position: static; margin-top: 20px; }
  .testi-stats { flex-direction: column; gap: 20px; }
  .testi-stat-num { font-size: 36px; }

  /* ── Blog ── */
  .blog-grid { grid-template-columns: 1fr; }

  /* ── Contact / Booking ── */
  .form-grid-2 { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px 18px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta  { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta .h-display { font-size: clamp(28px, 8vw, 44px); }
  .footer-cta .btn { align-self: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* ── Floating buttons ── */
  #whatsappBtn { bottom: 18px; right: 14px; width: 50px; height: 50px; }
  #scrollTop   { bottom: 18px; right: 72px; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 14px; }
  #home { padding: 90px 0 60px; }
  #about, #conditions, #services, #doctors, #achievements,
  #reviews, #testimonials, #videos, #blog, #appointment { padding: 60px 0; }

  /* Typography scaling */
  .h-display { font-size: clamp(30px, 10vw, 42px); }
  .h-section  { font-size: clamp(26px,  8vw, 36px); }
  .body-lg    { font-size: 16px; }

  /* Hero */
  .hero-visual { height: 240px; }
  .hero-meta   { gap: 14px; }
  .meta-num    { font-size: 24px; }
  .meta-label  { font-size: 10px; }
  .hero-leaf-1, .hero-leaf-3, .hero-leaf-4 { display: none; }

  /* About */
  .about-visual { height: 260px; }
  .about-stamp  { width: 70px; height: 70px; }
  .about-img-2  { border-width: 4px; }

  /* Conditions — single column */
  .c-grid { grid-template-columns: 1fr; }

  /* Doctors */
  .d-photo-wrap { height: 240px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Reviews */
  .reviews-carousel-wrap { gap: 6px; }
  .rc-arrow { width: 32px; height: 32px; }

  /* Videos */
  .video-item iframe { height: 200px; }

  /* Testimonials */
  .testi-card { padding: 22px 16px; }
  .testi-quote { font-size: 18px; }
  .testi-big-quote { font-size: 2.5rem; }

  /* Booking form */
  .booking-form-wrap { padding: 20px 14px; }
  .booking-form-wrap h3 { font-size: 24px; }

  /* Footer */
  .footer-cta .h-display { font-size: clamp(24px, 9vw, 36px); }
  .footer-bottom-links { gap: 16px; }

  /* Floating buttons */
  #whatsappBtn { bottom: 14px; right: 10px; width: 46px; height: 46px; }
  #scrollTop   { bottom: 14px; right: 64px; width: 40px; height: 40px; font-size: 1rem; }
}
