/* ==========================================================================
   CSS Variables (OOCSS Architecture)
   ========================================================================== */
@font-face {
  font-family: 'Amperzand';
  src: url('../fonts/Amperzand.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-medical-green: #A49F27; /* Logo Olive Gold */
  --secondary-soft-beige: #F9F8F0; /* Soft beige that pairs well with olive */
  --text-dark-charcoal: #111c30;
  --accent-terracotta: #F20D9E; /* Logo Magenta */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-radius: 8px;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-decorative: 'Amperzand', cursive;
  --spacing-unit: 1rem;
  --transition-speed: 0.3s;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* WCAG Base */
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--text-dark-charcoal);
  background-color: var(--white);
  line-height: 1.6;
  display: grid;
  grid-template-rows: auto 1fr auto; /* Sticky footer */
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-dark-charcoal);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: var(--spacing-unit);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-medical-green); }
.bg-light { background-color: var(--light-gray); }

.font-amperzand {
  font-family: var(--font-decorative);
  font-weight: normal;
  font-size: 1.2em; /* slightly larger to compensate for script font sizing */
}

.btn {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-medical-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #8da694;
}

.btn-accent {
  background-color: var(--accent-terracotta);
  color: var(--white);
}

.btn-accent:hover {
  background-color: #9c4235;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow .arrow-icon {
  background-color: rgba(255,255,255,0.2);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.btn-arrow:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation (Flexbox)
   ========================================================================== */
.site-header {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  height: auto;
  min-height: 60px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; /* Reduced global gap to prevent overflow on medium screens */
  flex-wrap: wrap; /* Allow wrapping if absolutely necessary on weird screen sizes */
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-medical-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0; /* Prevent container from shrinking */
  min-width: 250px;
  line-height: 0; /* Eliminate invisible text-based padding */
}

.logo img {
  height: 55px !important; /* Fixed height to fit header perfectly */
  width: auto !important;
  display: block !important;
  transform: none !important; /* Remove scale to prevent overflow */
  margin: 5px 0; /* Balanced margin */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Reduced gap to prevent overflow */
  flex-wrap: wrap;
}

.nav-action {
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--primary-medical-green);
}

.nav-links .btn-consult {
  margin-left: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark-charcoal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: calc(var(--spacing-unit) * 2.5) 0;
  background: linear-gradient(135deg, #f4f7f6 0%, #e2ece8 100%);
}

.hero-bg {
  padding: 4rem 0 7rem 0; /* extra padding for floating bar */
  background: url('../images/dr_ruchita_hero_clean.png') no-repeat center right/cover;
}

.services-hero-bg {
  background-image: linear-gradient(rgba(249, 248, 240, 0.5), rgba(249, 248, 240, 0.6)), url('../images/services_hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-white {
  color: #fff !important;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2.5);
}

.hero-text {
  flex: 1;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-badges {
  margin-top: calc(var(--spacing-unit) * 2);
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 1);
}

.badge {
  background-color: var(--secondary-soft-beige);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Cards (Grid & Flexbox)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--spacing-unit) * 2);
  padding: calc(var(--spacing-unit) * 1) 0;
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-unit) * 2);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-speed) ease;
  border-top: 4px solid var(--primary-medical-green);
  overflow: hidden;
}

