@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400;0,700;1,400;1,700&family=Exo+2:wght@500;600;700;800&display=swap");

:root {
  --font-sans: "-apple-system-body", "ui-sans-serif", "-apple-system", "system-ui", "Segoe UI", "Helvetica", "Apple Color Emoji", "Arial", "sans-serif", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-mono: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo", "Consolas", "Liberation Mono", "monospace";
  --font-heading: "Exo 2", var(--font-sans);
  --black: #000000;
  --white: #ffffff;
  --brand-primary: #10456f;
  --brand-primary-dark: #0b3454;
  --brand-secondary: #17a052;
  --brand-secondary-dark: #0f7f43;
  --ink: #141414;
  --muted: #6b6b6b;
  --line: #dedede;
  --nav-glass: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.96);
  --max-width: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #6fd88d var(--brand-primary);
  scrollbar-width: thin;
}

html,
body {
  scrollbar-color: #6fd88d var(--brand-primary);
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--brand-primary);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7be39b 0%, #3ac76a 100%);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8ceaab 0%, #4bd77a 100%);
}

section[id],
footer[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #f5f5f5;
  color: var(--ink);
  font-family: var(--font-heading);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 12px 24px;
  background: transparent;
  transition: background-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 20px 0;
  background: var(--black);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  width: min(calc(100% - 48px), 1260px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-stretch: 110%;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.brand-text-main {
  color: var(--white);
}

.brand-text-accent {
  color: var(--white);
}

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

.nav-pill {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 28px;
  border-radius: 999px;
  background: var(--nav-glass);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-icon-link:hover {
  color: var(--brand-secondary);
}

.nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 28px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.login-button:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  place-items: center;
}

.menu-line {
  display: block;
  width: 30px;
  height: 3px;
  margin: 3px 0;
  background: currentColor;
}

.menu-line-short {
  width: 16px;
  margin-left: auto;
}

.mobile-panel {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 12px auto 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(16, 69, 111, 0.94);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-secondary);
}

.mobile-login {
  margin-top: 8px;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--white);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
  padding: 72px 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 600px;
  background-image: url("assets/header.43603a34.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 69, 111, 0.62) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(16, 69, 111, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 42%);
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--black) 100%);
  pointer-events: none;
}

.hero-inner {
  width: min(100%, var(--max-width));
  min-height: 528px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 40px;
  align-items: end;
}

.hero-copy {
  padding: 0 0 58px;
  color: var(--white);
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--brand-secondary);
  font-family: Baskervville, Georgia, serif;
  font-size: clamp(30px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.booking-card {
  width: min(100%, 420px);
  margin: 0 0 38px auto;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brand-primary);
}

.booking-tab {
  min-height: 54px;
  border: 0;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background-color 180ms ease, color 180ms ease;
}

.booking-tab.is-active {
  background: var(--brand-secondary);
  color: var(--white);
}

.booking-form {
  padding: 22px;
}

.field-group {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
}

.field-group span {
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 800;
}

.field-group input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(23, 160, 82, 0.18);
}

.field-group input::placeholder {
  color: #9a9a9a;
}

.add-stop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: -2px 0 14px;
  border: 1px solid rgba(23, 160, 82, 0.45);
  border-radius: 999px;
  background: rgba(23, 160, 82, 0.12);
  color: var(--brand-secondary-dark);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wait-note {
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.find-ride {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.find-ride:hover {
  background: var(--brand-secondary);
  color: var(--white);
  transform: translateY(-1px);
}

.services-section {
  padding: 86px 24px 88px;
  background: #f5f5f5;
  font-family: var(--font-heading);
}

.services-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.services-header {
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-header h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.services-header p {
  margin: 28px auto 0;
  max-width: 1030px;
  color: #333333;
  font-size: 16px;
  line-height: 1.72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.service-card {
  min-width: 0;
}

.service-image-link {
  position: relative;
  display: block;
  min-height: 192px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-primary);
  outline: none;
}

.service-image-link img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16, 69, 111, 0.68);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 220ms ease;
}

.overlay-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-primary);
  font-size: 17px;
  line-height: 1;
}

.service-image-link:hover img,
.service-image-link:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.service-image-link:hover .service-overlay,
.service-image-link:focus-visible .service-overlay {
  opacity: 1;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #272727;
  font-size: 16px;
  line-height: 1.7;
}

.comfort-section {
  margin: 20px 0;
  padding: 58px 24px 54px;
  background: #eef1f4;
  font-family: var(--font-heading);
}

.comfort-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.comfort-header {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.comfort-header h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.comfort-header p {
  margin: 24px auto 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.72;
}

.fleet-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
  padding: 10px 2px 16px;
}

.fleet-card {
  min-width: 0;
  text-align: center;
}

