/* ==========================================================================
   RADIANCE SPEECH THERAPY, PUNE - MAIN STYLESHEET
   Brand Colors: Coral (#E8503A), Leaf Green (#2E7D32), Warm Gold (#F59E0B)
   Fully Optimized for Desktop, Tablet, and Mobile (Down to 320px)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #E8503A;
  --primary-dark: #C63622;
  --primary-light: #FFECE8;
  --secondary: #2E7D32;
  --secondary-dark: #1B5E20;
  --secondary-light: #E8F5E9;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;
  --navy: #152238;
  --navy-dark: #0D1525;
  
  /* Background & Surfaces */
  --bg-page: #FAF9F6;
  --bg-card: #FFFFFF;
  --bg-alt: #F4F8F4;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --border-card: rgba(226, 232, 240, 0.85);
  
  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(232, 80, 58, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 35px -10px rgba(46, 125, 50, 0.2);
  
  /* Transitions & Radii */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-padding {
  padding-block: 5.5rem;
}

/* --------------------------------------------------------------------------
   Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--secondary-light);
  color: var(--secondary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-badge.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header h2 span.highlight-primary {
  color: var(--primary);
}

.section-header h2 span.highlight-green {
  color: var(--secondary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.underline-decor {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 1rem auto 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.975rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #D83B23 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(232, 80, 58, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d43b24 0%, #ba2813 100%);
  box-shadow: 0 12px 25px rgba(232, 80, 58, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  box-shadow: 0 12px 25px rgba(46, 125, 50, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  width: 100%;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-name span.brand-city {
  color: var(--primary);
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(232, 80, 58, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 15% 80%, rgba(46, 125, 50, 0.08) 0%, transparent 45%),
              linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
  padding-block: 4.5rem 5.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: var(--primary-light);
  border: 1px solid rgba(232, 80, 58, 0.2);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-cert-pill i {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--navy-dark);
  letter-spacing: -0.03em;
}

.hero-title span.highlight-orange {
  color: var(--primary);
  position: relative;
}

.hero-title span.highlight-green {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-icon.green-icon {
  color: var(--secondary);
  background: var(--secondary-light);
}

.trust-icon.orange-icon {
  color: var(--primary);
  background: var(--primary-light);
}

.trust-icon.gold-icon {
  color: #B45309;
  background: var(--accent-light);
}

.trust-text h4 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.trust-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: floatAnim 4s ease-in-out infinite alternate;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-badge.badge-top {
  top: -20px;
  right: -15px;
  border-left: 4px solid var(--secondary);
}

.floating-badge.badge-bottom {
  bottom: -20px;
  left: -20px;
  border-left: 4px solid var(--primary);
  animation-delay: 2s;
}

.badge-avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-top .badge-avatar-icon {
  background: var(--secondary-light);
  color: var(--secondary);
}

.badge-bottom .badge-avatar-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-family: var(--font-heading);
}

.badge-text span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   Delivery Modalities Section
   -------------------------------------------------------------------------- */
.modalities-section {
  background: #ffffff;
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--border-light);
}

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

.modality-card {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modality-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.modality-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
  border-color: transparent;
}

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

.modality-card.card-green::before {
  background: var(--secondary);
}

.modality-card.card-blue::before {
  background: #0284C7;
}

.modality-card.card-coral::before {
  background: #F97316;
}

.modality-card.card-purple::before {
  background: #7C3AED;
}

.modality-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 0.6rem;
  transition: var(--transition);
}

.modality-card:hover .modality-icon-wrapper {
  transform: scale(1.08);
}

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

.modality-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.modality-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--bg-alt);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
}

.about-therapist-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 25px rgba(46, 125, 50, 0.3);
  text-align: center;
}

.about-experience-badge .exp-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.about-experience-badge .exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.22;
}

.about-content p.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #ffffff;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-item:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-item.pillar-coral .pillar-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.pillar-item.pillar-gold .pillar-icon {
  background: var(--accent-light);
  color: #B45309;
}

.pillar-item.pillar-blue .pillar-icon {
  background: #E0F2FE;
  color: #0284C7;
}

.pillar-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.pillar-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

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

.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  background: var(--bg-alt);
  color: var(--navy);
  border-radius: var(--radius-full);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  transition: var(--transition);
}

.service-card-cta i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-cta i {
  transform: translateX(4px);
}

