/* ===== Variables ===== */
:root {
  --teal: #17877f;
  --teal-light: #14b8a6;
  --teal-dark: #0f766e;
  --green: #22c55e;
  --white: #ffffff;
  --black: #0f0f0f;
  --gray-800: #1f2937;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --font: 'Outfit', system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

@media (max-width: 600px) {
  .container { padding: 0 16px; }
}

/* ===== Keke pattern (auto-rickshaw motif) ===== */
.keke-pattern {
  /* Vehicle pattern removed */
  pointer-events: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 600px) {
  .header { padding: 12px 16px; }
  .logo-img { height: 32px; }
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--white);
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header: logo has black bg in file — blend so black becomes transparent on teal */
.logo--header .logo-img {
  mix-blend-mode: screen;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--white);
}

/* Active nav link (current page) */
.page-contact .nav a[href="contact.html"],
.page-about .nav a[href="about.html"],
.page-terms .nav a[href="terms.html"],
.page-privacy .nav a[href="privacy.html"] {
  font-weight: 600;
  color: var(--white);
}
.page-home .nav a[href="index.html"] { font-weight: 600; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    padding: 16px;
    gap: 4px;
  }
  .nav.is-open a {
    min-height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 0;
  padding: 72px 0 40px;
  padding-top: max(72px, env(safe-area-inset-top, 0px));
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  background: var(--white);
  color: var(--white);
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  z-index: 4;
}

/* Hero layers for parallax */
.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  margin-left: -50vw;
  bottom: 0;
  z-index: 0;
  background: var(--teal);
  transform: translateY(0);
  will-change: transform;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  margin-left: -50vw;
  bottom: 0;
  z-index: 1;
  background: var(--teal);
  transform: translateY(0);
  will-change: transform;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 68%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 38%, 0 68%);
}

@media (max-width: 1024px) {
  .hero-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 72%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 45%, 0 72%);
  }
}

@media (max-width: 768px) {
  .hero-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 78%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 55%, 0 78%);
  }
}

/* Car + dotted path: full width; contain for smooth 60/120fps */
.hero-car-path {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42vh;
  min-height: 220px;
  max-height: 320px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
  background: url("assets/hero-dotted-car.png"), var(--teal);
  background-size: 100% auto, 100% 100%;
  background-position: center top, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: lighten;
  -webkit-background-size: 100% auto, 100% 100%;
  transform: translateZ(0);
  contain: layout paint;
  will-change: contents;
  overflow: visible;
}

/* Path SVG: invisible, used by JS for curve math */
.hero-car-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
}

/* Motion blur glow trail (desktop only — disabled on mobile for GPU) */
.hero-car-glow {
  position: absolute;
  width: 100px;
  height: 24px;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 30px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transition: none;
}

@media (max-width: 767px) {
  .hero-car-glow {
    display: none;
  }
}

/* Car: body + wheels; positioned & rotated by JS */
.hero-car {
  position: absolute;
  width: 36px;
  height: 20px;
  margin-left: -18px;
  margin-top: -10px;
  left: 15%;
  top: 28%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
  transition: none;
  contain: layout style;
}

