/* ============================================================
   GARBHAGRUHA HEALTH CENTER — styles.css
   Version 1.0 | garbhagruha.com
   Design: Premium women's healthcare | Bangalore, India
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Core Brand Colours */
  --color-primary:      #3D0066;   /* Deep Plum — headings, nav, primary buttons */
  --color-secondary:    #7B2D8B;   /* Royal Violet — accents, secondary elements */
  --color-lavender:     #F0E8FF;   /* Soft Lavender — section backgrounds, cards */
  --color-warm-white:   #FDF9F5;   /* Warm White — page background */
  --color-blush:        #F5E6EF;   /* Blush Rose — maternity section tint */
  --color-gold:         #C9972A;   /* Antique Gold — awards, CTAs, highlights */

  /* Text Colours */
  --color-text-dark:    #1A0030;   /* Near black — body text */
  --color-text-mid:     #4A3555;   /* Mid tone — secondary text */
  --color-text-light:   #7A6585;   /* Light — captions, meta text */

  /* UI Colours */
  --color-white:        #FFFFFF;
  --color-whatsapp:     #25D366;
  --color-divider:      rgba(61, 0, 102, 0.12);
  --color-overlay-dark: rgba(26, 0, 48, 0.62);
  --color-overlay-hero: rgba(26, 0, 48, 0.52);
  --color-card-shadow:  rgba(61, 0, 102, 0.10);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs:     11px;
  --text-sm:     13px;
  --text-base:   16px;
  --text-md:     18px;
  --text-lg:     20px;
  --text-xl:     24px;
  --text-2xl:    30px;
  --text-3xl:    36px;
  --text-4xl:    44px;
  --text-5xl:    56px;
  --text-6xl:    64px;

  /* Font Weights */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;

  /* Line Heights */
  --leading-tight:  1.2;
  --leading-snug:   1.4;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  /* Letter Spacing */
  --tracking-wide:  0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest:0.15em;

  /* Spacing Scale */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32: 128px;

  /* Layout */
  --max-width:        1200px;
  --section-padding-y: 80px;
  --container-px:      0px;

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(61, 0, 102, 0.08);
  --shadow-md:  0 4px 20px rgba(61, 0, 102, 0.12);
  --shadow-lg:  0 8px 40px rgba(61, 0, 102, 0.16);
  --shadow-xl:  0 16px 60px rgba(61, 0, 102, 0.20);
  --shadow-gold:0 4px 20px rgba(201, 151, 42, 0.25);

  /* Transitions */
  --transition-fast:   0.18s ease;
  --transition-base:   0.28s ease;
  --transition-slow:   0.45s ease;

  /* Z-Index Scale */
  --z-base:    1;
  --z-above:   10;
  --z-nav:     100;
  --z-sticky:  200;
  --z-modal:   1000;
  --z-toast:   2000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: var(--color-text-dark);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: var(--text-base);
}

/* ============================================================
   4. TYPOGRAPHY SYSTEM
   ============================================================ */

/* Eyebrow Labels */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

.eyebrow--light {
  color: rgba(201, 151, 42, 0.85);
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.75);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: var(--weight-medium);
  line-height: var(--leading-tight);
  color: var(--color-primary);
}

h1 {
  font-size: clamp(36px, 6vw, var(--text-6xl));
}

h2 {
  font-size: clamp(28px, 4vw, var(--text-3xl));
}