.fleet-card img {
  width: min(100%, 190px);
  height: 112px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.fleet-card:hover img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 16px 18px rgba(16, 69, 111, 0.2));
}

.fleet-card h3 {
  margin: 18px 0 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.fleet-card p {
  margin: 8px 0 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.55;
}

.companies-section {
  padding: 76px 24px 150px;
  background: var(--white);
  font-family: var(--font-heading);
}

.companies-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.companies-header {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.companies-header h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}

.companies-header p {
  margin: 24px auto 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.company-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
  overflow: hidden;
}

.company-logo {
  display: grid;
  min-height: 150px;
  place-items: center;
}

.company-logo img {
  width: min(100%, 220px);
  height: 150px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.company-logo:hover img {
  transform: translateY(-8px);
}

.trusted-section {
  padding: 82px 24px 96px;
  background:
    radial-gradient(circle at 10% 12%, rgba(23, 160, 82, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faf8 0%, var(--white) 100%);
  font-family: var(--font-heading);
}

.trusted-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.trusted-header {
  text-align: center;
}

.trusted-header h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}

.google-review-badge {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 69, 111, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 69, 111, 0.08);
}

.google-review-badge img {
  width: 180px;
  height: 20px;
  object-fit: contain;
}

.reviews-carousel {
  position: relative;
  margin-top: 42px;
  padding: 0 58px;
}

.reviews-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(16, 69, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(16, 69, 111, 0.08);
  scroll-snap-align: start;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 160, 82, 0.34);
  box-shadow: 0 24px 54px rgba(16, 69, 111, 0.13);
}

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

.review-card-header img {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(23, 160, 82, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.review-card-header h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.review-stars {
  margin: 5px 0 0;
  color: #f8b703;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card > p {
  margin: 22px 0 0;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.72;
}

.review-scroll-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(16, 69, 111, 0.24);
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.review-scroll-button:hover {
  background: var(--brand-secondary);
  transform: translateY(-50%) scale(1.04);
}

.review-scroll-prev {
  left: 0;
}

.review-scroll-next {
  right: 0;
}

.faq-section {
  padding: 82px 24px 96px;
  background: #f6f8fa;
  font-family: var(--font-heading);
}

.faq-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
}

.faq-header p {
  margin: 0 0 10px;
  color: var(--brand-secondary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.faq-header h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.faq-item {
  border: 1px solid rgba(16, 69, 111, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 69, 111, 0.06);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 22px 26px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 160, 82, 0.12);
  color: var(--brand-secondary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary {
  color: var(--brand-primary);
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--brand-secondary);
  color: var(--white);
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: #333333;
  font-size: 16px;
  line-height: 1.72;
}

.contact-section {
  padding: 88px 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 160, 82, 0.1), transparent 30%),
    #eef1f4;
  color: var(--ink);
  font-family: var(--font-heading);
}

.contact-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.contact-header {
  margin-bottom: 40px;
  text-align: center;
}

.contact-header h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.contact-copy > p:not(.section-eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.72;
}

.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-highlight {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(16, 69, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.contact-highlight-call {
  border-color: rgba(16, 69, 111, 0.18);
  background:
    linear-gradient(135deg, rgba(16, 69, 111, 0.1), rgba(255, 255, 255, 0.95));
}

.contact-highlight-email {
  border-color: rgba(196, 48, 43, 0.2);
  background:
    linear-gradient(135deg, rgba(234, 67, 53, 0.12), rgba(251, 188, 5, 0.08) 45%, rgba(255, 255, 255, 0.96));
}

.contact-highlight-office {
  border-color: rgba(15, 157, 88, 0.18);
  background:
    linear-gradient(135deg, rgba(15, 157, 88, 0.12), rgba(66, 133, 244, 0.05) 58%, rgba(255, 255, 255, 0.95));
}

.contact-highlight span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-secondary);
  color: var(--white);
}

.contact-highlight-call span {
  background: var(--brand-primary);
}

.contact-highlight-email span {
  background: linear-gradient(135deg, #ea4335, #c5221f);
}

.contact-highlight-office span {
  background: linear-gradient(135deg, #0f9d58, #0b7f46);
}

.contact-highlight-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-highlight-copy a,
.contact-highlight-copy p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.contact-highlight-copy a:hover {
  color: var(--brand-secondary-dark);
}

.contact-highlight-call .contact-highlight-copy a,
.contact-highlight-call .contact-highlight-copy p {
  color: #0d3d64;
}

.contact-highlight-email .contact-highlight-copy a,
.contact-highlight-email .contact-highlight-copy p {
  color: #8b1e18;
}

.contact-highlight-office .contact-highlight-copy a,
.contact-highlight-office .contact-highlight-copy p {
  color: #0d5a41;
}

.contact-highlight-call .contact-highlight-copy a:hover {
  color: #082944;
}

.contact-highlight-email .contact-highlight-copy a:hover {
  color: #65120e;
}

.contact-highlight-office .contact-highlight-copy a:hover {
  color: #083728;
}

.ride-request-form {
  padding: 32px;
  border: 1px solid rgba(16, 69, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--black);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9e1e7;
  border-radius: 8px;
  background: #f8fafb;
  color: var(--black);
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 124px;
  padding: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 160, 82, 0.14);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-submit:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.booking-modal-dialog {
  position: relative;
  width: min(100%, 480px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.booking-modal-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(16, 69, 111, 0.1);
  background: linear-gradient(135deg, rgba(16, 69, 111, 0.08), rgba(23, 160, 82, 0.08));
}

.booking-modal-header h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.booking-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 28px 24px;
  text-align: center;
}

.booking-modal-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 160, 82, 0.12);
  color: var(--brand-secondary);
}

.booking-modal-body p {
  margin: 0;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
}

.booking-modal-footer {
  padding: 0 24px 24px;
}

.booking-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.booking-modal-action:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(16, 69, 111, 0.94), rgba(0, 0, 0, 0.98)),
    var(--black);
  color: var(--white);
  font-family: var(--font-heading);
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 44px;
  padding: 68px 24px 46px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
}