.hero-car-body {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px 6px 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-car-wheel {
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
  transform-origin: center center;
}

.hero-car-wheel--front {
  left: 4px;
}

.hero-car-wheel--back {
  right: 4px;
  left: auto;
}

.hero-shape--circle {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.15;
  z-index: 2;
}

/* Second light green shape removed for cleaner hero */
.hero-parallelograms {
  display: none;
  pointer-events: none;
}

.hero-parallelograms-img {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero-content {
  justify-self: start;
  max-width: 560px;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: 1.15rem;
  opacity: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.hero-app-stores {
  margin-top: 8px;
}

.hero-app-stores-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-app-stores-img:hover {
  transform: translateY(-4px) scale(1.03);
}

.hero-app-stores-img:active {
  transform: scale(0.97);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.btn-app {
  background: var(--gray-800);
  color: var(--white);
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  will-change: transform;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 115%;
  height: 115%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  z-index: 1;
  pointer-events: none;
}

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

.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(420px, 92vw);
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  will-change: transform;
  animation: floatHero 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Scroll hint indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap,
  .hero-car {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 48px;
  }
  /* Tablet/mobile: guarantee path height so animation stays in view */
  .hero-car-path {
    height: 65vh;
    min-height: 260px;
    max-height: 400px;
    z-index: 2;
    opacity: 0.5;
    background-size: 100% auto, 100% 100%;
    -webkit-background-size: 100% auto, 100% 100%;
    background-position: center top, 0 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    gap: 20px;
  }
  .hero-content { justify-self: center; max-width: none; }
  .hero-app-stores { margin-left: auto; margin-right: auto; }
  .hero-shape--car { display: none; }
  .hero-shape--circle { width: 280px; height: 280px; right: -60px; bottom: -60px; }
  .hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 20px; }
  .hero-app-stores-img { max-width: 320px; margin: 0 auto; }
  .hero-image-wrap { width: min(280px, 78vw); border-width: 4px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 36px; }
  .hero-title { font-size: 1.65rem; }
  /* Small phones: 60–65vh so path is never clipped */
  .hero-car-path {
    height: 62vh;
    min-height: 240px;
    max-height: none;
    opacity: 0.5;
    z-index: 2;
    background-size: 100% auto, 100% 100%;
    -webkit-background-size: 100% auto, 100% 100%;
    background-position: center top, 0 0;
  }
  .hero-car {
    width: 30px;
    height: 16px;
    margin-left: -15px;
    margin-top: -8px;
  }
  .hero-car-body { border-radius: 5px 5px 3px 3px; }
  .hero-car-wheel {
    width: 8px;
    height: 8px;
  }
  .hero-car-wheel--front { left: 3px; }
  .hero-car-wheel--back { right: 3px; left: auto; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 48px;
    text-align: center;
  }
  .hero-car-path {
    height: 65vh;
    min-height: 280px;
    max-height: none;
    opacity: 0.5;
    z-index: 2;
  }
  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 18px;
    padding: 0 18px;
  }
  .hero-app-stores-img {
    max-width: 300px;
  }
  .hero-image-wrap {
    width: 300px;
    animation-duration: 8s;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ===== Section title ===== */
.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .section-title { margin-bottom: 22px; font-size: 1.5rem; }
}

/* ===== Features ===== */
.features {
  position: relative;
  padding: 36px 0 40px;
  background: var(--white);
}

.features-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.feature:last-child { margin-bottom: 0; }

.feature--2 .feature-content { order: 2; }
.feature--2 .feature-visual { order: 1; }

.feature-visual--1,
.feature-visual--2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}

.phone-wrapper::before {
  content: '';
  position: absolute;
  width: 56%;
  height: 96%;
  background-color: #c8e8e0;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(-60deg);
  top: 50%;
  left: 50%;
  z-index: 0;
}

.phone-wrapper--1::before {
  transform: translate(-50%, -50%) rotate(60deg);
}

/* Feature 2: Union graphic overlay on phone screen */
.feature-2-phone-wrap {
  position: relative;
}
.phone-union-overlay {
  position: absolute;
  left: 50%;
  width: 116%;
  max-width: 280px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
}

/* Feature 2: Union below phone */
.feature-2-phone-wrap .phone-union-overlay {
  top: 102%;
  transform: translate(-65%, 0);
}

/* Feature 1: Union at top, touching parallelogram — flipped and shifted top-right */
.feature-1-phone-wrap {
  position: relative;
}
.phone-union-overlay--top {
  top: -44%;
  left: 105%;
  transform: translate(-50%, 0) scaleX(-1);
}

.phone-wrapper-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 232px;
  height: auto;
  display: block;
  mix-blend-mode: normal;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.25));
}

/* Feature 3: same phone-wrapper layout, inverted parallelogram (tilt opposite direction) */
.feature-visual--3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.phone-wrapper--3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}

.phone-wrapper--3::before {
  content: '';
  position: absolute;
  width: 56%;
  height: 96%;
  background-color: #c8e8e0;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(60deg);
  top: 50%;
  left: 50%;
  z-index: 0;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 10px;
}

.feature-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 480px;
}

