/* ==========================================================================
   ADVAIT MIND CLINIC — DESIGN SYSTEM & STYLESHEET
   Dr. Tirth Gautambhai Sedhiya (Consultant Psychiatrist)
   ========================================================================== */

/* ===== 1. CSS CUSTOM PROPERTIES / DESIGN TOKENS ===== */
:root {
  /* Color Palette */
  --emerald-dark: #14281E;
  --emerald: #1C382B;
  --emerald-light: #2A503F;
  --sage: #88AB8E;
  --sage-light: #AFC4B4;
  --sage-ultra-light: #EBF2ED;
  --ivory: #F9F6F0;
  --ivory-dark: #EFEAE1;
  --gold: #C8A76A;
  --gold-light: #DFCA9E;
  --gold-glow: rgba(200, 167, 106, 0.25);
  
  --charcoal: #1F2421;
  --charcoal-soft: #444B46;
  --text-muted: #656E68;
  --white: #FFFFFF;
  
  --border-line: #E2DDD5;
  --border-emerald: rgba(28, 56, 43, 0.15);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(28, 56, 43, 0.06);
  --shadow-card: 0 8px 30px rgba(28, 56, 43, 0.09);
  --shadow-hover: 0 16px 40px rgba(28, 56, 43, 0.16);
  --shadow-glow: 0 0 30px rgba(200, 167, 106, 0.3);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 2. RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--emerald-dark);
}

body {
  background-color: var(--emerald-dark);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--emerald-dark);
}

/* ===== 3. LAYOUT UTILITIES ===== */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  background-color: var(--ivory);
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--gold);
}

.eyebrow-light {
  color: var(--gold-light);
}

.eyebrow-light::before {
  background-color: var(--gold-light);
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-gold {
  background-color: rgba(200, 167, 106, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(200, 167, 106, 0.4);
}

.badge-sage {
  background-color: rgba(136, 171, 142, 0.2);
  color: var(--sage-light);
  border: 1px solid rgba(136, 171, 142, 0.3);
}

.badge-outline {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== 4. TOP BAR NAVIGATION ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  transition: var(--transition);
}

.topbar.scrolled {
  box-shadow: 0 4px 20px rgba(28, 56, 43, 0.1);
  background: rgba(249, 246, 240, 0.96);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  background-color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.brand-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--emerald-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--emerald);
}

.nav-links a:hover::after {
  width: 100%;
}

.topbar-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--emerald);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 600;
}

.btn-phone svg {
  width: 15px;
  height: 15px;
}

.btn-phone:hover {
  background-color: rgba(28, 56, 43, 0.08);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background-color: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa svg {
  width: 16px;
  height: 16px;
}

.btn-wa:hover {
  background-color: #20bd5a;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--emerald);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== 5. HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 60%, #173327 100%);
  color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 167, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtext {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background-color: #25D366;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
}

.btn-hero-primary:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Doctor Photo Card */
.hero-photo-wrapper {
  position: relative;
}

.hero-photo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.photo-border-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 12px 0 0;
}

.photo-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--emerald-dark);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.photo-tag {
  padding: 16px 12px 8px;
  text-align: center;
}

.pt-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.pt-title {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 4px;
}

.pt-sub {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

/* Stats Strip */
.hero-stats-container {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* ===== 6. ABOUT & CREDENTIALS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-card {
  background-color: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.about-card.full-width {
  grid-column: 1 / -1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--sage-ultra-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--emerald-dark);
}

.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
}

.timeline-list strong {
  display: block;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.timeline-list span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Achievement Chips */
.achievement-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.chip {
  background-color: var(--ivory);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.chip-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--emerald);
  margin-bottom: 4px;
}

.chip-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== 7. SPECIALIZATIONS & CONDITIONS ===== */
.specializations {
  background-color: var(--white);
}

/* Ketamine Spotlight */
.spotlight-card {
  position: relative;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 32px;
  box-shadow: 0 16px 40px rgba(28, 56, 43, 0.2);
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 167, 106, 0.2) 0%, transparent 70%);
}

.spotlight-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--emerald-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.spotlight-content {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
}

.spotlight-text h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 16px;
}

.spotlight-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.spotlight-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotlight-list li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}

.spotlight-list strong {
  color: var(--gold-light);
}

.btn-spotlight {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  color: var(--emerald-dark);
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(200, 167, 106, 0.35);
}

.btn-spotlight:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.spotlight-icon-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.spotlight-icon-box svg {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.spotlight-icon-box span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Spotlight Duo */
.spotlight-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.mini-spotlight,
.spotlight-card.mini-spotlight {
  /* Reset .spotlight-card gradient so ivory bg + dark text actually show */
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(28, 56, 43, 0.08);
  margin-bottom: 0;
}

.spotlight-card.mini-spotlight::before {
  display: none;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--emerald);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-spotlight h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--emerald-dark);
}

.mini-spotlight p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mini-spotlight ul {
  list-style-type: square;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* General Conditions Grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cond-card {
  background-color: var(--ivory);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}

.cond-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--sage);
}

.cond-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.cond-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--emerald);
}