h3 {
  font-size: clamp(22px, 3vw, var(--text-2xl));
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

/* Section Headings */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

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

.section-heading--light {
  color: var(--color-white);
}

.section-subheading {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: var(--color-text-mid);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

.section-subheading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Pull Quote */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: var(--weight-medium);
  color: var(--color-secondary);
  line-height: var(--leading-snug);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
}

/* Body Text */
p {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: var(--leading-relaxed);
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

.text-lead {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--color-text-mid);
}

.text-small {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section--lavender {
  background-color: var(--color-lavender);
}

.section--blush {
  background-color: var(--color-blush);
}

.section--plum {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark {
  background-color: var(--color-text-dark);
  color: var(--color-white);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

.grid-auto-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Flex Utilities */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center{ align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: var(--space-2); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Spacing Utilities */
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-lavender);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-lavender);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary on Dark Background */
.btn-secondary--light {
  background-color: transparent;
  color: var(--color-lavender);
  border-color: rgba(240, 232, 255, 0.6);
}

.btn-secondary--light:hover {
  background-color: rgba(240, 232, 255, 0.12);
  border-color: var(--color-lavender);
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background-color: #20ba58;
  border-color: #20ba58;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Gold Outline Button */
.btn-gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Button Sizes */
.btn-lg {
  font-size: var(--text-base);
  padding: 15px 36px;
}

.btn-sm {
  font-size: var(--text-xs);
  padding: 10px 20px;
}

/* Button Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* WhatsApp Icon */
.btn .whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-base);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(61, 0, 102, 0.10);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}



/* Update this block in styles.css to tighten the nav items */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0; /* Reduced from gap: var(--space-1) */
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px; /* Slightly smaller to prevent wrapping */
  font-weight: var(--weight-medium);
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 8px 10px; /* Reduced horizontal padding */
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background-color: var(--color-lavender);
}

/* Nav Right Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 34px;
}

.lang-toggle button {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-mid);
  background: none;
  border: none;
  padding: 0 12px;
  height: 100%;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  letter-spacing: var(--tracking-wide);
}

.lang-toggle button.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.lang-toggle button:hover:not(.active) {
  background-color: var(--color-lavender);
  color: var(--color-primary);
}

/* Mobile Nav Toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.nav-hamburger:hover {
  background-color: var(--color-lavender);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--color-warm-white);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-4) var(--space-6) var(--space-6);
  gap: var(--space-1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--color-text-dark);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.nav-mobile a:hover {
  background-color: var(--color-lavender);
  color: var(--color-primary);
}

.nav-mobile-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4) 0;
  border-top: 1px solid var(--color-divider);
  margin-top: var(--space-3);
}

/* ============================================================
   8. TRUST STRIP
   ============================================================ */

.trust-strip {
  background-color: var(--color-lavender);
  padding: var(--space-3) var(--space-6);
  text-align: center;
  border-bottom: 1px solid rgba(123, 45, 139, 0.12);
}

.trust-strip p {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-mid);
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.trust-strip .stars {
  color: var(--color-gold);
  letter-spacing: 1px;
  font-size: 13px;
}

.trust-strip .separator {
  color: var(--color-text-light);
  margin: 0 var(--space-1);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  /* Change 100svh to a fixed height like 70vh or 600px */
  height: 70vh; 
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This shifts the focus to the right so Dr. Rashmi remains visible */
  object-position: 70% center; 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 0, 48, 0.75) 0%,
    rgba(61, 0, 102, 0.55) 50%,
    rgba(61, 0, 102, 0.20) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-24) var(--space-6) var(--space-20);
  width: 100%;
}

.hero-content--narrow {
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.hero h1 em {
  font-style: italic;
  color: rgba(240, 232, 255, 0.90);
}

.hero-subtext {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

/* Service Pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.service-pill {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-lavender);
  background-color: rgba(61, 0, 102, 0.45);
  border: 1px solid rgba(240, 232, 255, 0.30);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.service-pill:hover {
  background-color: rgba(61, 0, 102, 0.65);
  border-color: rgba(240, 232, 255, 0.55);
}

/* Hero — Page variant (shorter, for inner pages) */
.hero--page {
  min-height: 420px;
}

.hero--page .hero-content {
  padding: var(--space-20) var(--space-6) var(--space-16);
}

/* ============================================================
   10. CARDS
   ============================================================ */

/* Base Card */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-body {
  padding: var(--space-6);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Service Card */
.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 24px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card-link {
  gap: var(--space-3);
}

/* Review / Testimonial Card */
.review-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review-card .stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--color-text-dark);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.review-author-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-dark);
}

.review-source {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: 2px;
}

/* Featured Review Card */
.review-card--featured {
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-blush) 100%);
  border-color: transparent;
  padding: var(--space-8);
}

.review-card--featured blockquote {
  font-size: var(--text-lg);
}

/* ============================================================
   11. AWARDS STRIP
   ============================================================ */

.awards-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5A1080 100%);
  padding: var(--space-8) var(--space-6);
}

.awards-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.award-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.award-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.award-text-block {}

