/* =========================================================================
   TCB ESCORTS LLC — Global Stylesheet
   Brand: Red #ED1F2B / Black #111 / White, safety-chevron industrial accents
   ========================================================================= */

:root {
  /* Brand colors (sampled from company logo) */
  --red: #ed1f2b;
  --red-dark: #b8121c;
  --red-darker: #8c0e15;
  --black: #111113;
  --charcoal: #1c1c20;
  --charcoal-light: #2a2a30;
  --yellow: #ffc72c; /* safety/chevron accent */
  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #eef0f2;
  --gray-300: #d7dbe0;
  --gray-500: #8a919b;
  --gray-700: #55606b;
  --gray-900: #2b3038;

  /* Type */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(17, 17, 19, 0.08);
  --shadow-md: 0 8px 24px rgba(17, 17, 19, 0.12);
  --shadow-lg: 0 20px 48px rgba(17, 17, 19, 0.18);
  --transition: 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--black);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--gray-700);
}

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

section {
  padding: 88px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-dark);
  background: rgba(237, 31, 43, 0.08);
  border: 1px solid rgba(237, 31, 43, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
}

.bg-off {
  background: var(--off-white);
}

.bg-dark {
  background: var(--charcoal);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal-light);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--black);
}

.btn-block {
  width: 100%;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 54px;
  width: auto;
}

.brand-text {
  font-family: var(--font-head);
  line-height: 1.05;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--black);
}

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

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-900);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 19, 0.5);
  z-index: 998;
}

.nav-scrim.open {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--black);
  /* Drop a photo named hero-bg.jpg in the project root and it appears here
     automatically, dimmed by the overlay below for text legibility. If the
     file is missing, only the overlay/gradient shows — no broken-image icon. */
  background-image: linear-gradient(180deg, rgba(17, 17, 19, 0.86), rgba(17, 17, 19, 0.93)), url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 130px 0 110px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 20%, rgba(237, 31, 43, 0.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(237, 31, 43, 0.16), transparent 50%);
}

.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  overflow: hidden;
  opacity: 0.5;
}

.hero-road .lane {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--white) 0 40px, transparent 40px 76px);
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--yellow);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

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

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-tagline {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  margin: 14px 0 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  max-width: 640px;
}

.hero-stats .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 16px;
}

.hero-stats .stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stats .stat b {
  font-family: var(--font-head);
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--white);
  display: block;
  white-space: nowrap;
}

.hero-stats .stat span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    max-width: none;
  }
  .hero-stats .stat:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
  .hero-stats .stat b {
    font-size: 1.5rem;
  }
}

/* ---------- Mobile hero & header polish ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 96px 0 64px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .brand img {
    height: 42px;
  }

  .header-cta {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 0.9rem;
  }
}

.page-hero {
  position: relative;
  background-color: var(--black);
  /* Optional shared background photo for every interior page header — drop a
     file named page-hero-bg.jpg in the project root to activate it. Missing
     file just leaves the dark gradient in place. */
  background-image: linear-gradient(180deg, rgba(17, 17, 19, 0.88), rgba(17, 17, 19, 0.93)), url("page-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 76px 0 60px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(237, 31, 43, 0.25), transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.page-hero h1 {
  color: var(--white);
  max-width: 720px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ---------- Stat bar ---------- */
.stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

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

.stat-card {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid var(--gray-100);
}

.stat-card:first-child {
  border-left: none;
}

.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--red);
}

.stat-card span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-left: none;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
  }
  .stat-card:first-child,
  .stat-card:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

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

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

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

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

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(237, 31, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: var(--red);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.service-card .card-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-row h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-row p {
  font-size: 0.94rem;
}

/* ---------- Two column layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.split-media {
  position: relative;
}

.media-panel {
  background: var(--charcoal);
  border-radius: var(--radius);
  aspect-ratio: 4/3.1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-panel svg {
  width: 62%;
  height: auto;
  opacity: 0.92;
}

.media-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  text-align: center;
}

.media-badge b {
  display: block;
  font-size: 1.6rem;
}

.media-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Certifications ---------- */
.cert-strip {
  background: var(--charcoal);
}

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

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.cert-card .icon-box {
  margin: 0 auto 16px;
  background: rgba(237, 31, 43, 0.16);
}

.cert-card h3 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Testimonial-free trust block ---------- */
.trust-banner {
  background: var(--red);
  color: var(--white);
}

.trust-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-banner h2 {
  color: var(--white);
  font-size: 1.5rem;
  max-width: 560px;
}

.trust-banner p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.form-card h3 {
  margin-bottom: 6px;
}

.form-card > p {
  margin-bottom: 26px;
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-900);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-700);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(30, 160, 90, 0.1);
  color: #1e7a44;
  border: 1px solid rgba(30, 160, 90, 0.3);
}

