/* ==========================================================================
   Gratus Kids - Styling Stylesheet
   Design: Modern, Warm, Premium, Child-friendly
   Colors: Emerald Green (#2ECC8E) -> Teal (#1BAAC7), Warm Orange Accent
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
  /* Color Palette */
  --color-white: #ffffff;
  --color-neutral-light: #f7faf9;
  --color-neutral-med-light: #eef4f1;
  --color-neutral-gray: #718096;
  --color-text-dark: #2d3748;
  --color-text-main: #4a5568;
  
  /* Brand Colors & Gradients */
  --brand-green-start: #2ecc8e; /* Emerald */
  --brand-green-end: #1baac7;   /* Teal */
  --gradient-brand: linear-gradient(135deg, var(--brand-green-start) 0%, var(--brand-green-end) 100%);
  
  /* Accent Colors */
  --color-accent-orange: #ff7a30;
  --color-accent-orange-hover: #e8631c;
  --color-accent-green-bg: rgba(46, 204, 142, 0.08);
  --color-accent-orange-bg: rgba(255, 122, 48, 0.08);
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(45, 55, 72, 0.06);
  --shadow-lg: 0 20px 40px rgba(45, 55, 72, 0.1);
  --shadow-glow: 0 10px 30px rgba(46, 204, 142, 0.2);
  
  /* Layout Spacing */
  --container-max-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}

/* 2. Global Resets & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.text-center { text-align: center; }
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 960px; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 1140px; margin-left: auto; margin-right: auto; }
.text-white { color: var(--color-white) !important; }
.opacity-80 { opacity: 0.8; }
.w-full { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.btn-accent:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 48, 0.25);
}

.btn-outline {
  border: 2px solid var(--brand-green-start);
  color: var(--brand-green-start);
  background-color: transparent;
}

.btn-outline:hover {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--brand-green-start);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Grid Layouts */
.grid-cards {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3-col {
  grid-template-columns: 1fr;
}

.grid-4-col {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-2-col, .grid-two-col { grid-template-columns: repeat(2, 1fr); }
  .grid-3-col { grid-template-columns: repeat(2, 1fr); }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3-col { grid-template-columns: repeat(3, 1fr); }
  .grid-4-col { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .grid-4-col { grid-template-columns: repeat(4, 1fr); }
}

/* 3. Header & Navigation Styling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(46, 204, 142, 0.08);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 6px 0;
  background-color: var(--color-white);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: all var(--transition-normal);
}

.site-header.scrolled .header-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal);
}

.site-header.scrolled .logo-img {
  height: 48px;
}

.footer-logo .logo-img {
  height: 64px;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item:hover, .nav-item.active {
  color: var(--brand-green-start);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition-normal);
}

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

/* Dropdown Menu styling */
.dropdown-wrapper {
  position: relative;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 500px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(46, 204, 142, 0.08);
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

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

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-green-start);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--color-neutral-med-light);
  padding-bottom: 6px;
  margin-bottom: 4px;
}

.dropdown-sub-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 4px 0;
}

.dropdown-sub-item:hover {
  color: var(--brand-green-end);
  padding-left: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--color-text-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-neutral-med-light);
}

/* Mobile Nav Menu Overlay */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 2px solid var(--color-neutral-med-light);
  padding: 24px 0 32px 0;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  text-align: left;
}

.mobile-toggle-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-green-start);
  transition: transform var(--transition-fast);
}

.mobile-dropdown-toggle.active .mobile-toggle-icon {
  transform: rotate(45deg);
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  border-left: 2px solid var(--color-neutral-med-light);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-submenu a {
  font-size: 0.95rem;
  color: var(--color-text-main);
  padding: 4px 0;
  display: block;
}

.mobile-cta-li {
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .desktop-nav { display: block; }
  .mobile-menu-btn { display: none; }
  .mobile-nav { display: none !important; }
}

/* 4. Hero Section Styling */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  background-color: var(--color-neutral-light);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(46, 204, 142, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(27, 170, 199, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent-green-bg);
  color: var(--brand-green-start);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  transition: transform var(--transition-slow);
}

.hero-img:hover {
  transform: scale(1.03);
}

.image-accent-glow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-brand);
  opacity: 0.15;
  filter: blur(40px);
  border-radius: var(--radius-circle);
}

