﻿/* ============================================================
   Waypoint Medical Transport â€” Complete Stylesheet
   ============================================================ */

/* 1. CSS Variables & Reset
   ============================================================ */
:root {
  --navy:        #171a45;
  --navy-dark:   #0f1230;
  --navy-light:  #232760;
  --teal:        #00a99d;
  --teal-light:  #91e2d6;
  --teal-dark:   #007f76;
  --white:       #ffffff;
  --gray-50:     #f5f7fa;
  --gray-100:    #edf0f5;
  --gray-200:    #d8dde8;
  --gray-300:    #b0b8cc;
  --gray-400:    #8892a8;
  --gray-500:    #606880;
  --gray-600:    #464e64;
  --gray-700:    #333a4d;
  --gray-800:    #1f2433;
  --text-dark:   #1a1d35;
  --text-body:   #3a4055;
  --text-muted:  #606880;

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(23,26,69,0.08), 0 1px 2px rgba(23,26,69,0.06);
  --shadow:      0 4px 12px rgba(23,26,69,0.10), 0 2px 6px rgba(23,26,69,0.08);
  --shadow-md:   0 8px 24px rgba(23,26,69,0.12), 0 4px 10px rgba(23,26,69,0.08);
  --shadow-lg:   0 16px 48px rgba(23,26,69,0.16), 0 8px 20px rgba(23,26,69,0.10);
  --shadow-xl:   0 24px 64px rgba(23,26,69,0.20);

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 100px;
  --container-max: 1200px;
  --container-wide: 1400px;
  --section-py: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--teal-dark);
}

ul, ol {
  list-style: none;
}

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

strong { font-weight: 600; }

/* 2. Skip to content (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 var(--radius) 0;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* 3. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: 780px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* 4. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,169,157,0.40);
}

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

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,169,157,0.30);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}

.btn-ghost:hover {
  color: var(--teal);
  background: transparent;
  transform: none;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-50);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* 5. Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), background var(--transition);
  width: 100%;
  left: 0;
  right: 0;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-height);
  width: 100%;
}

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

.logo-mark {
  flex-shrink: 0;
}

.logo-mark svg {
  width: 44px;
  height: 44px;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Main nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
  background: rgba(0,169,157,0.07);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--teal);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  border: none;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 6. Mobile Navigation
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 24px 20px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.open {
  transform: translateX(0);
  display: block;
}

.mobile-nav ul {
  margin-bottom: 32px;
}

.mobile-nav li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--teal);
  padding-left: 8px;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* 7. Hero Sections
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 69, 0.45);
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0,169,157,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(145,226,214,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,169,157,0.15);
  border: 1px solid rgba(0,169,157,0.3);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 span {
  color: var(--teal-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-trust {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(0,169,157,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.012) 30px,
    rgba(255,255,255,0.012) 31px
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--teal-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.35);
}

.breadcrumb .current {
  color: var(--teal-light);
}

/* 8. Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  flex: 1;
  text-align: center;
  position: relative;
  transition: background var(--transition-fast);
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-100);
}

.trust-item:hover {
  background: var(--gray-50);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,169,157,0.10);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

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

.trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.trust-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* 9. Section backgrounds
   ============================================================ */
.bg-white    { background: var(--white); }
.bg-gray     { background: var(--gray-50); }
.bg-navy     { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }
.bg-teal     { background: var(--teal); }

.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy p,
.bg-navy .eyebrow {
  color: var(--white);
}

.bg-navy .section-header p {
  color: rgba(255,255,255,0.70);
}

/* 10. Service Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,169,157,0.12), rgba(145,226,214,0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

.service-card-features {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.service-card-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(0,169,157,0.12);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a99d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Detailed service card (services.html) */
.service-card--detail {
  padding: 40px;
}

.service-card--detail .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,169,157,0.10);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* 11. Feature Grid (Why Choose Us)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-light);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* 12. How It Works Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-light));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  background: var(--navy);
  border: 4px solid var(--teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  box-shadow: 0 0 0 8px var(--gray-50);
  transition: box-shadow var(--transition), background var(--transition);
}

