/* ========================================
   HairX by Dr. Madhuraa D Kulkarni
   Premium Palette — Deep Green + Rich Gold Gradients
   ======================================== */

:root {
  --primary: #1E4B2E;
  --primary-dark: #0B2617;
  --primary-light: #2F6B3B;
  --gold: #D4AF37;
  --gold-light: #F2D36B;
  --gold-dark: #9A6B08;
  --gold-pale: #FBF7E4;
  --cream: #fbf8ef;
  --cream-dark: #f2ede4;
  --white: #ffffff;
  --off-white: #FAFAFA;
  --text-dark: #1a1a1a;
  --text-gray: #5a5a5a;
  --text-light: #9a9a9a;
  --border: #D9D9D9;
  --border-light: #EBEBEB;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(217,217,217,0.55);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.28);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-gray); line-height: 1.8; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,175,55,0.42);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(30,75,46,0.25);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30,75,46,0.35);
}

/* ======================== LAYOUT ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(212,175,55,0.18), 0 2px 16px rgba(30,75,46,0.07);
}
.navbar.scrolled {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2f1c 100%);
  padding: 0.35rem 0;
  box-shadow: 0 2px 24px rgba(11,38,23,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 60px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  color: #0B2617;            /* dark green — always visible on white */
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: #9A6B08;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 1rem; right: 1rem; }
.nav-links a:hover, .nav-links a.active { color: #9A6B08; }

/* scrolled — override to white text on dark green navbar */
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.92); }
.navbar.scrolled .nav-links a::after { background: #D4AF37; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: #F2D36B; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--primary-dark) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--white); }

/* ======================== HERO V2 — AWARD MAGAZINE STYLE ======================== */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,0.16), transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(30,75,46,0.12), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fbf8ef 48%, #ffffff 100%);
  padding: 2.5rem 4rem;
}
/* Decorative glow blobs */
.hero-v2::before {
  content: '';
  position: absolute;
  top: -96px; right: -96px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(212,175,55,0.28);
  filter: blur(96px);
  pointer-events: none;
  z-index: 0;
}
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -96px; left: -96px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(30,75,46,0.18);
  filter: blur(96px);
  pointer-events: none;
  z-index: 0;
}
/* Diagonal shimmer overlay */
.hero-v2-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(212,175,55,0.07) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── GRID ── */
.hero-v2-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 80px);
  max-width: 1500px;
  margin: 0 auto;
}

/* ── LEFT PANEL ── */
.hero-v2-left { text-align: left; }

.hero-v2-logo {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  margin-bottom: 2rem;
}

.hero-v2-divider-bar {
  width: 144px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  margin-bottom: 2rem;
}

.hero-v2-eyebrow {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.hero-v2-specialty {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-v2-specialty::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Gradient title — high specificity to beat global h1 rule */
.hero-v2 .hero-v2-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  color: var(--gold-dark); /* solid fallback */
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-light) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-name-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-v2-name-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
/* high specificity to beat global h2 rule */
.hero-v2 .hero-v2-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
}

.hero-v2-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 2;
  color: #404040;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-v2-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  color: #ffffff;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 0.95rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(30,75,46,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-v2-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(30,75,46,0.3);
  color: #ffffff;
}

.hero-v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.7);
  color: var(--primary);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 0.95rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-v2-btn-outline:hover {
  transform: translateY(-4px);
  background: #fff8df;
  color: var(--primary);
}