.form-status.error {
  background: rgba(237, 31, 43, 0.08);
  color: var(--red-dark);
  border: 1px solid rgba(237, 31, 43, 0.25);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon-box {
  background: rgba(237, 31, 43, 0.1);
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--red);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

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

.cta-band p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- State pills (service area) ---------- */
.state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.state-pill {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.state-pill {
  cursor: pointer;
}

.state-pill:hover,
.state-pill:focus-visible {
  border-color: var(--red-dark);
  color: var(--red-dark);
  background: rgba(237, 31, 43, 0.05);
}

/* ---------- Pickup-location confirmation banner (Coverage Map -> Quote form) ---------- */
.pickup-confirm {
  background: rgba(30, 160, 90, 0.1);
  color: #1e7a44;
  border: 1px solid rgba(30, 160, 90, 0.3);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.field-highlight {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(237, 31, 43, 0.12);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ---------- Steps (careers / process) ---------- */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-100);
}

.step:last-child {
  border-bottom: none;
}

.step .num {
  counter-increment: step;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
}

.step .num::before {
  content: counter(step);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.step p {
  font-size: 0.94rem;
}

/* ---------- Requirements checklist ---------- */
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 0.96rem;
  color: var(--gray-900);
}

.check-list svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 32px 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
}

.footer-brand .brand {
  margin-bottom: 18px;
}

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

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 300px;
  margin-bottom: 22px;
}

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

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

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}

.footer-col h4 {
  position: relative;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--red);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a,
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a {
  display: inline-block;
  transition: color var(--transition), transform var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

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

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
  border: none;
  cursor: pointer;
}

/* ---------- Floating SMS / text-dispatch button ---------- */
.floating-sms {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 901;
  transition: transform var(--transition), background var(--transition);
}

.floating-sms:hover {
  background: var(--red);
  transform: scale(1.06);
}

.floating-sms svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-sms::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: sms-pulse 2.4s ease-out infinite;
}

@keyframes sms-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .floating-sms {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
  .back-to-top {
    right: 16px;
    bottom: 74px;
    width: 42px;
    height: 42px;
  }
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 1100;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Fleet gallery ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

.fleet-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fleet-item:hover img {
  transform: scale(1.05);
}

/* Shown automatically in place of any fleet-N.jpg that hasn't been added yet */
.fleet-item .fleet-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  color: var(--gray-700);
  background: var(--off-white);
}

.fleet-item.is-empty .fleet-placeholder {
  display: flex;
}

.fleet-item.is-empty img {
  display: none;
}

.fleet-item .fleet-placeholder svg {
  width: 32px;
  height: 32px;
  fill: var(--gray-300);
}

.fleet-item .fleet-placeholder span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Map embed ---------- */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  aspect-ratio: 16 / 7;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-embed {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Trusted Partners — scrolling logo marquee ---------- */
.partners-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 92px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  position: relative;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo .partner-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--gray-500);
}

.partner-logo.is-empty img {
  display: none;
}

.partner-logo.is-empty .partner-placeholder {
  display: flex;
}

.partner-logo .partner-placeholder svg {
  width: 22px;
  height: 22px;
  fill: var(--gray-300);
}

.partner-logo .partner-placeholder span {
  font-family: var(--font-head);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .partner-logo {
    width: 140px;
    height: 76px;
    padding: 12px 16px;
  }
  .partners-track {
    gap: 18px;
  }
}

/* ---------- Resource / article cards ---------- */
.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.resource-card-media {
  height: 130px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.resource-card-media svg {
  width: 34px;
  height: 34px;
  fill: rgba(255, 255, 255, 0.85);
}

.resource-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resource-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.resource-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.92rem;
  flex-grow: 1;
}

/* ---------- Scroll-reveal animation ----------
   Content is visible by default. The hidden/animated state only applies
   once the "js" class is present on <html> (set by an inline script at the
   top of <body>), so if a script fails to load for any reason, sections
   never get stuck invisible — they just skip the animation.
------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .partners-track {
    animation: none;
  }
}