.step:hover .step-number {
  background: var(--teal);
  box-shadow: 0 0 0 8px var(--gray-50), 0 8px 24px rgba(0,169,157,0.30);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* 13. Audience Split Section
   ============================================================ */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.audience-panel {
  padding: 56px 48px;
  position: relative;
}

.audience-panel--patients {
  background: var(--navy);
  color: var(--white);
}

.audience-panel--facilities {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
}

.audience-panel h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.audience-panel p {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.audience-panel ul {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

.audience-panel li::before {
  content: 'âœ“';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* 14. Service Area Cards
   ============================================================ */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.area-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
  transform: translateY(-4px);
  color: inherit;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,169,157,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--teal);
  font-size: 1.5rem;
  transition: background var(--transition);
}

.area-card:hover .area-card-icon {
  background: rgba(0,169,157,0.15);
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.area-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.area-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 10px;
  transition: gap var(--transition-fast);
}

.area-card:hover .arrow {
  gap: 8px;
}

/* 15. Testimonial Cards
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0,169,157,0.10);
  line-height: 1;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
}

.testimonial-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 16. CTA Banners
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, rgba(0,169,157,0.15) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-banner .phone-display {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cta-banner .phone-display:hover {
  color: var(--teal-light);
}

/* 17. Forms
   ============================================================ */
.form-section {
  background: var(--white);
  padding: var(--section-py) 0;
}

.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

label .required {
  color: #e53e3e;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238892a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,169,157,0.15);
}

input.error,
select.error,
textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 5px;
  font-weight: 500;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.success-message {
  display: none;
  background: rgba(0,169,157,0.08);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.success-message.show {
  display: flex;
}

.success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Form sidebar */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.form-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card h4 svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.sidebar-contact-item:last-child {
  margin-bottom: 0;
}

.sidebar-contact-item:hover {
  color: var(--teal);
}

.sidebar-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

/* 18. Blog Cards
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,169,157,0.20) 0%, transparent 70%);
}

.blog-card-img-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  display: inline-block;
  background: rgba(0,169,157,0.10);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* 19. FAQ Accordion
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-50);
  color: var(--teal);
}

.faq-question.active {
  background: var(--gray-50);
  color: var(--teal);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.faq-question.active .faq-icon {
  background: var(--teal);
  transform: rotate(45deg);
}

.faq-question.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
}

.faq-answer.open {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-answer-inner p {
  margin-bottom: 10px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner a {
  color: var(--teal);
  font-weight: 500;
}

/* 20. Footer
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.70);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.90);
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo .logo-name {
  font-size: 1rem;
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: var(--teal-light);
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  background: var(--teal);
  color: var(--white);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--teal-light);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--teal-light);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* 21. Utility classes
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-navy  { color: var(--navy); }
.text-teal  { color: var(--teal); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

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

.hidden { display: none !important; }

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

.img-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,169,157,0.20), transparent 70%);
}

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 48px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.tag--teal {
  background: rgba(0,169,157,0.10);
  color: var(--teal-dark);
}

.tag--navy {
  background: rgba(23,26,69,0.08);
  color: var(--navy);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(0,169,157,0.12);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a99d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* Contact info section */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.contact-info-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(0,169,157,0.10);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}

.contact-info-card .icon-wrap svg {
  width: 28px;
  height: 28px;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

.contact-info-card a {
  color: var(--teal);
  font-weight: 600;
}

/* Map placeholder */
.map-placeholder {
  height: 360px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}

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

/* Careers */
.position-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.position-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.position-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 0;
}

/* Safety section */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.safety-visual {
  height: 400px;
  border-radius: var(--radius-xl);
}

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.fleet-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 4rem;
  position: relative;
}

.fleet-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,169,157,0.20), transparent 60%);
}

.fleet-body {
  padding: 24px;
}

.fleet-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.fleet-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* 22. Animations & Transitions
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.animate-fadeInUp  { animation: fadeInUp 0.6s ease both; }
.animate-fadeIn    { animation: fadeIn 0.5s ease both; }
.animate-delay-1   { animation-delay: 0.1s; }
.animate-delay-2   { animation-delay: 0.2s; }
.animate-delay-3   { animation-delay: 0.3s; }
.animate-delay-4   { animation-delay: 0.4s; }