/* Phone mockup ===== */
.phone-mockup {
  max-width: 280px;
  margin: 0 auto;
  background: var(--gray-800);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.phone-mockup--left { margin-left: 0; margin-right: auto; }
.phone-mockup--right { margin-left: auto; margin-right: 0; }

.phone-screen {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  min-height: 420px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* First feature: single image only (no extra phone frame) so no double-phone */
.feature-visual--img-only {
  display: flex;
  justify-content: flex-end;
}

.feature-1-phone-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

.phone-screen--img {
  padding: 0;
  display: block;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
}

.phone-screen--map .mock-map { flex: 1; }
.phone-screen--booking .mock-form { margin-top: auto; }
.phone-screen--driver { justify-content: space-between; }

.mock-map {
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  border-radius: 12px;
  flex: 1;
  min-height: 180px;
  position: relative;
}

.mock-map::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 4px;
  background: var(--teal-light);
  border-radius: 2px;
  opacity: 0.6;
}

.mock-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #2d2d2d;
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
}

.mock-form .mock-input {
  background: #2d2d2d;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.mock-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-option {
  padding: 12px;
  background: #2d2d2d;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--teal-light);
}

.mock-earning {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.mock-toggle {
  padding: 10px;
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--white);
  text-align: center;
}

.mock-stats {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.mock-profile {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-600);
}

.phone-screen--search .mock-search-bar {
  margin-top: auto;
  padding: 12px;
  background: #2d2d2d;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.mock-keyboard {
  height: 24px;
  margin-top: 8px;
  background: #374151;
  border-radius: 4px;
}

.phone-mockup--angled {
  transform: rotate(-8deg);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features { padding: 32px 0; }
  .feature {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .feature:last-child { margin-bottom: 0; }
  .feature--2 .feature-content,
  .feature--2 .feature-visual { order: unset; }
  .feature-title { font-size: 1.5rem; }
  .feature-desc { font-size: 1rem; }
  .feature-visual--1,
  .feature-visual--2,
  .feature-visual--3 { padding: 24px 16px; }
  .phone-wrapper,
  .phone-wrapper--1,
  .phone-wrapper--3 { max-width: 260px; margin: 0 auto; }
  .phone-wrapper-img { max-width: 200px; }
  .phone-mockup--left,
  .phone-mockup--right { margin: 0 auto; }
  .phone-mockup--angled { transform: rotate(-4deg); }
}

@media (max-width: 480px) {
  .features { padding: 28px 0; }
  .feature { margin-bottom: 32px; gap: 20px; }
  .phone-wrapper,
  .phone-wrapper--1,
  .phone-wrapper--3 { max-width: 220px; }
  .phone-wrapper-img { max-width: 172px; }
}

/* ===== Ride CTA section ===== */
.ride-cta {
  position: relative;
  padding: 32px 0;
  background-color: #c8e8e0;
  overflow: hidden;
}

.ride-cta-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Parallelogram in top-right of Get a ride in minutes section */
.ride-cta-para {
  position: absolute;
  top: -8%;
  right: -4%;
  width: 42%;
  max-width: 420px;
  height: 140%;
  max-height: 600px;
  background-color: #c8e8e0;
  border-radius: 12px;
  transform: rotate(60deg);
  z-index: 0;
  pointer-events: none;
}

.ride-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  grid-template-areas: "writeup phone";
}

.ride-cta-content {
  grid-area: writeup;
}

.ride-cta-visual {
  grid-area: phone;
}

.ride-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 12px;
}

.ride-cta-desc {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 420px;
}

/* Phone: right column, side by side with write-up */
.ride-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 200px;
}

.ride-cta-phone-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  transform: rotate(14deg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.2));
}

@media (max-width: 900px) {
  .ride-cta { padding: 28px 0; }
  .ride-cta-inner { grid-template-columns: 1fr; grid-template-areas: "writeup" "phone"; text-align: center; gap: 20px; }
  .ride-cta-visual { justify-content: center; min-height: 160px; }
  .ride-cta-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .ride-cta-phone-img { max-width: 220px; }
}

@media (max-width: 480px) {
  .ride-cta { padding: 24px 0; }
  .ride-cta-inner { gap: 20px; }
  .ride-cta-title { font-size: 1.4rem; }
  .ride-cta-phone-img { max-width: 200px; }
}

/* ===== Benefits ===== */
.benefits {
  position: relative;
  padding: 40px 0;
  background: var(--white);
}

.benefits-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 8px;
}