.award-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-gold);
  line-height: 1.2;
}

.award-org {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(240, 232, 255, 0.70);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.award-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(240, 232, 255, 0.20);
  flex-shrink: 0;
}

/* ============================================================
   12. RATINGS SHOWCASE
   ============================================================ */

.ratings-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding: var(--space-10) 0;
}

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

.rating-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  line-height: 1;
}

.rating-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin: var(--space-1) 0;
}

.rating-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

.rating-count {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.ratings-divider {
  width: 1px;
  height: 56px;
  background-color: var(--color-divider);
}

/* ============================================================
   13. CREDENTIALS BLOCK
   ============================================================ */

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
}

.credential-badge {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  background-color: var(--color-lavender);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.credential-text {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  font-weight: var(--weight-regular);
  line-height: 1.5;
}

/* ============================================================
   14. DOCTOR PROFILE LAYOUT
   ============================================================ */

.doctor-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.doctor-split--reverse {
  direction: rtl;
}

.doctor-split--reverse > * {
  direction: ltr;
}

.doctor-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.doctor-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-image-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: rgba(26, 0, 48, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  color: var(--color-white);
}

.doctor-image-badge .name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: 1.2;
}

.doctor-image-badge .title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(240, 232, 255, 0.75);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   15. EXPERTISE LIST
   ============================================================ */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-lavender);
  border-radius: var(--radius-md);
}

.expertise-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.expertise-item p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  font-weight: var(--weight-regular);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   16. FAQ ACCORDION
   ============================================================ */

.faq-section {
  max-width: 820px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: var(--space-8);
}

.faq-group-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-lavender);
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text-dark);
  line-height: var(--leading-snug);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question.open {
  color: var(--color-primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: var(--color-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background-color var(--transition-fast);
  color: var(--color-primary);
  font-style: normal;
  font-size: 16px;
  line-height: 1;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
}

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

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-text-mid);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   17. YOUTUBE SHORTS SECTION
   ============================================================ */

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.short-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 9/16;
  background-color: var(--color-text-dark);
}

.short-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   18. INSTAGRAM SECTION
   ============================================================ */

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.instagram-handle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-secondary);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.instagram-handle:hover {
  color: var(--color-primary);
}

/* ============================================================
   19. CONTACT & FORM
   ============================================================ */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 4px;
}

.contact-value {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  font-weight: var(--weight-regular);
  line-height: 1.5;
}

.contact-value a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: color var(--transition-fast);
}

.contact-value a:hover {
  color: var(--color-secondary);
}

/* Phone Number Display */
.phone-display {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

.phone-display:hover {
  color: var(--color-secondary);
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.10);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--leading-relaxed);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

/* Google Maps Embed */
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   20. CTA BANNER SECTION
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5A0090 100%);
  padding: var(--space-20) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 380px;
  height: 380px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(240, 232, 255, 0.80);
  margin-bottom: var(--space-8);
  font-size: var(--text-md);
}

/* ============================================================
   21. PHOTO GALLERY / MOMENTS
   ============================================================ */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.moment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.moment-card:hover img {
  transform: scale(1.05);
}

.moment-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(26, 0, 48, 0.75) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.moment-card:hover .moment-card-overlay {
  opacity: 1;
}

/* ============================================================
   22. BLOG CARD
   ============================================================ */

.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  display: block;
}

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

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--color-lavender);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: var(--space-5) var(--space-6) var(--space-6);
}

.blog-category {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

.blog-card-meta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.blog-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-name {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-dark);
}

.blog-author-title {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ============================================================
   23. FLOATING WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-sticky);
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.10) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}

/* Pulse Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--color-whatsapp);
  opacity: 0.4;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1);    opacity: 0.40; }
  50%  { transform: scale(1.30); opacity: 0; }
  100% { transform: scale(1);    opacity: 0; }
}

/* ============================================================
   24. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-text-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-16);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: rgba(240, 232, 255, 0.70);
  margin-bottom: var(--space-5);
  line-height: var(--leading-snug);
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
}

.footer-rating .stars {
  color: var(--color-gold);
  letter-spacing: 1px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--color-lavender);
}

.footer-contact p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.footer-contact a {
  color: var(--color-lavender);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
  text-decoration: none;
  font-size: 16px;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-5) var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* ============================================================
   25. SECTION INTRO (Eyebrow + Heading + Subtext block)
   ============================================================ */

