/* ==========================================================================
   TransAshanti Medical Transport LLC - Design System
   Theme: Modern healthcare + luxury corporate
   ========================================================================== */

:root {
  /* Brand colors */
  --navy: #0D2C54;
  --navy-deep: #081D38;
  --teal: #19B5B0;
  --teal-dark: #138C88;
  --white: #FFFFFF;
  --silver: #D9E2EC;
  --silver-soft: #F3F6FA;
  --ink: #1B2733;
  --ink-soft: #52667A;

  /* Gradients */
  --grad-navy-teal: linear-gradient(135deg, var(--navy) 0%, #123B6E 55%, var(--teal-dark) 100%);
  --grad-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  --grad-soft: linear-gradient(180deg, #FFFFFF 0%, #F3F6FA 100%);

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(13, 44, 84, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 44, 84, 0.10);
  --shadow-lg: 0 20px 48px rgba(13, 44, 84, 0.16);
  --shadow-teal: 0 10px 30px rgba(25, 181, 176, 0.28);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 600;
}
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 100px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--grad-teal);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { font-size: 17px; }
.section-head.align-left { margin: 0 0 24px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--navy-deep); }
.btn-accent {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(25,181,176,.4); }
.btn-outline {
  background: transparent;
  border-color: var(--silver);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(13,44,84,.06);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.brand-text .brand-name span { color: var(--teal); }
.brand-text .brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: var(--radius-pill);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--teal-dark); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.header-phone:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.header-phone svg { width: 16px; height: 16px; }
.header-phone .ph-sub { display: block; font-size: 10px; font-weight: 500; opacity: .75; text-transform: uppercase; letter-spacing: .05em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: calc(var(--header-h) + 64px) 0 90px;
  background: var(--grad-soft);
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--silver);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(25,181,176,.18); }

.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--teal); }
.hero-copy p.lead {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-trustline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.hero-trustline svg { width: 18px; height: 18px; color: var(--teal-dark); flex-shrink: 0; }
.hero-trustline strong { color: var(--navy); }

.hero-visual { position: relative; }
.hero-photo-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.hero-photo-frame .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero-photo-frame .hero-slide.is-active { opacity: 1; z-index: 1; }

.slider-dots {
  position: absolute;
  right: 20px; top: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.5);
  box-shadow: 0 0 0 1.5px rgba(8,29,56,.25);
  transition: background .25s ease, transform .25s ease;
}
.slider-dot.is-active { background: var(--teal); transform: scale(1.25); }
.slider-dot:hover { background: rgba(255,255,255,.85); }
.hero-photo-frame .float-chip {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  margin: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}
.chip-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(25,181,176,.14); flex-shrink: 0; }
.chip-icon svg { width: 20px; height: 20px; color: var(--teal-dark); }
.chip-text .chip-sub { display: block; font-size: 11px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }

/* ==========================================================================
   Trust banner
   ========================================================================== */
.trust-banner {
  background: var(--navy);
  padding: 26px 0;
}
.trust-banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
}
.trust-banner li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  flex: 1 1 150px;
}
.trust-banner .t-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(25,181,176,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-banner .t-icon svg { width: 20px; height: 20px; color: var(--teal); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: var(--silver-soft);
  border: 1.5px solid var(--silver);
  transition: background .3s ease, border-color .3s ease;
}
.service-card:hover .service-icon { background: var(--navy); border-color: var(--navy); }
.service-icon svg { width: 25px; height: 25px; color: var(--teal-dark); transition: color .3s ease; }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin: 0; }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--silver-soft); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-art { position: relative; }
.about-art .art-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-art .stat-float {
  position: absolute;
  bottom: -26px; left: -26px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
}
.about-art .stat-float svg {
  width: 30px; height: 30px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.about-art .stat-float .label { font-size: 13px; color: var(--navy); font-weight: 600; line-height: 1.3; }

.about-copy p.lead { font-size: 17px; color: var(--ink-soft); }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item .f-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--silver);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.feature-item .f-icon svg { width: 22px; height: 22px; color: var(--teal-dark); }
.feature-item h4 { font-size: 15.5px; margin: 0 0 4px; }
.feature-item p { font-size: 13.5px; margin: 0; }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--silver) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--silver);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.step:hover .step-num { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.step-num svg { width: 26px; height: 26px; color: var(--navy); }
.step-num .badge {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-teal);
  color: var(--white);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step h4 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 13.5px; padding: 0 8px; }