.benefit-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .benefits { padding: 32px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefit-card { padding: 28px 20px; }
  .benefit-icon-wrap { width: 56px; height: 56px; margin-bottom: 16px; }
  .benefit-icon-svg { width: 28px; height: 28px; }
  .benefit-title { font-size: 1.1rem; }
  .benefit-desc { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .benefits { padding: 28px 0; }
  .benefits-grid { gap: 16px; }
  .benefit-card { padding: 24px 16px; }
}

/* ===== Testimonials ===== */
.testimonials {
  position: relative;
  padding: 40px 0;
  background: var(--white);
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-card.testimonial-card--active {
  display: grid;
}

.testimonial-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  background: var(--white);
  aspect-ratio: 4/5;
}

.testimonial-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 85%,
    var(--white) 100%
  );
  pointer-events: none;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: normal;
}

.testimonial-author {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
  font-style: normal;
  margin-bottom: 14px;
}

.testimonial-nav {
  display: flex;
  gap: 12px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.testimonial-btn:hover {
  background: var(--teal-dark);
}

@media (max-width: 768px) {
  .testimonials { padding: 32px 0; }
  .testimonial-card.testimonial-card--active {
    display: grid;
  }
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .testimonial-image-wrap { max-width: 240px; margin: 0 auto; }
  .testimonial-quote { font-size: 1rem; margin-bottom: 16px; }
  .testimonial-author { margin-bottom: 16px; }
}

@media (max-width: 480px) {
  .testimonials { padding: 28px 0; }
  .testimonial-card { padding: 20px 16px; gap: 20px; }
  .testimonial-image-wrap { max-width: 200px; }
}

/* ===== CTA + Footer wrapper (shared taxi background) ===== */
.footer-cta-wrapper {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--black) url("assets/footer-taxi.png") center bottom / cover no-repeat;
  opacity: 0.92;
}

.footer-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

/* Subpages: CTA banner + footer so taxi image has room to show */
.footer-cta-wrapper--subpage {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-cta-wrapper--subpage .footer {
  width: 100%;
}

/* Contact page: no min-height so no white gap between hero and footer (desktop + mobile) */
.page-contact .subpage-main {
  min-height: 0;
}
.page-contact .footer-cta-wrapper--subpage {
  min-height: 0;
  justify-content: flex-start;
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  z-index: 1;
  padding: 32px 24px 28px;
  text-align: center;
  color: var(--white);
}

.cta-banner-content {
  position: relative;
}

.cta-banner-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.cta-banner-subtitle {
  margin: 0 0 16px;
  font-size: 1rem;
  opacity: 0.95;
}

.cta-banner-app-stores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-app-store-link {
  display: inline-block;
}

.cta-app-stores-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .cta-banner { padding: 28px 24px 22px; }
  .cta-banner-title { font-size: 1.4rem; }
  .cta-banner-subtitle { font-size: 0.95rem; margin-bottom: 16px; }
  .cta-app-stores-img { max-width: 240px; }
}

@media (max-width: 480px) {
  .cta-banner { padding: 24px 16px 18px; }
  .cta-banner-title { font-size: 1.3rem; }
  .cta-app-stores-img { max-width: 220px; }
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 24px 24px 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

@media (max-width: 600px) {
  .footer { padding: 20px 16px 32px; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-social a {
    width: 44px;
    height: 44px;
  }
  .footer-social svg { width: 22px; height: 22px; }
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ===== Subpages (Terms, Privacy, About, Contact) ===== */
.subpage-main {
  padding-top: 70px;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

/* Legal & subpage hero strip */
.subpage-hero {
  background: var(--teal);
  color: var(--white);
  padding: 24px 24px 32px;
  position: relative;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' opacity='0.08'%3E%3Cpath d='M0 30 Q50 20 100 30 T200 30' stroke='%23fff' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat-x bottom center;
  pointer-events: none;
}
.subpage-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 600px) {
  .subpage-title { font-size: 1.75rem; }
}

/* Terms / Privacy: narrow container + content card */
.container--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  padding-bottom: 48px;
}
.page-legal .subpage-main {
  background: var(--teal);
  padding-bottom: 32px;
  position: relative;
}

/* Legal pages: white diagonal slit + diagonal shapes on green background */
.page-legal-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-legal-slit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200vmax;
  height: 20px;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(-27deg);
}
.page-legal-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.35;
}
.page-legal .container--narrow {
  position: relative;
  z-index: 1;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  color: var(--gray-800);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.content-card--scroll {
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.content-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--black);
}
.content-card .content-updated {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.content-card h3 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
  color: var(--black);
}
.content-card h3:first-of-type { margin-top: 0; }
.content-card p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.content-card a {
  color: var(--teal);
  text-decoration: underline;
}
.content-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.content-card-actions .btn { min-width: 100px; }