.footer-brand .brand-text {
  font-size: clamp(20px, 2.8vw, 30px);
}

.footer-brand p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.footer-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--brand-secondary);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-book:hover {
  background: var(--brand-secondary-dark);
  transform: translateY(-1px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--brand-secondary);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item > span:first-child {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-secondary);
  flex: 0 0 auto;
}

.footer-contact span {
  max-width: 260px;
}

.footer-address-line {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 12px 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-section {
    min-height: auto;
    padding: 86px 18px 42px;
  }

  .hero-bg {
    height: 340px;
    background-position: center top;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(16, 69, 111, 0.18) 0%, rgba(0, 0, 0, 0.68) 82%, var(--black) 100%),
      linear-gradient(90deg, rgba(16, 69, 111, 0.3) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .hero-fade {
    height: 220px;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .hero-copy {
    order: 2;
    padding: 0;
    text-align: center;
  }

  .booking-card {
    order: 1;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .services-section {
    padding-top: 58px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .comfort-section {
    padding-block: 50px;
  }

  .fleet-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .companies-section {
    padding: 62px 20px 96px;
  }

  .company-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trusted-section {
    padding: 64px 20px 80px;
  }

  .reviews-carousel {
    padding: 0 50px;
  }

  .reviews-grid {
    gap: 24px;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .faq-section {
    padding: 64px 20px 80px;
  }

  .contact-section {
    padding: 68px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
}

@media (max-width: 520px) {
  .site-header.is-scrolled {
    padding: 15px 0;
  }

  .site-header.is-scrolled .nav-shell {
    width: min(calc(100% - 36px), 1260px);
  }

  .brand-text {
    flex-direction: row;
    gap: 5px;
    font-size: 14px;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  .hero-section {
    padding-inline: 14px;
  }

  .booking-card {
    border-radius: 14px;
  }

  .booking-form {
    padding: 18px;
  }

  .booking-tab {
    min-height: 50px;
    font-size: 12px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-copy p {
    font-size: 26px;
  }

  .services-section {
    padding: 56px 18px 68px;
  }

  .services-header {
    margin-bottom: 34px;
  }

  .services-header p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .service-card h3 {
    font-size: 22px;
  }

  .comfort-section {
    margin: 20px 0;
    padding: 46px 18px 42px;
  }

  .comfort-header p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .fleet-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
  }

  .companies-section {
    padding: 54px 18px 82px;
  }

  .companies-header p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .company-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 24px;
  }

  .company-logo {
    min-height: 108px;
  }

  .company-logo img {
    height: 108px;
  }

  .trusted-section {
    padding: 56px 18px 68px;
  }

  .google-review-badge {
    margin-top: 20px;
  }

  .reviews-carousel {
    margin-top: 30px;
    padding: 0 40px;
  }

  .reviews-grid {
    gap: 18px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 22px;
  }

  .review-card > p {
    font-size: 14px;
    line-height: 1.68;
  }

  .review-scroll-button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .faq-section {
    padding: 56px 18px 68px;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 18px;
    font-size: 15px;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .faq-item p {
    padding: 0 18px 20px;
    font-size: 14px;
    line-height: 1.68;
  }

  .contact-section {
    padding: 58px 18px;
  }

  .contact-copy > p:not(.section-eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

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

  .ride-request-form {
    padding: 22px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 54px 18px 34px;
  }

  .footer-address-line {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }
}