/* 23. Focus / Accessibility
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 3px;
}

/* 24. Responsive Design
   ============================================================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  .main-nav {
    display: none;
  }

  .header-cta .header-phone {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 0 0 33.333%;
    border-right: none;
  }

  .trust-item::after {
    display: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2),
  .trust-item:nth-child(3) {
    border-bottom: 1px solid var(--gray-100);
  }

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

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

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

  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    padding: 48px 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .form-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-sidebar .sidebar-card {
    margin-bottom: 0;
  }

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

  .safety-visual {
    height: 280px;
  }

  .steps-grid::before {
    display: none;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --header-height: 68px;
  }

  .logo-img {
    height: 56px;
  }

  .hero {
    background-position: 70% center;
    min-height: 80vh;
  }

  .hero-content {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-trust {
    position: static;
    margin-top: 32px;
    display: inline-flex;
  }

  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 0 0 50%;
    border: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .trust-item:nth-child(5) {
    flex: 0 0 100%;
    border-bottom: none;
  }

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

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

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step {
    padding: 0;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 28px 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .audience-panel {
    padding: 40px 24px;
  }

  .form-sidebar {
    grid-template-columns: 1fr;
  }

  .position-card {
    flex-direction: column;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .logo-tagline {
    display: none;
  }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .area-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .trust-item {
    flex: 0 0 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .cta-banner .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner .btn {
    justify-content: center;
  }
}

/* 25. Print styles
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .mobile-nav,
  .cta-banner,
  .hero-trust {
    display: none !important;
  }

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

  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #000;
    color: #000;
    background: transparent;
  }
}

/* Footer counties column */
.footer-counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.footer-counties a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
  white-space: nowrap;
}

.footer-counties a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