/* Feature cards grid */
.hero-v2-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 640px;
}
.hero-v2-feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  padding: 0.65rem 0.6rem;
}
.hero-v2-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.75rem;
}
.hero-v2-feat p {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* ── RIGHT PANEL ── */
.hero-v2-right {
  position: relative;
  height: 720px;
}

.hero-v2-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── PHOTO CARDS ── */
.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(212,175,55,0.75);
  background: var(--white);
  box-shadow: 0 25px 50px rgba(11,38,23,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: default;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.photo-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(11,38,23,0.25);
}
.photo-card.active {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 0 4px rgba(242,211,107,0.4), 0 30px 60px rgba(11,38,23,0.3);
  z-index: 25 !important;
}

/* Individual positions — translated from React Tailwind layout */
.pc-main { top: 96px;   right: 230px; width: 330px; height: 500px; z-index: 20; }
.pc-tl   { top: 16px;   left: 0;      width: 330px; height: 220px; z-index: 10; }
.pc-tr   { top: 40px;   right: 0;     width: 290px; height: 270px; z-index: 10; }
.pc-bl   { bottom: 40px; left: 0;     width: 320px; height: 260px; z-index: 10; }
.pc-br   { bottom: 64px; right: 20px; width: 310px; height: 240px; z-index: 10; }

/* ── BADGE ── */
.hero-v2-badge {
  position: absolute;
  bottom: 0;
  right: 32px;
  z-index: 30;
  border: 2px solid var(--gold);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(11,38,23,0.35);
}
.hero-v2-badge i {
  display: block;
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.hero-v2-badge span {
  display: block;
  font-size: 1.05rem;
  font-family: 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--gold-light);
}
.hero-v2-badge span.badge-trusted {
  color: #ffffff;
  font-weight: 700;
}

/* Booking Form Section (below hero) */
.hero-form-section {
  background: var(--cream);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.hero-form-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: start;
}
.hero-form-info h3 { color: var(--primary); margin-bottom: 0.75rem; font-size: 1.5rem; }
.hero-form-info > p { margin-bottom: 1.75rem; }
.hero-form-info-items { display: flex; flex-direction: column; gap: 1rem; }
.hero-form-info-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.hero-form-info-item i { color: var(--gold-dark); font-size: 0.95rem; margin-top: 0.15rem; flex-shrink: 0; }
.hero-form-info-item span, .hero-form-info-item a { font-size: 0.92rem; color: var(--text-gray); line-height: 1.5; }
.hero-form-info-item a { color: var(--primary); font-weight: 600; }
.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero-form-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; color: var(--primary); }
.hero-form-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.5; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}
.form-group textarea { resize: none; min-height: 80px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ======================== STATS STRIP — LIGHT ======================== */
.about-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}
.strip-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
}
.strip-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-pale), #FFF8E0);
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(212,175,55,0.14);
}
.strip-item strong { display: block; font-size: 1.5rem; color: var(--primary); font-family: 'Georgia', serif; line-height: 1.1; }
.strip-item small { font-size: 0.76rem; color: var(--text-gray); letter-spacing: 0.04em; }
.strip-divider { width: 1px; height: 50px; background: var(--border); }

/* ======================== ABOUT SECTION ======================== */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }

.about-img-placeholder {
  width: 100%; min-height: 480px;
  background: var(--primary-dark);
  border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.about-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  border-radius: 20px;
}
.about-img-placeholder .doc-icon { font-size: 5rem; margin-bottom: 1rem; opacity: 0.85; z-index: 1; }
.about-img-placeholder h3 { color: var(--gold-light); font-size: 1.5rem; z-index: 1; }
.about-img-placeholder p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.5rem; z-index: 1; }

.about-badge {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  min-width: 180px;
}
.about-badge strong { display: block; font-size: 1.6rem; color: var(--primary); font-family: 'Georgia', serif; line-height: 1; }
.about-badge span { font-size: 0.75rem; color: var(--text-gray); }

.credentials-list { margin: 1.5rem 0; }
.credential-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border-light);
}
.credential-item:last-child { border-bottom: none; }
.credential-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem;
}
.credential-item strong { display: block; font-size: 0.9rem; color: var(--primary); }
.credential-item small { font-size: 0.78rem; color: var(--text-light); }

.affiliations { margin-top: 1.5rem; padding: 1.25rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.affiliations h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 0.75rem; }
.affiliation-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.affiliation-tag {
  background: var(--cream); border: 1px solid var(--border); color: var(--primary);
  padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

/* ======================== TREATMENTS ======================== */
.treatments-section { background: var(--cream); }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }

.treatment-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,75,46,0.06);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(30,75,46,0.13);
  border-color: var(--gold);
}
/* Icon banner replacing old treatment image */
.treatment-icon-area {
  height: 150px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.treatment-icon-area::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.22), transparent 55%);
}
.treatment-icon-area i {
  font-size: 3.4rem;
  color: var(--gold-light);
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.35s ease;
}
.treatment-card:hover .treatment-icon-area i { transform: scale(1.15); }
.treatment-body { padding: 1.5rem; }
.treatment-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary); }
.treatment-body p { font-size: 0.88rem; color: var(--text-gray); margin-bottom: 1rem; line-height: 1.7; }
.treatment-link {
  font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition);
}
.treatment-link:hover { color: var(--primary); gap: 0.7rem; }

/* ======================== WHY SECTION — LIGHT ======================== */
.why-section {
  background: var(--cream);
  position: relative;
}
.why-section .section-label { color: var(--gold-dark); }
.why-section .section-title { color: var(--primary); }
.why-section .section-subtitle { color: var(--text-gray); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(212,175,55,0.14);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 18px rgba(212,175,55,0.32);
}
.why-card h4 { color: var(--primary); margin-bottom: 0.6rem; font-size: 1rem; }
.why-card p { color: var(--text-gray); font-size: 0.86rem; }