@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; }
  .hero-title { font-size: 2.8rem; }
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.2fr 1fr;
    padding-bottom: 60px;
  }
  .hero-title { font-size: 3.5rem; }
}

/* Trust Badges Styling */
.hero-trust-badges {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-neutral-med-light);
  border-bottom: 1px solid var(--color-neutral-med-light);
  padding: 24px 0;
  position: relative;
  z-index: 2;
  margin-top: 48px;
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-accent-green-bg);
  border-radius: var(--radius-circle);
  color: var(--brand-green-start);
  flex-shrink: 0;
}

.badge-icon {
  width: 22px;
  height: 22px;
}

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

.badge-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.badge-lbl {
  font-size: 0.8rem;
  color: var(--color-neutral-gray);
}

@media (min-width: 900px) {
  .badges-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 5. Pain Points / Empathy Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-green-start);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-main);
  max-width: 680px;
  margin: 0 auto;
}

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

.pain-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-brand);
  transition: var(--transition-normal);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 142, 0.15);
}

.pain-card:hover::before {
  height: 100%;
}

.pain-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-orange-bg);
  border-radius: var(--radius-sm);
  color: var(--color-accent-orange);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.pain-card:hover .pain-icon-wrapper {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
}

.pain-icon {
  width: 22px;
  height: 22px;
}

.pain-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain-card-text {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin: 0;
}

/* 6. About Section Styling */
.about-section {
  background-color: var(--color-neutral-light);
}

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

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 400px;
}

.experience-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  text-align: center;
}

.exp-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 4px;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 480px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-green-start);
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.stat-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-neutral-gray);
}

/* 7. Conditions We Treat Styling */
.conditions-section {
  background: var(--gradient-brand);
  position: relative;
}

.condition-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
}

.condition-card:hover {
  background-color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.condition-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.condition-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.condition-card:hover .condition-icon-box {
  background-color: var(--color-accent-green-bg);
  color: var(--brand-green-start);
}

.condition-icon {
  width: 20px;
  height: 20px;
}

.condition-name {
  font-size: 1.2rem;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.condition-card:hover .condition-name {
  color: var(--color-text-dark);
}

.condition-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  transition: color var(--transition-fast);
}

.condition-card:hover .condition-text {
  color: var(--color-text-main);
}

/* 8. Our Services Styling */
.services-section {
  background-color: var(--color-white);
}

.services-tabs {
  display: inline-flex;
  background-color: var(--color-neutral-light);
  border: 1px solid var(--color-neutral-med-light);
  padding: 6px;
  border-radius: 30px;
  margin-top: 32px;
}

.tab-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 20px;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn-icon {
  width: 16px;
  height: 16px;
}

.tab-btn:hover {
  color: var(--brand-green-start);
}

.tab-btn.active {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-pane.active {
  display: block;
}

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

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 142, 0.15);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-green-bg);
  color: var(--brand-green-start);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.service-icon {
  width: 22px;
  height: 22px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-desc-text {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-green-start);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}

.link-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.service-link:hover {
  color: var(--brand-green-end);
}

.service-link:hover .link-chevron {
  transform: translateX(4px);
}

/* 9. Approach / Process Section Styling */
.approach-section {
  background-color: var(--color-neutral-light);
}

.timeline-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-med-light);
  transition: transform var(--transition-fast);
}

.timeline-step:hover {
  transform: translateY(-2px);
}

.step-num-box {
  position: absolute;
  top: -20px;
  left: 32px;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(46, 204, 142, 0.2);
}

.step-icon-wrapper {
  width: 44px;
  height: 44px;
  color: var(--brand-green-start);
  background-color: var(--color-accent-green-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 8px;
}

.step-icon {
  width: 20px;
  height: 20px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin: 0;
}

@media (min-width: 768px) {
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (min-width: 1024px) {
  .timeline-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* Render as a connected line on large screens */
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--color-neutral-med-light);
    z-index: 1;
    transform: translateY(-50%);
  }
  
  .timeline-step {
    z-index: 2;
  }
}

/* 10. Meet Our Doctors Styling */
.doctors-section {
  background-color: var(--color-white);
}

.doctor-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.doctor-avatar {
  width: 120px;
  height: 120px;
  background-color: var(--color-neutral-med-light);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-gray);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  overflow: hidden;
}

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

