/* ============================================================
   Green Lights Trans — NEMT Medical Transportation Website
   Aesthetic: Clean Medical | Trustworthy | ADA Accessible
   Fonts: Nunito (headings, warm+rounded) + Source Sans 3 (body)
   Colors: Deep Medical Green + Soft White + Warm Gray accents
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --green-900:   #083d1f;
  --green-800:   #0d5228;
  --green-700:   #126633;
  --green-600:   #1a7a3e;
  --green-500:   #22943f;  /* primary */
  --green-400:   #34b657;
  --green-100:   #e6f7ec;
  --green-50:    #f0faf4;
  --teal:        #0f9b8e;
  --teal-light:  #e0f5f3;
  --blue-soft:   #e8f4fd;
  --gold:        #f5a623;
  --gold-light:  #fef3da;
  --white:       #ffffff;
  --off-white:   #f8faf9;
  --gray-50:     #f4f6f5;
  --gray-100:    #e8edeb;
  --gray-200:    #d1dbd6;
  --gray-400:    #8fa89a;
  --gray-600:    #4a6358;
  --gray-800:    #1e2e28;
  --text:        #1a2922;
  --text-soft:   #4a6358;
  --text-muted:  #7a9488;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(18,102,51,0.07);
  --shadow:      0 4px 20px rgba(18,102,51,0.10);
  --shadow-lg:   0 8px 40px rgba(18,102,51,0.14);
  --shadow-xl:   0 16px 64px rgba(18,102,51,0.18);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-900);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--green-600);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--green-100);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-lg); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green-800);
  letter-spacing: -0.3px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(34,148,63,0.3);
}
.nav-logo-icon svg { width: 26px; height: 26px; fill: white; }
.nav-logo span { color: var(--green-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--green-50); color: var(--green-700); }
.nav-links a.active { background: var(--green-100); color: var(--green-700); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  padding: 13px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(34,148,63,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,148,63,0.45);
}
.btn-secondary {
  background: white;
  color: var(--green-700);
  padding: 13px 28px;
  font-size: 1rem;
  border: 2.5px solid var(--green-400);
}
.btn-secondary:hover {
  background: var(--green-50);
  border-color: var(--green-600);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--green-700);
  padding: 13px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: white;
  padding: 11px 26px;
  font-size: 1rem;
  border: 2.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-lg { padding: 17px 38px; font-size: 1.1rem; }
.btn-xl { padding: 20px 48px; font-size: 1.15rem; }

.nav-cta {  color: white; padding: 10px 22px; font-size: 0.92rem; box-shadow: 0 3px 12px rgba(34,148,63,0.3); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,148,63,0.4); background: linear-gradient(135deg, var(--green-700), var(--green-600)); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.nav-hamburger span { display: block; width: 26px; height: 2.5px; background: var(--green-700); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 96px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-900) 0%, var(--green-700) 45%, var(--green-600) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 75% 40%, rgba(52,182,87,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(15,155,142,0.10) 0%, transparent 60%);
  pointer-events: none;
}
/* Medical cross pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: white;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: #7bf0a0;
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust-item svg { width:18px; height:18px; stroke:#4ade80; }

/* Hero Visual Card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  backdrop-filter: blur(16px);
  color: white;
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(74,222,128,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width:26px; height:26px; stroke:#4ade80; }
.hero-card h3 { font-size: 1rem; color: white; margin-bottom: 2px; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.hero-card-stat {
  display: flex;
  gap: 20px;
}
.hero-stat strong { display:block; font-family:'Nunito',sans-serif; font-size:1.7rem; font-weight:900; color:#7bf0a0; }
.hero-stat span { font-size:0.78rem; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.5px; }

/* ── SECTION BASE ── */
.section { padding: 88px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 3px;
  background: var(--green-500);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.75;
}