.card.p-0 {
  padding: 0;
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: calc(var(--spacing-unit) * 1.5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: #fce4f2; /* Extremely light magenta background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  flex-grow: 1; /* Pushes the button to the bottom */
}

.card .btn {
  margin-top: auto; /* Aligns to bottom */
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: calc(var(--spacing-unit) * 2.5) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: calc(var(--spacing-unit) * 2.5);
  align-items: start;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.pedigree-list {
  margin-top: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.pedigree-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.pedigree-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-medical-green);
  font-weight: bold;
}

/* ==========================================================================
   Locations Section
   ========================================================================== */
.location-card {
  border-top-color: var(--accent-terracotta);
}

.location-card .card-icon svg {
  fill: var(--accent-terracotta);
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-medical-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--text-dark-charcoal);
  color: var(--white);
  padding: calc(var(--spacing-unit) * 1.5) 0 calc(var(--spacing-unit) * 1);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-heading {
  color: var(--secondary-soft-beige);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand-title {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-medical-green);
}

.footer-bottom {
  text-align: center;
  padding-top: calc(var(--spacing-unit) * 2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.statutory-info {
  background-color: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  background-color: var(--secondary-soft-beige);
  padding: calc(var(--spacing-unit) * 2.5) 0;
}

.testimonial-card {
  background-color: var(--white);
  padding: calc(var(--spacing-unit) * 2);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #FFD700; /* Gold */
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 0; /* Prevent double spacing with flex gap */
}

.testimonial-author {
  font-weight: 600;
  text-align: right;
  color: var(--primary-medical-green);
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-floating-btn img,
.whatsapp-floating-btn svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

/* ==========================================================================
   Media Queries (Mobile Responsiveness)
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 1.4rem !important; line-height: 1.25 !important; }
  h2 { font-size: 1.25rem !important; line-height: 1.25 !important; }
  .hero-text p { font-size: 0.9rem !important; margin: 0.75rem 0 !important; line-height: 1.4 !important; }
  
  .footer-brand-title {
    white-space: normal !important; /* Allow wrapping on very small mobile screens */
    font-size: 1.2rem !important;
  }

  .vertical-social-bar {
    display: none !important; /* Hide on mobile to prevent overlap */
  }

  .container {
    padding: 0 5%; /* Adjusted mobile padding */
  }

  .nav-container {
    gap: 0.5rem;
    flex-wrap: nowrap !important; /* Force items to stay on one row */
  }

  .nav-links {
    display: none; /* Hide default nav on mobile */
  }
  
  .menu-toggle {
    display: block; /* Show hamburger */
    order: 3;
    margin-left: 0.25rem;
    font-size: 1.2rem;
  }

  .nav-action {
    order: 2;
    margin-left: auto;
    flex-shrink: 0; /* Prevent button from squishing unreadably */
  }

  .nav-action .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .nav-action .arrow-icon {
    display: none; /* Hide arrow on mobile to guarantee it fits perfectly */
  }

  .logo {
    min-width: 200px;
    width: auto;
  }
  .logo img {
    width: 190px !important;
    height: auto !important;
    transform: scale(1.3) translateY(1px); 
    transform-origin: left center;
    margin: 0.1rem 0;
  }
  .nav-container {
    padding-top: 0.5rem; 
    padding-bottom: 0.5rem;
  }
  
  .logo {
    order: 1;
    flex-shrink: 1;
    min-width: 0; /* Let it shrink if needed */
  }

  .logo img {
    height: 35px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
  }
  
  /* Checkbox Hack for Mobile Menu */
  #menu-checkbox:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    align-items: flex-start;
  }
  
  #menu-checkbox:checked ~ .nav-links .btn-consult {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    order: 2;
    padding: 1.2rem !important;
    margin: 0 !important;
    background: var(--white) !important;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }
  
  .hero-image {
    order: 1;
    width: 100%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  /* Show image at top, stack text below */
  .hero-bg { 
    padding: 70vw 0 3rem 0 !important; 
    background-position: center top !important; 
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
    background-color: #f4f7f6 !important;
  }
  
  .about-snippet-section, .services-overview-section, .why-choose-us, .testimonials-section {
    padding: 2rem 0 !important;
  }
  
  .floating-info-bar {
    margin-top: -2rem !important;
  }
  
  .info-item { 
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.2rem !important; 
    gap: 0.75rem !important; 
  }

  .btn-large {
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem !important;
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Compact footer on mobile */
  .footer-grid {
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .site-footer p {
    margin-bottom: 0.4rem !important;
    line-height: 1.4 !important;
  }
  
  .footer-heading {
    margin-bottom: 0.5rem !important;
  }
  
  .footer-links li {
    margin-bottom: 0.25rem !important;
  }
  
  .footer-bottom {
    padding-top: 1rem !important;
  }
}

/* ==========================================================================
   Floating Info Bar
   ========================================================================== */
.floating-info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.info-item {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  gap: 1.5rem;
  border-right: 1px solid var(--secondary-soft-beige);
}

.info-item:last-child {
  border-right: none;
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--accent-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Vertical Social Bar
   ========================================================================== */
.vertical-social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-terracotta);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 1rem;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  z-index: 100;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.vertical-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.vertical-social-bar a:hover {
  background-color: rgba(0,0,0,0.1);
}

/* ==========================================================================
   Locations List (Horizontal)
   ========================================================================== */
.locations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.location-item {
  display: flex;
  flex-direction: column; /* Vertical card layout for grid */
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 0; /* Remove padding to let map/border flush */
  overflow: hidden;
  border-top: 4px solid var(--accent-terracotta); /* Modern top accent instead of side border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
}

.location-item .info {
  padding: 1rem 1.25rem; /* Tightened padding */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-item .actions {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem; /* Tightened padding */
  background: #fafafa;
  gap: 0.6rem; /* Reduced gap */
  align-items: center;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.location-item .actions .btn {
  width: 100%;
  padding: 0.5rem 1rem !important; /* Thinner button */
  font-size: 0.9rem !important;
  white-space: nowrap;
  color: white !important;
  text-align: center;
}

.location-item .actions a[href^="tel"] {
  font-size: 0.95rem !important; /* Slightly smaller phone text */
  font-weight: 600;
  color: var(--text-dark-charcoal);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.location-item .map-container {
  margin-top: 0.5rem; /* Reduced top margin */
  border-radius: 8px;
  height: 150px; /* Reduced height to save space */
}

.location-item .info h3 {
  margin-bottom: 0.5rem !important;
  font-size: 1.3rem !important;
}

.location-item .info p {
  margin-bottom: 0.75rem !important;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .locations-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .location-item {
    padding: 0;
  }
  
  .location-item .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
  }
  
  .location-item .actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-medical-green) 0%, #3a5c53 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.stats-bar::before, .stats-bar::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}
.stats-bar::before { width: 300px; height: 300px; top: -150px; left: -100px; }
.stats-bar::after { width: 200px; height: 200px; bottom: -100px; right: -50px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  background: linear-gradient(to bottom, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem !important;
}

.stat-desc {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
  max-width: 200px;
  margin: 0 auto !important;
  line-height: 1.3;
}

.stat-icon {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.stat-icon svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .stats-bar { padding: 3rem 0; }
  .stats-grid { 
    grid-template-columns: 1fr; 
    gap: 0; /* Gap managed by item padding/borders */
  }
  .stat-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-item h3 { font-size: 2.2rem; }
  .stat-label { font-size: 0.9rem; letter-spacing: 1px; }
  .stat-desc { font-size: 0.8rem; max-width: 250px; }
  .stat-icon svg { width: 32px; height: 32px; }
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: var(--light-gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testimonial-image-mini {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--primary-medical-green);
}
.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark-charcoal);
  margin-bottom: 1rem;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-medical-green);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.faq-item {
  background: #fdfdfd;
  padding: 2.5rem;
  border-radius: 15px;
  border-top: 4px solid var(--primary-medical-green);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-5px);
}
.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--primary-medical-green);
  font-size: 1.2rem;
}
.faq-item p {
  color: var(--text-muted-gray);
  line-height: 1.6;
}

/* Map Styling */
.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 200px; /* Reduced from 300px */
  border: 1px solid #eee;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .map-container { height: 180px; }
}

/* ==========================================================================
   Page Containers
   ========================================================================== */
.about-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

@media (max-width: 1024px) {
  .about-section {
    padding-top: 2rem; /* Clear sticky header on mobile */
  }
}

/* ==========================================================================
   Page Headers (Sub-pages)
   ========================================================================== */
.page-hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #f8fbfb 0%, #f0f7f7 100%);
  border-bottom: 1px solid #e2ecec;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary-medical-green);
  font-family: var(--font-heading);
  font-weight: 700;
}

.page-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4a5568;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 1.25rem;
  }
  .page-hero h1 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
}