.doctor-placeholder-icon {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-accent-orange-bg);
  color: var(--color-accent-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.doctor-name {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.doctor-degrees {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-green-start);
  margin-bottom: 14px;
}

.doctor-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.doctor-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--color-neutral-med-light);
  padding-top: 16px;
  width: 100%;
  justify-content: center;
}

.doc-stat {
  font-size: 0.85rem;
  color: var(--color-text-main);
}

@media (min-width: 600px) {
  .doctor-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .doctor-info {
    align-items: flex-start;
  }
  
  .doctor-stats {
    justify-content: flex-start;
  }
}

/* 11. Our Branches (Local SEO) Styling */
.branches-section {
  background-color: var(--color-neutral-light);
}

.branch-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.branch-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-neutral-med-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-neutral-light);
}

.branch-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.branch-location-tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--color-accent-green-bg);
  color: var(--brand-green-start);
}

.branch-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.branch-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.branch-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-green-start);
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-detail-text {
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.contact-link:hover {
  color: var(--brand-green-start);
}

.branch-map-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--color-neutral-med-light);
}

.branch-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-full-mobile {
  flex-grow: 1;
}

/* 12. FAQ Section Styling */
.faq-section {
  background-color: var(--color-white);
}

.faq-accordion-container {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--color-neutral-med-light);
  padding: 6px 0;
}

.faq-question-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--brand-green-start);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-green-start);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-question-btn[aria-expanded="true"] {
  color: var(--brand-green-start);
}

.faq-question-btn[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-text {
  font-size: 0.95rem;
  color: var(--color-text-main);
  padding-bottom: 24px;
  line-height: 1.6;
  margin: 0;
}

/* 13. Final CTA Banner Styling */
.final-cta-section {
  position: relative;
  background: var(--gradient-brand);
  padding: 100px 0;
  color: var(--color-white);
  overflow: hidden;
}

.cta-overlay-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  z-index: 1;
}

.relative-box {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px auto;
  opacity: 0.9;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 576px) {
  .cta-title { font-size: 3rem; }
  .cta-btn-group { flex-direction: row; }
}

/* 14. Footer Styling */
.site-footer {
  background-color: #17202a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .logo-title {
  color: var(--color-white);
}

.footer-brand-desc {
  line-height: 1.6;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-circle);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--brand-green-start);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-green-start);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--brand-green-start);
  padding-left: 4px;
}

.footer-contact-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-green-start);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-text a {
  color: inherit;
}

.footer-contact-text a:hover {
  color: var(--brand-green-start);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.credit-link {
  color: var(--brand-green-start);
  font-weight: 600;
}

.credit-link:hover {
  color: var(--brand-green-end);
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* 15. Floating WhatsApp Button Styling */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25d366;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse-whatsapp 2s infinite;
  transition: all var(--transition-fast);
}

.whatsapp-floating-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #17202a;
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

.floating-whatsapp-btn:hover {
  background-color: #1ebd59;
  transform: scale(1.05);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Custom Spacing & Mobile Services Enhancements */
@media (max-width: 991px) {
  .about-content {
    margin-top: 32px;
  }
}

/* 14. Diagnostics & Special Support Programs Styling */
.diagnostics-support-section {
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-neutral-med-light);
}

.program-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.program-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0.8;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(46, 204, 142, 0.2);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.program-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-green-bg);
  color: var(--brand-green-start);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.program-card:hover .program-icon-box {
  background: var(--gradient-brand);
  color: var(--color-white);
  transform: scale(1.05);
}

.program-icon {
  width: 26px;
  height: 26px;
}

.program-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.program-card-desc {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 28px;
  line-height: 1.6;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.4;
}

.list-bullet-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-green-start);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform var(--transition-fast);
}

.program-list li:hover .list-bullet-icon {
  transform: scale(1.2);
}

.program-card-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-green-start);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  transition: color var(--transition-fast);
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.program-card-cta:hover {
  color: var(--brand-green-end);
}

.program-card-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* 15. Video Gallery Section Styling & Testimonials Videos */
.testimonials-videos-section {
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-neutral-med-light);
}

.video-gallery-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-neutral-med-light);
}

.video-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 142, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info-box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.video-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.video-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}

/* 16. Parent Testimonials & Google Reviews Styling */
.reviews-section {
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-neutral-med-light);
}

.reviews-container {
  margin-top: 48px;
}