/* Buttons (shared) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline--light {
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}
.btn-outline--light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--lg { padding: 14px 28px; }

/* Standalone footer (no CTA wrapper) */
.footer--standalone {
  background: var(--teal);
  margin-top: 0;
}
.footer--dark {
  background: var(--gray-800);
}
.footer--dark .footer-social a:hover {
  background: var(--teal);
}
.footer-copyright {
  margin: 0;
  padding: 12px 24px 24px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

/* ===== About page ===== */
.about-intro {
  position: relative;
  padding: 48px 0 56px;
  color: var(--white);
}
.about-intro-bg {
  position: absolute;
  inset: 0;
  background: var(--teal);
  z-index: 0;
}
.about-intro-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-intro-heading {
  margin: 0 0 16px;
  font-size: 1.75rem;
  font-weight: 700;
}
.about-intro-text {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}
.about-app-stores-img {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-mission {
  padding: 48px 0 56px;
  background: var(--white);
}
.about-mission-content .about-section-title:not(:first-of-type) {
  margin-top: 24px;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-mission-grid { grid-template-columns: 1fr; }
}
.about-section-title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}
.about-mission-content p {
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.about-mission-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-mission-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-section-title--spaced {
  margin-top: 28px;
}
.about-why-list {
  margin: 0 0 8px;
  padding-left: 24px;
  max-width: 540px;
}
.about-why-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-offer {
  position: relative;
  padding: 48px 0 56px;
  color: var(--white);
}
.about-offer-bg {
  position: absolute;
  inset: 0;
  background: var(--black) url("assets/footer-taxi.png") center bottom / cover no-repeat;
  opacity: 0.92;
  z-index: 0;
}
.about-offer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.about-offer .container { position: relative; z-index: 1; }
.about-section-title--light {
  color: var(--white);
  margin-bottom: 8px;
}
.about-offer-list {
  margin: 0 0 32px;
  padding-left: 24px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
}
.about-offer-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}
.about-offer-cards {
  display: block;
  max-width: 560px;
  margin: 0 auto;
}
.about-features-cards-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about-footer-cta {
  position: relative;
  padding: 32px 0;
  overflow: hidden;
  color: var(--white);
}
.about-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black) url("assets/footer-taxi.png") center bottom / cover no-repeat;
  opacity: 0.92;
  z-index: 0;
}
.about-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-footer-cta .container { position: relative; z-index: 2; }
.about-safety-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.about-safety-logo {
  font-weight: 700;
  font-size: 1.1rem;
}
.about-safety-buttons {
  display: flex;
  gap: 12px;
}

/* ===== Contact page ===== */
.contact-info-block {
  position: relative;
  padding: 40px 0 48px;
  color: var(--white);
  overflow: hidden;
}
.contact-info-bg {
  position: absolute;
  inset: 0;
  background: var(--teal);
  z-index: 0;
}
.contact-info-inner {
  position: relative;
  z-index: 1;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact-info-item {
  display: block;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:hover {
  background: rgba(255,255,255,0.15);
}
.contact-info-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.contact-info-value {
  font-weight: 600;
  font-size: 1rem;
}

.contact-hero {
  position: relative;
  min-height: 320px;
  margin-bottom: 0;
}
/* Desktop: taller hero so the full image shows (no white space cutoff) */
@media (min-width: 769px) {
  .contact-hero,
  .contact-hero-overlay {
    min-height: 56vh;
  }
  .contact-hero-overlay {
    padding: 56px 24px 48px;
  }
}
.contact-hero-image-wrap {
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
}
.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contact-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 24px 40px;
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.4) 50%, transparent 100%);
  color: var(--white);
  text-align: center;
}
.contact-hero-text {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 420px;
}
@media (min-width: 600px) {
  .contact-hero-text { font-size: 1.5rem; }
}