/* ======================== GALLERY PREVIEW ======================== */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  overflow: hidden; position: relative;
  cursor: pointer; transition: var(--transition);
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; font-size: 4rem; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(11,38,23,0.5);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: 0.8rem; font-weight: 600; }
.gallery-center { text-align: center; margin-top: 2.5rem; }

/* ======================== TESTIMONIALS ======================== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }

.testimonial-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--gold); opacity: 0.15;
  font-family: 'Georgia', serif; line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-gray); font-style: italic; margin-bottom: 1.25rem; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; color: var(--primary); }
.reviewer small { font-size: 0.75rem; color: var(--text-light); }

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(242,211,107,0.07) 0%, transparent 50%);
}
.cta-section h2 { color: var(--white); position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 1rem auto 2rem; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ======================== FOOTER ======================== */
.footer { background: linear-gradient(160deg, var(--primary-dark) 0%, #0d2e1a 100%); color: rgba(255,255,255,0.72); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { height: 50px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; max-width: 270px; }
.footer h4 { color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a { font-size: 0.87rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.87rem; margin-bottom: 0.85rem; }
.footer-contact li span:first-child { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.social-link:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--primary-dark); transform: translateY(-2px);
}
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); }

/* ======================== PAGE HERO ======================== */
.page-hero {
  padding: 10rem 0 5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,0.18), transparent 32%),
    radial-gradient(circle at 5% 85%, rgba(30,75,46,0.10), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #fbf8ef 50%, #ffffff 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(30,75,46,0.05) 0%, transparent 55%);
  pointer-events: none;
}
/* Gold accent line at bottom matching hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-light) 65%, var(--gold) 80%, transparent 100%);
}
.page-hero h1 { color: var(--primary); position: relative; margin-bottom: 1rem; }
.page-hero p { color: var(--text-gray); max-width: 580px; margin: 0 auto 1.5rem; position: relative; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(30,75,46,0.06); border: 1px solid rgba(30,75,46,0.14);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; color: var(--text-gray);
  position: relative; margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ======================== ABOUT PAGE ======================== */
.doctor-profile { display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: start; }
.doctor-photo-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  position: sticky; top: 100px;
}
.doctor-photo {
  width: 100%; height: 380px;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary), var(--primary-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); position: relative; overflow: hidden;
}
.doctor-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.doctor-photo .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,38,23,0.55), rgba(11,38,23,0.05));
}
.doctor-photo .photo-icon { font-size: 5rem; position: relative; z-index: 1; margin-bottom: 0.5rem; opacity: 0.9; }
.doctor-photo-info { padding: 1.5rem; }
.doctor-photo-info h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 0.25rem; }
.doctor-photo-info p { font-size: 0.82rem; color: var(--text-gray); margin-bottom: 1rem; line-height: 1.6; }
.degree-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.degree-tag { background: var(--primary); color: var(--gold-light); padding: 0.25rem 0.65rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; }
.doctor-quick-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.quick-stat { background: var(--cream); border-radius: var(--radius-sm); padding: 0.75rem; text-align: center; border: 1px solid var(--border); }
.quick-stat strong { display: block; font-size: 1.5rem; color: var(--primary); font-family: 'Georgia', serif; line-height: 1.1; }
.quick-stat small { font-size: 0.7rem; color: var(--text-light); }

.doctor-details h2 { margin-bottom: 0.6rem; }
.doctor-details > p { margin-bottom: 1.5rem; font-size: 1rem; }

.doctor-specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.25rem;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}
.doctor-specialty-badge i { font-size: 0.7rem; }

.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 3px; margin: 1.5rem 0; }
.qualifications-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.qual-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--border); border-left: 4px solid var(--gold); transition: var(--transition);
}
.qual-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.qual-card h4 { color: var(--primary); font-size: 0.92rem; margin-bottom: 0.25rem; }
.qual-card p { font-size: 0.8rem; color: var(--text-gray); margin: 0; }
.publications-highlight {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  border-radius: var(--radius); padding: 2rem; margin: 2rem 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center;
  box-shadow: 0 8px 32px rgba(30,75,46,0.22);
}
.pub-stat strong { display: block; font-size: 2.2rem; color: var(--gold-light); font-family: 'Georgia', serif; line-height: 1; margin-bottom: 0.25rem; }
.pub-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.affiliations-section { margin-top: 2rem; }
.affil-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.affil-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; transition: var(--transition);
}
.affil-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.affil-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.affil-item span { font-size: 0.88rem; font-weight: 600; color: var(--primary); }