/* Footer 5-column grid for counties */
.footer-grid--5 {
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

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

@media (max-width: 768px) {
  .footer-grid--5 {
    grid-template-columns: 1fr;
  }
}

/* Nav link active underline indicator */
.main-nav a.active {
  color: var(--teal);
  background: rgba(0,169,157,0.07);
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Mobile nav slide from right fix */
@media (max-width: 1024px) {
  .mobile-nav {
    display: block;
    transform: translateX(100%);
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
}

/* Smooth sticky header background transition */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(23,26,69,0.12);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: transparent;
}

/* Hide mobile-has-dropdown border-bottom since it has its own */
.mobile-has-dropdown + li {
  border-top: none;
}

/* Panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(23,26,69,0.14), 0 2px 8px rgba(23,26,69,0.08);
  border: 1px solid #edf0f5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 2000;
  overflow: hidden;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Notch arrow */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #edf0f5;
  border-top: 1px solid #edf0f5;
}

/* About dropdown — single column */
.dropdown-menu--sm {
  min-width: 220px;
  left: 0;
  transform: translateX(0) translateY(-4px);
}
.dropdown-menu--sm.open {
  transform: translateX(0) translateY(0);
}
.dropdown-menu--sm::before { left: 32px; transform: translateX(0) rotate(45deg); }

/* Counties dropdown — double column */
.dropdown-menu--counties {
  min-width: 460px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}
.dropdown-menu--counties.open {
  transform: translateX(-50%) translateY(0);
}

/* Items wrapper */
.dropdown-grid {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dropdown-menu--counties .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

/* Single item */
.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.dropdown-item:hover { background: rgba(0,169,157,.07); }

.dropdown-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: #171a45;
  line-height: 1.3;
  transition: color .15s ease;
  text-align: left;
  display: block;
}
.dropdown-item:hover .dropdown-item-title { color: #00a99d; }

.dropdown-item-sub {
  font-size: .72rem;
  color: #606880;
  margin-top: 1px;
  line-height: 1.2;
}

/* Footer link */
.dropdown-footer {
  padding: 8px 16px 10px;
  border-top: 1px solid #edf0f5;
  background: #f5f7fa;
}
.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #00a99d;
  text-decoration: none;
  transition: gap .15s ease;
}
.dropdown-footer-link:hover { gap: 9px; color: #007f76; }

/* ── Mobile accordion
   ============================================================ */
.mobile-has-dropdown { border-bottom: 1px solid var(--gray-100); }

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.mobile-dropdown-toggle .chevron {
  color: var(--gray-400);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.mobile-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  padding-left: 16px;
}
.mobile-dropdown.open { max-height: 700px; }
.mobile-dropdown li { border-bottom: none; }
.mobile-dropdown a {
  display: block;
  padding: 9px 4px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-dropdown a:hover { color: var(--teal); padding-left: 8px; }

/* Parent li */
.has-dropdown {
  position: relative;
}

/* The nav link that triggers the dropdown */
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap;
  cursor: pointer;
}

/* Chevron icon */
.dropdown-toggle .chevron {
  color: var(--gray-400);
  transition: transform .15s ease, color .15s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.has-dropdown:hover .chevron,
.dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

/* ── The dropdown panel ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(23,26,69,.14), 0 2px 8px rgba(23,26,69,.08);
  border: 1px solid #edf0f5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 9999;
  overflow: hidden;
  min-width: 200px;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Notch arrow */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-left: 1px solid #edf0f5;
  border-top: 1px solid #edf0f5;
  z-index: 1;
}

/* ── About dropdown — single column, left-aligned ── */
.dropdown-menu--sm {
  min-width: 230px;
  left: 0;
  transform: translateX(0) translateY(-6px);
}
.dropdown-menu--sm.open {
  transform: translateX(0) translateY(0);
}
.dropdown-menu--sm::before {
  left: 28px;
  transform: translateX(0) rotate(45deg);
}

/* ── Counties dropdown — two columns, centered ── */
.dropdown-menu--counties {
  min-width: 460px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
.dropdown-menu--counties.open {
  transform: translateX(-50%) translateY(0);
}

/* ── Items wrapper ── */
.dropdown-grid {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dropdown-menu--counties .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

/* ── Single item ── */
.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}
.dropdown-item:hover {
  background: rgba(0,169,157,.07);
}
.dropdown-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: #171a45;
  line-height: 1.3;
  transition: color .15s ease;
  text-align: left;
  display: block;
}
.dropdown-item:hover .dropdown-item-title {
  color: #00a99d;
}
.dropdown-item-sub {
  font-size: .72rem;
  color: #606880;
  margin-top: 1px;
  line-height: 1.2;
}

/* ── Footer "View all" link ── */
.dropdown-footer {
  padding: 8px 16px 10px;
  border-top: 1px solid #edf0f5;
  background: #f5f7fa;
}
.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #00a99d;
  text-decoration: none;
  transition: gap .15s ease;
}
.dropdown-footer-link:hover {
  gap: 9px;
  color: #007f76;
}

/* ── Mobile accordion ──────────────────────────────── */
.mobile-has-dropdown {
  border-bottom: 1px solid var(--gray-100);
}
.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.mobile-dropdown-toggle .chevron {
  color: var(--gray-400);
  transition: transform .15s ease, color .15s ease;
}
.mobile-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  padding-left: 16px;
}
.mobile-dropdown.open {
  max-height: 700px;
}
.mobile-dropdown li { border-bottom: none; }
.mobile-dropdown a {
  display: block;
  padding: 9px 4px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-dropdown a:hover {
  color: var(--teal);
  padding-left: 8px;
}

/* Invisible bridge fills the gap so mouse can travel down */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-toggle .chevron {
  color: var(--gray-400);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

/* Panel — opens on CSS hover OR JS .open class */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(23,26,69,.15), 0 2px 8px rgba(23,26,69,.08);
  border: 1px solid #e8ecf4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 9999;
  overflow: hidden;
  min-width: 200px;
}

/* Open via CSS hover on parent li */
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Notch */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #e8ecf4;
  border-top: 1px solid #e8ecf4;
  z-index: 1;
}

/* About — left-aligned narrow */
.dropdown-menu--sm {
  min-width: 230px;
  left: 0;
  transform: translateX(0) translateY(-4px);
}
.has-dropdown:hover .dropdown-menu--sm,
.has-dropdown:focus-within .dropdown-menu--sm,
.dropdown-menu--sm.open {
  transform: translateX(0) translateY(0);
}
.dropdown-menu--sm::before {
  left: 24px;
  transform: translateX(0) rotate(45deg);
}

/* Counties — wide centered */
.dropdown-menu--counties {
  min-width: 460px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}
.has-dropdown:hover .dropdown-menu--counties,
.has-dropdown:focus-within .dropdown-menu--counties,
.dropdown-menu--counties.open {
  transform: translateX(-50%) translateY(0);
}

/* Items wrapper */
.dropdown-grid {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dropdown-menu--counties .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

/* Item */
.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
  cursor: pointer;
}
.dropdown-item:hover { background: rgba(0,169,157,.07); }