.section-intro {
  margin-bottom: var(--space-12);
}

.section-intro--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-intro .section-heading {
  margin-bottom: var(--space-4);
}

.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-secondary));
  border-radius: 2px;
  margin: var(--space-4) 0;
}

.section-intro--center .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   26. UTILITY & HELPER CLASSES
   ============================================================ */

/* Visually hidden (accessibility) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: var(--z-modal);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* Image utilities */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Rounded image */
.img-rounded { border-radius: var(--radius-lg); }
.img-circle  { border-radius: var(--radius-full); }

/* Gold accent line */
.gold-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 var(--space-2);
}

/* Tag / Badge */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.tag--plum   { background-color: var(--color-lavender); color: var(--color-primary); }
.tag--gold   { background-color: rgba(201, 151, 42, 0.12); color: var(--color-gold); }
.tag--blush  { background-color: var(--color-blush); color: var(--color-secondary); }
.tag--white  { background-color: rgba(255,255,255,0.15); color: var(--color-white); }

/* Read More Link */
.read-more {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.read-more:hover {
  color: var(--color-secondary);
  gap: var(--space-3);
}

/* Aspect Ratio Helpers */
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-4-3  { aspect-ratio: 4/3; }
.aspect-3-4  { aspect-ratio: 3/4; }
.aspect-1-1  { aspect-ratio: 1/1; }
.aspect-9-16 { aspect-ratio: 9/16; }

/* Overflow hidden */
.overflow-hidden { overflow: hidden; }

/* ============================================================
   27. ANIMATIONS
   ============================================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.65s ease both;
}

.animate-fade-up--delay-1 { animation-delay: 0.15s; }
.animate-fade-up--delay-2 { animation-delay: 0.30s; }
.animate-fade-up--delay-3 { animation-delay: 0.45s; }
.animate-fade-up--delay-4 { animation-delay: 0.60s; }

/* Scroll reveal — initial state */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   28. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-padding-y: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .doctor-split {
    gap: var(--space-10);
  }

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

  .shorts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

/* ============================================================
   29. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --section-padding-y: 48px;
  }

  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  /* Nav */
  .nav-inner {
    height: 60px;
    padding: 0 var(--space-5);
  }

 

  /* Hero */
  .hero {
    min-height: 90svh;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-subtext {
    font-size: var(--text-base);
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Doctor Split */
  .doctor-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    direction: ltr;
  }

  .doctor-split--reverse {
    direction: ltr;
  }

  .doctor-image-wrap {
    aspect-ratio: 4/3;
  }

  /* Expertise */
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* YouTube Shorts */
  .shorts-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Moments */
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Awards Strip */
  .awards-strip-inner {
    flex-direction: column;
    gap: var(--space-5);
  }

  .award-divider {
    display: none;
  }

  /* Ratings */
  .ratings-showcase {
    gap: var(--space-5);
  }

  .ratings-divider {
    display: none;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* CTA Banner */
  .cta-banner {
    padding: var(--space-12) var(--space-5);
  }

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  /* Btn Group */
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust strip */
  .trust-strip p {
    font-size: 10px;
  }
}

/* ============================================================
   30. RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 26px;
  }

  .phone-display {
    font-size: 26px;
  }

  .moments-grid {
    grid-template-columns: 1fr;
  }

  .service-pills {
    gap: var(--space-1);
  }
}

/* ============================================================
   31. PRINT STYLES
   ============================================================ */

@media print {
  .site-nav,
  .whatsapp-float,
  .cta-banner,
  .site-footer {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}

.short-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 9/16;
  background-color: var(--color-primary);
}

.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.short-card:hover img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.short-card:hover .play-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Styling for the Logo Container */
/* Update this block in your styles.css */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important; /* Removes the white box */
  box-shadow: none !important;              /* Removes the shadow */
  padding: 0;
  line-height: 0;
}

.logo-container img {
  display: block;
  height: 44px; /* Matches your original logo height */
  width: auto;
  object-fit: contain; 
}

/* ============================================================
   END OF STYLES.CSS — GarbhaGruha Health Center v1.0
   ============================================================ */