/* ======================== TREATMENTS PAGE ======================== */
.treatments-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.treatment-page-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column;
}
.treatment-page-card:hover { box-shadow: 0 14px 42px rgba(30,75,46,0.12); transform: translateY(-4px); border-color: var(--gold); }
.treatment-page-header {
  background-size: cover; background-position: center;
  background-color: var(--primary-dark);
  padding: 2rem; display: flex; align-items: center; gap: 1.25rem; position: relative;
}
.treatment-page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,38,23,0.78), rgba(11,38,23,0.55));
}
.treatment-page-icon {
  width: 64px; height: 64px;
  background: rgba(212,175,55,0.25); border: 2px solid rgba(212,175,55,0.55);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0; position: relative; z-index: 1;
}
.treatment-page-header h3 { color: var(--white); font-size: 1.2rem; position: relative; z-index: 1; }
.treatment-page-header p { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin: 0.2rem 0 0; position: relative; z-index: 1; }
.treatment-page-body { padding: 1.75rem; flex: 1; }
.treatment-page-body > p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.treatment-features { display: flex; flex-direction: column; gap: 0.5rem; }
.treatment-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--text-gray); }
.treatment-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.treatment-page-footer {
  padding: 1rem 1.75rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.treatment-tag {
  background: var(--cream); border: 1px solid var(--border);
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; color: var(--primary);
}

/* ======================== GALLERY PAGE ======================== */
.gallery-filter { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-gray); cursor: pointer; background: var(--white); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-full-item {
  aspect-ratio: 3/4;
  background-size: cover; background-position: 50% 15%;
  background-color: var(--primary);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: var(--transition); position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}
.gallery-full-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-full-item .g-icon { font-size: 3rem; opacity: 0.4; position: relative; z-index: 1; }
.gallery-full-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  padding: 1rem; color: var(--white); font-size: 0.82rem; font-weight: 600;
}