.dropdown-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: #171a45;
  line-height: 1.3;
  transition: color .15s ease;
  text-align: left;
  display: block;
}
.dropdown-item:hover .dropdown-item-title { color: #00a99d; }

.dropdown-item-sub {
  font-size: .72rem;
  color: #606880;
  margin-top: 1px;
  line-height: 1.2;
}

/* Footer link */
.dropdown-footer {
  padding: 8px 16px 10px;
  border-top: 1px solid #edf0f5;
  background: #f5f7fa;
}
.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #00a99d;
  text-decoration: none;
  transition: gap .15s ease;
}
.dropdown-footer-link:hover { gap: 9px; color: #007f76; }

/* ── Mobile accordion ────────────────── */
.mobile-has-dropdown { border-bottom: 1px solid var(--gray-100); }

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.mobile-dropdown-toggle .chevron {
  color: var(--gray-400);
  transition: transform .2s ease, color .2s ease;
}
.mobile-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  padding-left: 16px;
}
.mobile-dropdown.open { max-height: 700px; }
.mobile-dropdown li   { border-bottom: none; }
.mobile-dropdown a {
  display: block;
  padding: 9px 4px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-dropdown a:hover { color: var(--teal); padding-left: 8px; }

/* ── Dropdown Navigation
   ============================================================ */
.has-dropdown {
  position: relative;
}

/* Bridge prevents gap between nav link and panel */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
  background: transparent;
}

/* Toggle link */
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  white-space: nowrap;
  cursor: pointer;
}
.dropdown-toggle .chevron {
  color: var(--gray-300);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

/* ── Panel ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(23,26,69,.13), 0 2px 8px rgba(23,26,69,.07);
  border: 1px solid #e8ecf4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 9999;
  overflow: hidden;
}

/* Open on CSS hover */
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Notch arrow */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #e8ecf4;
  border-top: 1px solid #e8ecf4;
  transform: rotate(45deg);
  z-index: 1;
}

/* ── About: left-align under "About" word ── */
.dropdown-menu--sm {
  left: 0;
  width: 210px;
  min-width: unset;
  top: calc(100% + 12px);
}
.dropdown-menu--sm::before { left: 20px; }

/* ── Counties: center under "Service Areas" ── */
.dropdown-menu--counties {
  left: 50%;
  transform: translateX(-50%);
  min-width: 460px;
  top: calc(100% + 12px);
}
.has-dropdown:hover .dropdown-menu--counties,
.dropdown-menu--counties.open {
  transform: translateX(-50%);
}
.dropdown-menu--counties::before {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

/* ── Items wrapper ── */
.dropdown-grid {
  padding: 6px;
}
.dropdown-menu--counties .dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dropdown-menu--sm .dropdown-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}

/* ── Each item ── */
.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}
.dropdown-item:hover {
  background: rgba(0,169,157,.07);
}
.dropdown-item.active {
  background: rgba(0,169,157,.07);
}

.dropdown-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: #171a45;
  line-height: 1.3;
  transition: color .15s ease;
  text-align: left;
  display: block;
}
.dropdown-item:hover .dropdown-item-title,
.dropdown-item.active .dropdown-item-title {
  color: #00a99d;
}

.dropdown-item-sub {
  font-size: .72rem;
  color: #8892a8;
  line-height: 1.2;
  text-align: left;
  display: block;
}

/* Divider between item groups if needed */
.dropdown-divider {
  height: 1px;
  background: #edf0f5;
  margin: 4px 8px;
}

/* ── Footer "View all" link ── */
.dropdown-footer {
  padding: 8px 14px 10px;
  border-top: 1px solid #edf0f5;
  background: #f8f9fc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #00a99d;
  text-decoration: none;
  transition: gap .15s ease, color .15s ease;
}
.dropdown-footer-link:hover { gap: 8px; color: #007f76; }
.dropdown-footer-link svg { flex-shrink: 0; }

/* ── Mobile accordion ── */
.mobile-has-dropdown { border-bottom: 1px solid var(--gray-100); }

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}
.mobile-dropdown-toggle .chevron {
  color: var(--gray-300);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.mobile-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  padding-left: 12px;
  border-left: 2px solid var(--teal-light);
  margin-left: 4px;
  margin-bottom: 0;
}
.mobile-dropdown.open { max-height: 700px; margin-bottom: 12px; }
.mobile-dropdown li { border-bottom: none; }
.mobile-dropdown a {
  display: block;
  padding: 8px 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
  border-radius: 6px;
}
.mobile-dropdown a:hover { color: var(--teal); background: rgba(0,169,157,.05); }