.cond-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== 8. THERAPEUTIC PHILOSOPHY ===== */
.philosophy {
  background: linear-gradient(145deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  color: var(--white);
}

.text-white {
  color: var(--white) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.75) !important;
}

.philosophy-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.phil-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.phil-tab-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.phil-tab-btn.active {
  background-color: var(--gold);
  color: var(--emerald-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.philosophy-content-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.phil-story-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.5;
  color: rgba(200, 167, 106, 0.2);
  position: absolute;
  top: 40px;
  left: 30px;
  pointer-events: none;
}

.phil-story-card h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--gold-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.story-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.story-text strong {
  color: var(--gold-light);
}

.story-text em {
  font-style: italic;
}

.phil-author {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold-light);
  text-align: right;
}

/* ===== 9. PATIENT JOURNEY ===== */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--emerald-dark);
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== 9.5. ACTIVITY HIGHLIGHTS & GALLERY ===== */
.activities {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-card {
  background-color: var(--ivory);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--emerald-dark);
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.04);
}

.gallery-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  background-color: var(--sage-ultra-light);
  border: 1px solid var(--sage-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.gallery-info h4 {
  font-size: 18px;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== 10. CLINIC LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

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

.loc-header {
  padding: 32px;
  background-color: var(--emerald-dark);
  color: var(--white);
}

.hospital-clinic .loc-header {
  background-color: #1A344A;
}

.loc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.loc-badge-blue {
  color: #8EC5FC;
}

.loc-header h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.loc-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.loc-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.loc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-info-row svg {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-info-row span {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.btn-clinic {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-full);
  background-color: var(--emerald);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
}

.btn-clinic:hover {
  background-color: var(--emerald-dark);
}

.hospital-clinic .btn-clinic {
  background-color: #1A344A;
}

.hospital-clinic .btn-clinic:hover {
  background-color: #102334;
}

/* Online Consult Banner */
.online-consult-banner {
  background: linear-gradient(135deg, rgba(200, 167, 106, 0.15) 0%, rgba(136, 171, 142, 0.2) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.online-banner-content {
  max-width: 680px;
}

.online-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-dark);
  background-color: var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.online-banner-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--emerald-dark);
}

.online-banner-content p {
  font-size: 14.5px;
  color: var(--charcoal-soft);
}

.btn-online {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background-color: var(--emerald);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(28, 56, 43, 0.2);
}

.btn-online:hover {
  background-color: var(--emerald-dark);
  transform: translateY(-2px);
}

/* ===== 11. REVIEWS / TESTIMONIALS ===== */
.testimonials {
  background-color: var(--white);
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ivory);
  border: 1px solid var(--border-line);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-top: 12px;
}

.stars {
  color: #F4B400;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--ivory);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-card {
  background-color: var(--sage-ultra-light);
  border-color: var(--sage-light);
}

.t-stars {
  color: #F4B400;
  font-size: 16px;
  margin-bottom: 14px;
}

.t-text {
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.gujarati-text {
  font-style: normal;
  font-size: 14px;
}

.t-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald);
}

/* ===== 12. FAQ ACCORDION ===== */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--emerald);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--emerald-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--emerald);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== 13. EMERGENCY BAR ===== */
.emergency-bar {
  background-color: #2D1414;
  border-top: 3px solid #D93838;
  color: var(--white);
  padding: 20px 0;
}

.emergency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-icon {
  font-size: 28px;
}

.emergency-text strong {
  display: block;
  font-size: 15px;
  color: #FF8080;
  margin-bottom: 2px;
}

.emergency-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== 14. FINAL CTA & FOOTER ===== */
.final-cta {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  color: var(--white);
  padding: 48px 0 32px;
}

.eyebrow-gold {
  color: var(--gold-light);
}

.eyebrow-gold::before {
  background-color: var(--gold-light);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.final-cta-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 36px !important;
  font-size: 16px !important;
}

/* Footer */
.footer {
  background-color: var(--emerald-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.brand-col h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}

.footer-doctor {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-creds {
  font-size: 12.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--emerald-dark);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.disclaimer {
  max-width: 600px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== 15. STICKY MOBILE ACTION BAR ===== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white);
  border-top: 1px solid var(--border-line);
  padding: 12px 16px;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
}

.sticky-call {
  background-color: var(--emerald-dark);
  color: var(--white);
}

.sticky-wa {
  background-color: #25D366;
  color: var(--white);
}

.sticky-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== 16. RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-photo-card {
    max-width: 360px;
    margin: 0 auto;
  }
  
  .spotlight-content {
    grid-template-columns: 1fr;
  }

  .spotlight-icon-box {
    display: none;
  }
  
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-line);
    box-shadow: var(--shadow-card);
  }
  
  .nav-links.mobile-open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .btn-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  
  .about-grid,
  .spotlight-duo,
  .gallery-grid,
  .locations-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .online-consult-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .sticky-mobile-bar {
    display: flex;
  }

  /* Sticky bar already has WhatsApp — hide header duplicate on mobile */
  .topbar .btn-wa {
    display: none;
  }

  footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .conditions-grid,
  .journey-steps {
    grid-template-columns: 1fr;
  }
  
  .phil-story-card {
    padding: 28px 20px;
  }
  
  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    display: none;
  }
}