.before-after-section { background: var(--cream); }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.ba-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; height: 240px; }
.ba-before, .ba-after { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 1rem; font-size: 2.5rem; background-size: cover; background-position: center; }
.ba-before { background-color: #2a2a2a; }
.ba-after { background-color: var(--primary); }
.ba-before::after, .ba-after::after { content: ''; position: absolute; inset: 0; }
.ba-before::after { background: rgba(0,0,0,0.25); }
.ba-after::after { background: rgba(11,38,23,0.25); }
.ba-label {
  position: absolute; top: 0.75rem; background: rgba(0,0,0,0.5); color: var(--white);
  padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; z-index: 1;
}
.ba-info { padding: 1.25rem; }
.ba-info h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.25rem; }
.ba-info p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ======================== CONTACT PAGE ======================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  border-radius: 20px; padding: 2.5rem; color: var(--white); position: sticky; top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-detail:last-of-type { border-bottom: none; }
.c-icon { width: 44px; height: 44px; background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.4); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { color: var(--gold-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-detail p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
.hour-row { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hour-row strong { color: var(--gold-light); font-size: 0.78rem; }
.contact-form-card { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-card h2 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 2rem; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group.full { grid-column: span 2; }
.contact-form-card .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.03em; text-transform: none; }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea { padding: 0.85rem 1.1rem; font-size: 0.93rem; border-color: #ddd; }
.map-section { background: var(--cream); }
.map-placeholder {
  width: 100%; height: 360px; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); margin-top: 2rem; font-size: 3rem; gap: 1rem; border: 1px solid var(--border);
}
.map-placeholder p { font-size: 0.95rem; color: rgba(255,255,255,0.75); text-align: center; margin: 0; }

/* ======================== ANIMATIONS ======================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  /* hero-v2 tablet */
  .hero-v2 { padding: 2rem 2rem; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero-v2-right { height: 480px; }
  .pc-main  { top: 60px; right: 140px; width: 240px; height: 360px; }
  .pc-tl    { top: 10px; left: 0; width: 240px; height: 160px; }
  .pc-tr    { top: 28px; right: 0; width: 200px; height: 190px; }
  .pc-bl    { bottom: 24px; left: 0; width: 220px; height: 180px; }
  .pc-br    { bottom: 40px; right: 12px; width: 210px; height: 165px; }
  .hero-v2-badge { right: 16px; bottom: 0; padding: 0.9rem 1.4rem; }
  .hero-v2-badge span { font-size: 0.85rem; }
  .hero-v2-features { grid-template-columns: repeat(2, 1fr); }
  /* old hero */
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 70vw; min-height: 360px; }
  .hero-left-inner { padding: 5.5rem 2rem 2rem; }
  .hero-trust-strip { padding: 1rem 2rem; flex-wrap: wrap; gap: 0.5rem; }
  .hero-form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-form-card { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -1rem; }
  .doctor-profile { grid-template-columns: 1fr; }
  .doctor-photo-card { position: static; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .treatments-page-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary-dark); flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 0.75rem 2rem; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  /* hero-v2 mobile */
  .hero-v2 { padding: 1.25rem 1.25rem; }
  .hero-v2-right { height: 380px; }
  .pc-main  { top: 44px; right: 100px; width: 185px; height: 285px; }
  .pc-tl    { top: 8px;  left: 0; width: 185px; height: 130px; }
  .pc-tr    { top: 20px; right: 0; width: 160px; height: 155px; }
  .pc-bl    { bottom: 18px; left: 0; width: 175px; height: 145px; }
  .pc-br    { bottom: 30px; right: 8px; width: 165px; height: 135px; }
  .hero-v2-badge { right: 8px; bottom: 0; padding: 0.65rem 1rem; }
  .hero-v2-badge i { font-size: 1.2rem; }
  .hero-v2-badge span { font-size: 0.72rem; }
  .hero-v2-features { grid-template-columns: repeat(2, 1fr); }
  /* old hero (kept for safety) */
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 320px; }
  .hero-left-inner { padding: 4.5rem 1.25rem 1.5rem; }
  .hero-main-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-trust-strip { padding: 0.85rem 1.25rem; gap: 0.25rem; }
  .trust-item { font-size: 0.55rem; }
  .trust-vdivider { margin: 0 0.5rem; }
  .strip-divider { display: none; }
  .treatments-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .qualifications-grid { grid-template-columns: 1fr; }
  .publications-highlight { grid-template-columns: 1fr; text-align: center; }
  .affil-list { grid-template-columns: 1fr; }
  .form-row, .form-two-col { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .doctor-quick-stats { grid-template-columns: 1fr 1fr; }
}

/* ======================== SUCCESS STATE ======================== */
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .success-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }
.form-success h3 { color: var(--primary); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }

/* ======================== SCROLL TO TOP ======================== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-gold); transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 999; color: var(--primary-dark);
  font-size: 1.1rem; font-weight: 700; border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); }

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem;
  background: #25D366; color: white;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42); z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.52); }

/* ======================== FA ICON SIZING ======================== */
.strip-icon i { font-size: 1.15rem; color: var(--gold-dark); }
.why-icon i { font-size: 1.6rem; color: var(--white); }
.credential-icon i { font-size: 0.95rem; color: var(--primary-dark); }
.c-icon i { font-size: 1rem; }
.award-hl-icon i { font-size: 1.1rem; color: var(--white); }
.footer-contact i { font-size: 0.9rem; color: var(--gold); }

/* ======================== AWARDS SECTION ======================== */
.awards-section { background: var(--cream); }

.award-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3rem 0 2.5rem;
}

.award-highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.award-highlight:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.award-hl-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.award-highlight strong {
  display: block;
  font-size: 0.86rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Georgia', serif;
  line-height: 1.3;
}

.award-highlight span { font-size: 0.73rem; color: var(--text-light); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.award-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: var(--primary-dark);
  transition: var(--transition);
}

.award-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.award-photo:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.award-photo:hover img { transform: scale(1.06); }

.award-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,38,23,0.88), transparent);
  color: var(--white);
  padding: 2.5rem 1rem 1rem;
  font-size: 0.79rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ======================== LOCATIONS SECTION ======================== */
.locations-section { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.location-card-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.location-card-header::after {
  content: '';
  position: absolute;
  right: -10px; top: -10px;
  width: 80px; height: 80px;
  background: rgba(212,175,55,0.07);
  border-radius: 50%;
}

.location-number {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  flex-shrink: 0;
}

.location-card-header h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.15rem; }
.location-card-header p { color: rgba(255,255,255,0.65); font-size: 0.76rem; margin: 0; }

.location-card-body { padding: 1.5rem; flex: 1; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-detail:last-child { margin-bottom: 0; }

.location-detail i {
  color: var(--gold-dark);
  font-size: 0.88rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.location-detail span {
  font-size: 0.86rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.location-card-footer {
  padding: 1rem 1.5rem 1.5rem;
}

/* ======================== RESPONSIVE — AWARDS & LOCATIONS ======================== */
@media (max-width: 1100px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .award-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award-highlights { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}