/* ── AHCCCS BANNER ── */
.ahcccs-banner {
  background: linear-gradient(135deg, var(--teal), #0d7a6e);
  padding: 28px 5%;
}
.ahcccs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ahcccs-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ahcccs-icon svg { width:28px; height:28px; stroke:white; }
.ahcccs-text h3 { color:white; font-size:1.05rem; margin-bottom:3px; }
.ahcccs-text p { color:rgba(255,255,255,0.82); font-size:0.9rem; }
.ahcccs-banner .btn-white { margin-left:auto; font-size:0.9rem; padding:10px 22px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--green-200, #b8e8c6);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--green-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--green-100); }
.service-icon-wrap svg { width:30px; height:30px; stroke:var(--green-600); }
.service-card h3 { font-size:1.2rem; margin-bottom:10px; }
.service-card p { color:var(--text-soft); font-size:0.95rem; line-height:1.7; }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  background: var(--green-50);
  color: var(--green-700);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1.5px solid var(--green-100);
}
.service-badge svg { width:13px; height:13px; }

/* ── WHY US ── */
.why-section { background: var(--green-900); }
.why-section .section-label { color: #7bf0a0; }
.why-section .section-label::before { background: #7bf0a0; }
.why-section .section-title { color: white; }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(74,222,128,0.07);
  border-color: rgba(74,222,128,0.2);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 56px; height: 56px;
  background: rgba(74,222,128,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card-icon svg { width:26px; height:26px; stroke:#7bf0a0; }
.why-card h3 { color:white; font-size:1.1rem; margin-bottom:10px; }
.why-card p { color:rgba(255,255,255,0.6); font-size:0.9rem; line-height:1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 3rem;
  color: var(--green-200, #b8e8c6);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-footer { display:flex; align-items:center; gap:14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color:var(--text-muted); }
.testimonial-service {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--green-700);
  background: var(--green-50);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  padding: 60px 5%;
}
.stats-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-strip-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-strip-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 96px 5%;
  background: var(--off-white);
}
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(52,182,87,0.15) 0%, transparent 70%);
}
.cta-box h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; position:relative; }
.cta-box p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; position:relative; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* Phone CTA */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
}
.phone-cta svg { width:20px; height:20px; stroke:#4ade80; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual-block {
  position: relative;
}
.about-visual-main {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl);
  aspect-ratio: 5/6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 60% 40%, rgba(52,182,87,0.15), transparent);
}
.about-visual-icon { width:120px; height:120px; opacity:0.18; }
.about-visual-icon svg { width:100%; height:100%; stroke:white; }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--green-900);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.about-badge-float strong { display:block; font-family:'Nunito',sans-serif; font-size:1.9rem; font-weight:900; line-height:1; }
.about-badge-float span { font-size:0.82rem; font-weight:600; }
.about-text-block { }
.about-text-block p { color:var(--text-soft); line-height:1.8; margin-bottom:16px; font-size:1.02rem; }
.about-mission-box {
  background: var(--green-50);
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.about-mission-box p { color:var(--green-800); font-style:italic; font-size:1.02rem; margin:0; }
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-600);
  margin-bottom: 4px;
}
.about-stat span { font-size: 0.78rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.4px; }

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); border-color: var(--green-200,#b8e8c6); transform: translateY(-4px); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width:26px; height:26px; stroke:var(--green-600); }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICE AREA ── */
.area-section { background: var(--green-50); }
.area-map-placeholder {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.area-map-placeholder svg { width:80px; height:80px; stroke:rgba(255,255,255,0.3); }
.area-map-placeholder p { color: rgba(255,255,255,0.6); font-size:0.95rem; }
.area-counties {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.county-tag {
  background: white;
  border: 1.5px solid var(--green-200,#b8e8c6);
  color: var(--green-700);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}
.contact-info-card {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  color: white;
}
.contact-info-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(74,222,128,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width:22px; height:22px; stroke:#4ade80; }
.contact-item-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-weight: 600; }
.contact-item-value { color: white; font-weight: 600; font-size: 0.97rem; }
.contact-item-value a { color: #7bf0a0; }

.ahcccs-callout {
  background: rgba(74,222,128,0.08);
  border: 1.5px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 28px;
}
.ahcccs-callout h4 { color: #7bf0a0; font-size: 0.9rem; margin-bottom: 6px; }
.ahcccs-callout p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.6; }

/* ── FORMS ── */
.form-card {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }
.form-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-600);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--green-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
}
.form-group label .req { color: #e53e3e; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,148,63,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-checkbox input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--green-500);
  flex-shrink: 0;
}
.form-checkbox label { font-size: 0.93rem; color: var(--gray-600); font-weight: 500; cursor: pointer; }
.form-submit { width:100%; padding:16px; font-size:1.05rem; border-radius:var(--radius-sm); }

/* ── ALERTS ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert svg { width:18px; height:18px; flex-shrink:0; margin-top:2px; }
.alert-success { background: #dcfce7; color: #14532d; border: 1.5px solid #bbf7d0; }
.alert-success svg { stroke: #14532d; }
.alert-error { background: #fee2e2; color: #7f1d1d; border: 1.5px solid #fecaca; }
.alert-error svg { stroke: #7f1d1d; }
.alert-info { background: var(--blue-soft); color: #1e3a5f; border: 1.5px solid #bfdbfe; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 136px 5% 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { color: #7bf0a0; }
.page-hero .section-label::before { background: #7bf0a0; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── FOOTER ── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.65);
  padding: 72px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.75; max-width: 300px; margin: 14px 0 20px; }
.footer-brand .nav-logo { color: white; }
.footer-brand .nav-logo span { color: #7bf0a0; }
.footer-brand .nav-logo-icon { background: rgba(74,222,128,0.15); box-shadow:none; }
.footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: white;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul li a { font-size:0.92rem; color:rgba(255,255,255,0.6); transition:color var(--transition); }
.footer ul li a:hover { color: #7bf0a0; }
.footer-contact-item { display:flex; gap:10px; align-items:flex-start; margin-bottom:14px; }
.footer-contact-item svg { width:16px; height:16px; stroke:#7bf0a0; flex-shrink:0; margin-top:3px; }
.footer-contact-item span { font-size:0.88rem; color:rgba(255,255,255,0.65); }
.footer-contact-item a { color:rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color:#7bf0a0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}
.footer-ada-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual-block { order: -1; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 28px; }
  .form-card { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-stats-row { grid-template-columns: repeat(2,1fr); }
  .section { padding: 64px 5%; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
}