/* ==========================================================================
   Fleet
   ========================================================================== */
.fleet { background: var(--silver-soft); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fleet-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 3/4;
  transition: transform .35s ease, box-shadow .35s ease;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(0deg, rgba(8,29,56,.88), rgba(8,29,56,0));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
}
.fleet-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ==========================================================================
   Why choose us (stats)
   ========================================================================== */
.why {
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.why-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,29,56,.94) 0%, rgba(13,44,84,.9) 45%, rgba(19,140,136,.85) 100%);
  z-index: 0;
}
.why .container { position: relative; z-index: 1; }
.why .section-head h2, .why .section-head p { color: var(--white); }
.why .section-head p { color: rgba(255,255,255,.75); }
.why .eyebrow { color: #6FE3DE; }
.why .eyebrow::before { background: #6FE3DE; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.18);
}
.stat-card {
  padding: 34px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat-card:last-child { border-right: none; }
.stat-card .s-icon {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.stat-card .s-icon svg { width: 26px; height: 26px; color: #6FE3DE; }
.stat-card .s-num { font-family: var(--font-heading); font-weight: 700; font-size: 30px; margin-bottom: 4px; }
.stat-card .s-label { font-size: 13.5px; color: rgba(255,255,255,.72); font-weight: 500; }

/* ==========================================================================
   Service area + testimonials
   ========================================================================== */
.area-testi { background: var(--white); }
.area-testi .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.panel {
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}
.panel-title { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.panel-title .p-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-teal); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.panel-title .p-icon svg { width: 20px; height: 20px; color: var(--white); }
.panel-title h3 { margin: 0; font-size: 20px; }

.area-map { margin: 22px 0; border-radius: var(--radius-md); overflow: hidden; background: var(--silver-soft); }
.town-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 10px; }
.town-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--navy); }
.town-list li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.town-list li.more { color: var(--ink-soft); font-weight: 400; font-style: italic; }

.testi-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.testi-card {
  background: var(--silver-soft);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; color: #F5A623; }
.testi-card p.quote { color: var(--ink); font-size: 14.5px; margin-bottom: 14px; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 10px; }
.testi-who .initial {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-navy-teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
}
.testi-who span { font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; color: var(--navy); }

/* ==========================================================================
   FAQ + Booking
   ========================================================================== */
.faq-book { background: var(--silver-soft); }
.faq-book .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.faq-q .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--silver-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, transform .35s ease;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: transform .3s ease, background .25s ease;
}
.faq-q .plus::before { width: 10px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 10px; }
.faq-item.active .faq-q .plus { background: var(--grad-teal); }
.faq-item.active .faq-q .plus::before, .faq-item.active .faq-q .plus::after { background: var(--white); }
.faq-item.active .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 22px 20px; font-size: 14.5px; margin: 0; }

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.book-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 30px;
}
.book-contact {
  display: flex; align-items: center; gap: 12px;
}
.book-contact .c-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--silver-soft); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.book-contact .c-icon svg { width: 19px; height: 19px; color: var(--teal-dark); }
.book-contact .c-label { font-size: 11.5px; color: var(--ink-soft); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.book-contact .c-value { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--navy); }

.hp-field { display: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--navy); font-family: var(--font-heading); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--silver);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(25,181,176,.14);
}
.form-field textarea { resize: vertical; min-height: 90px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text .brand-name { color: var(--white); }
.footer-brand .brand-text .brand-sub { color: rgba(255,255,255,.55); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; max-width: 280px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.social-row a:hover { background: var(--teal); transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; color: var(--white); }

.footer-col h5 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer-col a:hover { color: var(--teal); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.footer-col .contact-line svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.hipaa-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
}
.hipaa-badge svg { width: 18px; height: 18px; color: #6FE3DE; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--teal); }

/* ==========================================================================
   Back to top + sticky call button (mobile)
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .main-nav, .header-phone .ph-sub { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span:not(.ph-sub) { white-space: nowrap; }
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px; }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--silver-soft); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about .container { grid-template-columns: 1fr; }
  .area-testi .container { grid-template-columns: 1fr; }
  .faq-book .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-text .brand-sub { display: none; }
  .header-phone { width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; }
  .header-phone span:not(.ph-sub) { display: none; }
  .header-phone svg { width: 18px; height: 18px; }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-banner ul { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .book-contact-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
}