/* ===== Subpages: mobile optimizations ===== */
@media (max-width: 768px) {
  .subpage-main {
    padding-top: 64px;
  }
  .subpage-hero {
    padding: 20px 16px 24px;
  }
  .subpage-title {
    font-size: 1.35rem;
  }
  .container--narrow {
    padding: 20px 16px 28px;
  }
  .content-card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }
  .content-card--scroll {
    max-height: 65vh;
    -webkit-overflow-scrolling: touch;
  }
  .content-card h2 { font-size: 1.15rem; }
  .content-card h3 { font-size: 1rem; margin-top: 20px; }
  .content-card p { font-size: 0.9rem; }
  .content-card-actions {
    flex-direction: column;
    margin-top: 24px;
    padding-top: 20px;
    gap: 10px;
  }
  .content-card-actions .btn {
    min-width: 100%;
    min-height: 48px;
  }
  /* Legal pages (Terms + Privacy): readability and tap targets */
  .page-legal .container--narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-legal-slit {
    height: 52px;
  }
  .page-legal .content-card {
    margin: 0 4px;
  }
  .page-legal .content-card p {
    line-height: 1.65;
  }
  .page-legal .content-card a {
    padding: 6px 8px;
    margin: -6px -8px;
    border-radius: 4px;
  }
  .page-legal .subpage-main {
    padding-bottom: 24px;
    min-height: 0;
  }
  .page-legal .container--narrow {
    padding-bottom: 24px;
  }
  .about-intro {
    padding: 32px 0 40px;
  }
  .about-intro-heading {
    font-size: 1.5rem;
  }
  .about-intro-text {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .about-app-stores-img {
    max-width: 220px;
  }
  .about-mission {
    padding: 32px 0 40px;
  }
  .about-mission-grid {
    gap: 28px;
  }
  .about-mission-content {
    order: 1;
  }
  .about-mission-images {
    order: 2;
    gap: 10px;
  }
  .about-section-title {
    font-size: 1.15rem;
  }
  .about-mission-content p {
    font-size: 0.9rem;
  }
  .about-why-list {
    max-width: none;
    padding-left: 20px;
  }
  .about-why-list li {
    font-size: 0.9rem;
  }
  .about-offer {
    padding: 32px 0 40px;
  }
  .about-offer-list {
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding-left: 20px;
  }
  .about-footer-cta {
    padding: 24px 0;
  }
  .about-safety-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .about-safety-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .about-safety-buttons .btn {
    width: 100%;
    min-height: 48px;
  }
  .contact-info-block {
    padding: 28px 0 36px;
  }
  .contact-info-grid {
    gap: 12px;
  }
  .contact-info-item {
    padding: 18px 16px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-hero,
  .contact-hero-overlay {
    min-height: 280px;
  }
  .contact-hero-overlay {
    padding: 32px 16px 28px;
  }
  .contact-hero-text {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  .contact-hero-overlay .btn--lg {
    min-height: 48px;
    padding: 14px 24px;
  }
  /* All subpages on mobile: footer wrapper only as tall as content */
  .footer-cta-wrapper--subpage {
    min-height: 0;
  }
  .footer-copyright {
    padding: 12px 16px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .subpage-main {
    padding-top: 60px;
  }
  .subpage-hero {
    padding: 16px 12px 20px;
  }
  .subpage-title {
    font-size: 1.25rem;
  }
  .container--narrow {
    padding: 16px 12px 20px;
  }
  .content-card {
    padding: 20px 16px;
  }
  .content-card--scroll {
    max-height: 60vh;
  }
  .page-legal .container--narrow {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 16px;
  }
  .page-legal .content-card {
    margin: 0 2px;
    padding: 18px 14px;
  }
  .page-legal .content-card h3 {
    margin-top: 18px;
  }
  .page-legal-slit {
    height: 64px;
  }
  .about-intro {
    padding: 24px 0 32px;
  }
  .about-intro-heading {
    font-size: 1.35rem;
  }
  .about-app-stores-img {
    max-width: 200px;
  }
  .about-mission {
    padding: 24px 0 32px;
  }
  .about-offer {
    padding: 24px 0 32px;
  }
  .about-offer-list {
    margin-bottom: 20px;
  }
  .contact-info-block {
    padding: 24px 0 28px;
  }
  .contact-hero,
  .contact-hero-overlay {
    min-height: 240px;
  }
  .contact-hero-overlay {
    padding: 24px 12px 20px;
  }
  .contact-hero-text {
    font-size: 1.05rem;
  }
}