/* Plan Feature Banner */
.plan-feature-banner {
  background: linear-gradient(135deg, #FFF8F6 0%, #F4F9F4 100%);
  border: 1px solid rgba(232, 80, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.plan-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.plan-banner-content h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--navy);
  line-height: 1.3;
}

.plan-banner-content h3 span {
  color: var(--primary);
}

.plan-banner-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.plan-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--navy);
}

.perk-item i {
  color: var(--secondary);
  flex-shrink: 0;
}

.plan-banner-media {
  text-align: center;
  position: relative;
}

.tree-illustration-img {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(46, 125, 50, 0.15));
}

.quote-bubble {
  background: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(232, 80, 58, 0.15);
}

/* --------------------------------------------------------------------------
   Google Reviews Section
   -------------------------------------------------------------------------- */
.reviews-section {
  background: var(--bg-alt);
  position: relative;
}

.google-rating-summary-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 3rem auto;
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.google-logo-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.google-score-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stars-row {
  color: #FBBC04;
  font-size: 1.1rem;
  display: inline-flex;
  gap: 2px;
}

.google-score-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  word-break: break-word;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 188, 4, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.reviewer-avatar.green-avatar {
  background: linear-gradient(135deg, var(--secondary) 0%, #48BB78 100%);
}

.reviewer-avatar.blue-avatar {
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
}

.reviewer-info h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--secondary);
}

.google-icon-small {
  color: #4285F4;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-body {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-block: 0.85rem 0.5rem;
  flex-grow: 1;
  font-style: italic;
}

.reviews-cta-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Contact & Location Section
   -------------------------------------------------------------------------- */
.contact-section {
  background: #ffffff;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.contact-icon-bubble.whatsapp-bubble {
  color: #25D366;
  background: #E8FDF0;
}

.contact-icon-bubble.green-bubble {
  color: var(--secondary);
  background: var(--secondary-light);
}

.contact-details h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-details p, .contact-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
  word-break: break-word;
}

.contact-details a:hover {
  color: var(--primary);
}

.map-embed-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.map-action-bar {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Booking Form */
.booking-form-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.booking-form-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.booking-form-card p.form-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  color: var(--text-main);
  transition: var(--transition);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(232, 80, 58, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* Toast Message */
.toast-msg {
  display: none;
  background: var(--secondary);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.toast-msg.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   Floating WhatsApp Button & Mobile Quick Bar
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: #1EBE5D;
  transform: scale(1.08);
  color: #fff;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulseRipple 2.2s infinite;
  z-index: -1;
}

@keyframes pulseRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.65rem 1rem;
  z-index: 995;
  border-top: 1px solid var(--border-light);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer.site-footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-name span {
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Comprehensive Responsive Media Queries
   ========================================================================== */

/* 1. Medium Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .section-padding {
    padding-block: 4.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-trust-row {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
    width: 100%;
    max-width: 720px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .plan-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .plan-perks {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 2. Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding-block: 3.75rem;
  }

  .container {
    padding-inline: 1.25rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Slide-down Mobile Menu */
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid var(--primary-light);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
  }

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

  .nav-links a::after {
    display: none;
  }

  .modalities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .plan-feature-banner {
    padding: 2rem 1.5rem;
  }

  .plan-perks {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .booking-form-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-card-box {
    padding: 1.75rem 1.25rem;
  }

  .form-submit-buttons {
    flex-direction: column;
  }

  .form-submit-buttons .btn {
    width: 100%;
  }

  /* Safe Stacking for Floating Badges on Mobile */
  .floating-badge {
    position: static;
    margin-top: 1rem;
    animation: none;
    width: 100%;
    justify-content: flex-start;
  }

  .about-experience-badge {
    position: static;
    margin-top: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Floating WhatsApp Above Bottom Sticky Bar */
  .floating-whatsapp {
    bottom: 4.8rem;
    right: 1rem;
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }

  /* Sticky Bottom Bar */
  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 4.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* 3. Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
  .brand-logo-img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .brand-logo-container {
    gap: 0.6rem;
  }

  .hero-cert-pill {
    font-size: 0.775rem;
    padding: 0.35rem 0.85rem;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .review-card {
    padding: 1.5rem 1.25rem;
  }

  .google-rating-summary-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .google-badge-left {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .google-badge-right {
    width: 100%;
  }

  .google-badge-right .btn {
    width: 100%;
  }

  .tree-illustration-img {
    max-width: 210px;
  }

  .quote-bubble {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .mobile-bottom-grid .btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
}