/* Reviews Carousel Layout */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0; /* Add slight padding so card shadows don't get clipped */
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-track .review-card {
  flex: 0 0 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel-track .review-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (min-width: 1024px) {
  .carousel-track .review-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

.review-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative; /* For Google G logo absolute positioning */
  text-align: left; /* Left align review text content */
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 142, 0.15);
}

/* Google G Brand Logo inside card */
.review-g-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.g-logo-svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-right: 28px; /* Avoid overlapping Google logo */
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Branded soft gradient avatars */
.avatar-bg-1 { background: linear-gradient(135deg, #2ECC8E, #1BAAC7); }
.avatar-bg-2 { background: linear-gradient(135deg, #FF7A30, #E8631C); }
.avatar-bg-3 { background: linear-gradient(135deg, #1BAAC7, #0B7A8F); }
.avatar-bg-4 { background: linear-gradient(135deg, #2ECC8E, #1B8C5A); }
.avatar-bg-5 { background: linear-gradient(135deg, #FF7A30, #F39C12); }
.avatar-bg-6 { background: linear-gradient(135deg, #1BAAC7, #3498DB); }
.avatar-bg-7 { background: linear-gradient(135deg, #2ECC8E, #27AE60); }

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  text-align: left;
}

.review-rating-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f1c40f; /* Google Gold */
}

.star-icon {
  width: 14px;
  height: 14px;
}

.fill-star {
  fill: #f1c40f;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-neutral-gray);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.verified-badge .badge-icon {
  width: 12px;
  height: 12px;
  color: var(--brand-green-start);
}

.review-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left; /* Left align review text */
}

.review-actions {
  display: flex;
  justify-content: flex-start; /* Left align action link */
  align-items: center;
  border-top: 1px solid var(--color-neutral-med-light);
  padding-top: 16px;
  margin-top: auto;
}

.maps-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-neutral-gray);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.maps-link:hover {
  color: var(--color-text-dark);
}

.link-icon {
  width: 12px;
  height: 12px;
}

/* Premium Carousel Controls (Chevrons) */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-med-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
}

.carousel-control:hover:not(:disabled) {
  background-color: var(--brand-green-start);
  border-color: var(--brand-green-start);
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(46, 204, 142, 0.25);
  transform: translateY(-50%) scale(1.06);
}

.carousel-control:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.carousel-control:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-control.prev {
  left: -24px;
}

.carousel-control.next {
  right: -24px;
}

@media (max-width: 1280px) {
  .carousel-control.prev {
    left: -10px;
  }
  .carousel-control.next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .carousel-control {
    width: 40px;
    height: 40px;
  }
  .carousel-control.prev {
    left: -5px;
  }
  .carousel-control.next {
    right: -5px;
  }
}

/* Premium Dots Pagination */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-neutral-gray);
  opacity: 0.4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot:hover {
  opacity: 0.7;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-green-start), var(--brand-green-end));
  opacity: 1;
  box-shadow: 0 2px 6px rgba(46, 204, 142, 0.3);
}

/* =========================================================
   ULTIMATE ATIVO THEME OVERRIDE ARMOR
   ========================================================= */

/* 1. FAQ Accordion Fix (Removes peach/orange backgrounds) */
button.faq-question-btn,
.faq-question-btn:hover,
.faq-question-btn:focus,
.faq-question-btn:active,
.faq-question-btn[aria-expanded="true"] {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. Services Tab Buttons Fix (Removes orange hover/active background) */
.services-tabs button.tab-btn {
    background: transparent !important;
    background-color: transparent !important;
    color: #4a5568 !important;
    box-shadow: none !important;
}

.services-tabs button.tab-btn:hover {
    background-color: rgba(46, 204, 142, 0.1) !important;
    color: #2ECC8E !important;
}

.services-tabs button.tab-btn.active {
    background: linear-gradient(135deg, #2ECC8E 0%, #1BAAC7 100%) !important;
    background-color: transparent !important;
    color: #ffffff !important;
}

/* 3. Card Links Fix (Forces 'Learn More' / 'Book Assessment' to be green) */
.program-card-cta,
.service-link,
.program-card a.program-card-cta,
.service-card a.service-link {
    color: #2ECC8E !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

.program-card-cta:hover,
.service-link:hover,
.program-card a.program-card-cta:hover,
.service-card a.service-link:hover {
    color: #1BAAC7 !important;
}


