/* ============================================================
   Priority Towing — styles.css
   Theme: American Patriotic — Old Glory Red, Federal Navy, White
   Updated: 2026-04-25 (rebuild — was Red & Black)
   ============================================================ */

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

:root {
  /* American flag palette */
  --red:        #BF0A30;   /* Old Glory Red */
  --red-deep:   #9d0826;
  --red-bright: #E0102E;
  --red-soft:   #fbe9ec;
  --navy:       #0A2647;   /* Federal flag blue / canton */
  --navy-deep:  #061a33;
  --navy-mid:   #142e58;
  --royal:      #1E40AF;
  --white:      #FFFFFF;
  --offwhite:   #F8FAFC;
  --cream:      #FFFCF7;
  --gray:       #6B7280;
  --gray-light: #9CA3AF;
  --gray-soft:  #E5E7EB;
  --charcoal:   #1F2937;

  --font-head:    'Oswald', 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-display: 'Anton', 'Oswald', 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Open Sans', 'Inter', Arial, sans-serif;

  --transition: 0.22s ease;
  --shadow-sm:  0 1px 3px rgba(10, 38, 71, 0.10);
  --shadow-md:  0 4px 12px rgba(10, 38, 71, 0.14);
  --shadow-lg:  0 14px 36px rgba(10, 38, 71, 0.22);
  --shadow-red: 0 6px 22px rgba(191, 10, 48, 0.30);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-deep); }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

/* ── PATRIOTIC FLAG STRIPE  ───────────────────────────────── */
/* A 6px thin red+white repeating stripe used as decorative
   section divider. Like flag stripes. */
.flag-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 32px,
    var(--white) 32px 64px
  );
}
.flag-stripe.thick { height: 10px; }
.flag-stripe.navy-bg { box-shadow: 0 1px 0 rgba(10, 38, 71, 0.1); }

/* ── FIRE BAR (top utility strip) ─────────────────────────── */
.fire-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.fire-bar a { color: var(--white); font-weight: 700; }
.fire-bar a:hover { color: var(--cream); }
.fire-bar .pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulseDot 1.2s ease-in-out infinite;
}
.fire-bar .star-sep {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255,255,255,0.7);
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}
/* Brand links — small inline SVG logo + label */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
.brand-link:hover { opacity: 0.8; color: inherit; }
.brand-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.brand-facebook svg { color: #1877F2; }
.brand-cashapp svg  { color: #00D632; }
.brand-venmo svg    { color: #008CFF; }
.brand-zelle svg    { color: #6D1ED4; }
.brand-google svg   { color: #4285F4; }

/* When a brand link sits on a dark/navy band, force the icon to color
   even when text is white */
.cta-band .brand-link, footer .brand-link, .pay-band .brand-link {
  color: rgba(255,255,255,0.85);
}
.cta-band .brand-link:hover,
footer .brand-link:hover,
.pay-band .brand-link:hover {
  color: var(--white);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(10, 38, 71, 0.45);
  border-bottom: 4px solid var(--red);
  background-image:
    radial-gradient(circle at 92% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-text .name .accent { color: var(--red-bright); }

.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.85;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  font-family: var(--font-head);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  padding: 7px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.nav-call-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 12px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.74rem;
  white-space: nowrap;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition) !important;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-red);
}
.nav-call-btn:hover {
  background: var(--red-deep) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}
.nav-call-laporte { background: var(--navy); box-shadow: 0 6px 22px rgba(10,38,71,0.35); }
.nav-call-laporte:hover { background: var(--navy-deep) !important; }
.logo-word { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; white-space: nowrap; }
.logo-word-accent { color: var(--red-bright); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 0;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Twinkling foreground stars */
.hero-stars {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.twinkle {
  position: absolute;
  color: var(--white);
  font-size: 18px;
  opacity: 0.3;
  animation: twinkle 4s ease-in-out infinite;
}
.twinkle.s1 { top: 8%;  left: 12%; animation-delay: 0.0s; font-size: 12px; }
.twinkle.s2 { top: 18%; right: 18%; animation-delay: 0.6s; font-size: 16px; }
.twinkle.s3 { top: 42%; left: 48%; animation-delay: 1.4s; font-size: 14px; }
.twinkle.s4 { top: 22%; left: 36%; animation-delay: 2.0s; font-size: 10px; }
.twinkle.s5 { top: 60%; right: 40%; animation-delay: 2.7s; font-size: 14px; }
.twinkle.s6 { top: 70%; left: 8%;  animation-delay: 3.3s; font-size: 18px; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.85); }
  50%      { opacity: 0.85; transform: scale(1.1); }
}

/* Live availability dot — pulsing green */
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.8);
  animation: liveDot 1.6s ease-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.85); }
  70%  { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-badge .pipe {
  margin: 0 6px;
  color: rgba(255,255,255,0.4);
}

.hero { min-height: 22vh; display: flex; flex-direction: column; }
/* Left-anchored scrim: darkens behind the hero text, fades out before the trucks */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6,16,30,0.78) 0%, rgba(6,16,30,0.55) 28%, rgba(6,16,30,0.15) 50%, rgba(6,16,30,0) 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  flex: 1;
  width: 100%;
}

.hero-text { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(191,10,48,0.16);
  border: 1px solid var(--red);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-badge .star-icon { color: var(--red-bright); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-title .line { display: block; }
.hero-title .line-accent {
  color: var(--red-bright);
  text-shadow: 0 0 32px rgba(255,26,26,0.55), 0 4px 24px rgba(0,0,0,0.5);
  position: relative;
}
.hero-title .line-accent::after {
  content: '';
  display: inline-block;
  width: 64px;
  height: 6px;
  background: var(--red);
  margin-left: 18px;
  vertical-align: middle;
  box-shadow: 0 0 18px rgba(255,26,26,0.6);
}

/* Sequenced fade-up entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--fade-delay, 0ms);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-subtitle .dot { color: var(--red-bright); margin: 0 6px; }

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(191,10,48,0.4);
}

/* Big multi-line CTA with glow */
.btn-glow {
  padding: 16px 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 0 rgba(255,26,26,0.6),
    0 12px 32px rgba(191,10,48,0.45);
  animation: ctaGlow 2.4s ease-in-out infinite;
}
.btn-glow:hover { animation: none; transform: translateY(-3px); }
.btn-glow .btn-content { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 4px; }
.btn-glow .btn-pretitle {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  opacity: 0.9;
  font-weight: 500;
}
.btn-glow .btn-bigphone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.btn-glow i {
  font-size: 1.6rem;
  margin-right: 6px;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,26,26,0), 0 12px 32px rgba(191,10,48,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(255,26,26,0), 0 16px 40px rgba(255,26,26,0.55); }
}

/* Hero trust micro-bar */
.hero-laporte-line {
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.85);
}
.hero-laporte-line i { color: var(--red-bright); margin-right: 8px; }
.hero-laporte-line a { color: var(--red-bright); font-weight: 700; }
.hero-laporte-line a:hover { color: #fff; }

/* Hero text legibility on the no-overlay photo */
.hero-title { text-shadow: 0 4px 28px rgba(0,0,0,0.78), 0 2px 8px rgba(0,0,0,0.7); }
.hero-subtitle, .hero-desc { text-shadow: 0 2px 10px rgba(0,0,0,0.85); }
.hero-badge { text-shadow: 0 2px 6px rgba(0,0,0,0.55); }
.hero-trust .trust-item { text-shadow: 0 2px 8px rgba(0,0,0,0.85); }

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-star { color: var(--red-bright); font-size: 0.95rem; }

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

/* ── HERO VISUAL (truck) ──────────────────────────────────── */
.hero-visual {
  display: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.truck-wrapper {
  width: 100%;
  position: relative;
}

.em-lights {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  pointer-events: none;
  z-index: 1;
}
.em-light {
  position: absolute;
  width: 24px; height: 16px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
  animation: emFlash 0.9s infinite alternate;
}
.em-light.red    { left: 12px;  background: var(--red-bright); }
.em-light.red2   { right: 12px; background: var(--red-bright); animation-delay: 0.45s; }
@keyframes emFlash {
  0%   { opacity: 0.2; }
  100% { opacity: 0.85; }
}

.truck-svg-container {
  position: relative;
  z-index: 2;
}

.truck-stat-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.truck-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 22px;
  border-radius: 4px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.truck-stat .num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--red-bright);
  font-weight: 700;
  line-height: 1;
}
.truck-stat .label {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── HERO STATS BAR ───────────────────────────────────────── */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTION COMMON ───────────────────────────────────────── */
section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-label::before {
  content: '★';
  color: var(--red);
  font-size: 0.9rem;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--red);
  margin-left: 4px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.section-title span {
  color: var(--red);
  font-style: normal;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 720px;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--offwhite); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 25%, var(--white) 25%, var(--white) 50%, var(--navy) 50%, var(--navy) 75%, var(--white) 75%);
  opacity: 0.0; /* hidden but available */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-top: 4px solid var(--red);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: '★';
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--red);
  font-size: 0.95rem;
  opacity: 0.55;
}
.service-icon {
  display: inline-block;
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 3px;
  font-weight: 600;
}

/* ── SERVICE CARD WITH PHOTO ──────────────────────────────── */
.service-card.with-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card.with-photo .service-photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.service-card.with-photo .service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card.with-photo:hover .service-photo img { transform: scale(1.04); }
.service-card.with-photo .service-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,38,71,0.65) 100%);
}
.service-card.with-photo .service-card-body { padding: 28px; position: relative; }
.service-card.with-photo::before { top: auto; bottom: 18px; right: 18px; }

/* ── FLEET ────────────────────────────────────────────────── */
.fleet { background: var(--white); }
.fleet-feature {
  margin: 12px 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-soft);
}
.fleet-feature img { width: 100%; height: auto; display: block; }
.fleet-feature figcaption {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-top: 3px solid var(--red);
}
.fleet-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.fleet-type {
  background: var(--offwhite);
  border: 1px solid var(--gray-soft);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.fleet-type strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.fleet-card {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 4/5;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(10,38,71,0.92) 60%);
  color: var(--white);
}
.fleet-card figcaption h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.fleet-card figcaption p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.fleet-card::before {
  content: '★';
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--red-bright);
  font-size: 1.1rem;
  background: var(--white);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* ── INDUSTRIES WE SERVE ──────────────────────────────────── */
.industries { background: var(--offwhite); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-left: 4px solid var(--red);
  padding: 28px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card.with-photo .industry-photo {
  position: relative;
  width: 100%;
  height: 110px;
  margin: -28px -28px 18px -28px;
  width: calc(100% + 56px);
  overflow: hidden;
  background: var(--navy);
}
.industry-card.with-photo .industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.industry-card.with-photo:hover .industry-photo img { transform: scale(1.05); }
.industry-card.with-photo .industry-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,38,71,0.55) 100%);
}
.industry-card.with-photo .industry-icon {
  position: absolute;
  top: 90px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.industry-card:hover {
  transform: translateX(4px);
  border-left-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.industry-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.testimonial-card {
  background: var(--offwhite);
  padding: 32px;
  border-radius: 4px;
  border-top: 4px solid var(--red);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 4px; right: 18px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.18;
  line-height: 1;
}
.t-stars { color: var(--red); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 12px; }
.t-quote {
  font-size: 0.96rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.t-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.t-loc { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.testimonial-cta { text-align: center; margin-top: 36px; }
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  transition: all var(--transition);
}
.btn-secondary-light:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--offwhite); }
.faq-list {
  max-width: 860px;
  margin: 12px auto 0;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 4px;
  padding: 0;
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ── REQUEST A TOW ────────────────────────────────────────── */
.request { background: var(--navy); color: var(--white); position: relative; padding: 80px 0; overflow: hidden; }
.request::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(191,10,48,0.16) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.request .section-inner { position: relative; z-index: 2; }
.request .section-title { color: var(--white); }
.request .section-title span { color: var(--red-bright); }
.request .section-label { color: var(--red-bright); }
.request .section-label::before, .request .section-label::after { color: var(--red-bright); background: var(--red-bright); }
.request .section-desc { color: rgba(255,255,255,0.85); }

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.request-meta { margin-top: 8px; }
.request-meta p { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.request-phone {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red-bright);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.request-phone:hover { color: var(--white); }

.request-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 32px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.request-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.request-form .form-group { margin-bottom: 14px; }
.request-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid var(--gray-soft);
  border-radius: 3px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.request-form textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.request-thanks {
  margin-top: 14px;
  padding: 14px;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  color: var(--charcoal);
  border-radius: 3px;
  font-size: 0.9rem;
}

/* ── ABOUT / WHY ──────────────────────────────────────────── */
.about {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(191,10,48,0.10) 0%, transparent 55%),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.about .section-inner { position: relative; z-index: 2; }
.about .section-title { color: var(--white); }
.about .section-title span { color: var(--red-bright); }
.about .section-label { color: var(--red-bright); }
.about .section-label::before, .about .section-label::after { color: var(--red-bright); background: var(--red-bright); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.about-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  /* a small flag canton in the top-right of the card */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 60px;
  background:
    linear-gradient(var(--white) 0 12px, transparent 12px 24px) repeat-y,
    var(--red);
  background-size: 100% 24px;
  opacity: 0.06;
}
.about-big-number {
  font-family: var(--font-head);
  font-size: 4.6rem;
  color: var(--red-bright);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-big-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.about-big-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1.6;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-stat .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--red-bright);
  font-weight: 700;
  line-height: 1;
}
.about-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-address {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(191,10,48,0.10);
  border: 1px solid rgba(191,10,48,0.32);
  border-radius: 3px;
}
.about-address .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-address .val {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-top: 4px;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-top: 8px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-red);
}
.why-list h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.why-list p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── TEXAS FEATURE BAND ───────────────────────────────────── */
.texas-feature {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-top: -2%;
  margin-bottom: -2%;
}
.texas-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(191,10,48,0.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'><defs><pattern id='s' width='110' height='110' patternUnits='userSpaceOnUse'><polygon points='55,22 60,38 76,38 64,48 68,64 55,55 42,64 46,48 34,38 50,38' fill='rgba(255,255,255,0.05)'/></pattern></defs><rect width='1600' height='900' fill='url(%23s)'/></svg>");
  pointer-events: none;
}
.texas-feature-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.texas-emblem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.texas-emblem svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55));
}
.texas-emblem iframe {
  width: 100%;
  min-height: 360px;
  border: 3px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: block;
}
/* Center copy column flanked by the two yard maps */
.texas-feature-copy { text-align: center; }
.texas-feature-copy .section-label { justify-content: center; }
.texas-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin: 0 auto 18px;
}
.laporte-map {
  width: 100%;
  min-height: 300px;
  border: 3px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.map-cap {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin: 8px 0 18px;
}

/* ── LOCATIONS ────────────────────────────────────────────── */
.locations { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 12px;
}
.location-card {
  background: var(--offwhite);
  border: 1px solid var(--gray-soft);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-weight: 600;
}
.location-card h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 12px; }
.loc-addr { color: var(--gray); font-size: 0.98rem; margin-bottom: 14px; line-height: 1.5; }
.loc-addr i { color: var(--red); margin-right: 6px; }
.loc-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.loc-phone:hover { color: var(--red-deep); }
.loc-hours {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.loc-dir {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.loc-dir:hover { color: var(--red); }
@media (max-width: 780px) { .locations-grid { grid-template-columns: 1fr; } }
.texas-feature-copy .section-label::before,
.texas-feature-copy .section-label::after {
  color: var(--red-bright);
  background: var(--red-bright);
}
.texas-feature-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 12px 0 20px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.55);
}
.texas-feature-title .line { display: block; }
.texas-feature-title .accent { color: var(--red-bright); }
.texas-feature-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.texas-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.texas-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red-bright);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.texas-stat .num .suffix {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-left: 2px;
}
.texas-stat .label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── COVERAGE ─────────────────────────────────────────────── */
.coverage { background: var(--offwhite); }
.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  padding: 10px 16px;
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition);
}
.area-tag::before {
  content: '★';
  color: var(--red);
  font-size: 0.85rem;
}
.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-tag:hover::before { color: var(--white); }

/* ── EMERGENCY CTA BAND ───────────────────────────────────── */
.cta-band {
  background:
    linear-gradient(rgba(191,10,48,0.95), rgba(157,8,38,0.95)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><defs><pattern id='s' width='80' height='80' patternUnits='userSpaceOnUse'><polygon points='40,12 44,26 58,26 47,35 51,49 40,40 29,49 33,35 22,26 36,26' fill='rgba(255,255,255,0.06)'/></pattern></defs><rect width='600' height='600' fill='url(%23s)'/></svg>");
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--white) 0 32px, var(--red) 32px 64px);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--white) 0 32px, var(--red) 32px 64px);
}
.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
}
.cta-band .section-label {
  color: rgba(255,255,255,0.85);
  justify-content: center;
}
.cta-band .section-label::before, .cta-band .section-label::after {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.85);
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band h2 span { font-style: italic; color: var(--cream); }
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--white);
  background: var(--navy);
  padding: 18px 36px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(10,38,71,0.45);
  transition: all var(--transition);
  border: 3px solid var(--white);
}
.cta-phone-link:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
}
.cta-phones { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-phone-link { flex-direction: column; align-items: center; gap: 3px; padding: 14px 30px !important; }
.cta-city { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.9; }
.cta-num { font-size: 2.05rem; line-height: 1; }
.cta-num i { font-size: 0.55em; margin-right: 10px; }
.cta-meta {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.cta-pay {
  margin-top: 16px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* ── BRAND BAND ───────────────────────────────────────────── */
.brand-band {
  background: linear-gradient(180deg, var(--offwhite), var(--white));
  padding: 48px 0;
  text-align: center;
  border-top: 4px solid var(--red);
}
.brand-band img {
  max-width: 520px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.footer-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 0;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 360px;
}
.footer-phone {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--red-bright) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-phone:hover { color: var(--white) !important; }
.footer-phone { display: block; margin-bottom: 2px; }
.footer-area { display: block; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 12px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red-bright); }

.footer-contact p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--red-bright); }

/* ── FLOATING MOBILE CALL BUTTON ──────────────────────────── */
.mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-lg);
  text-transform: uppercase;
  font-size: 0.9rem;
  animation: floatCall 2.5s ease-in-out infinite;
}
@keyframes floatCall {
  0%, 100% { box-shadow: var(--shadow-red); }
  50%       { box-shadow: 0 12px 32px rgba(191,10,48,0.55); }
}

/* ── PAGE HEAD (sub-pages: pay, feedback) ─────────────────── */
.page-head {
  position: relative;
  padding: 100px 0 60px;
  background:
    linear-gradient(135deg, rgba(10,38,71,0.96) 0%, rgba(20,46,88,0.95) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600'><defs><pattern id='ph' width='90' height='90' patternUnits='userSpaceOnUse'><polygon points='45,18 50,33 65,33 53,42 58,58 45,49 32,58 37,42 25,33 40,33' fill='rgba(255,255,255,0.05)'/></pattern></defs><rect width='1600' height='600' fill='url(%23ph)'/></svg>");
  color: var(--white);
  border-bottom: 4px solid var(--red);
  text-align: center;
}
.page-head .section-label {
  color: var(--red-bright);
  justify-content: center;
}
.page-head .section-label::before, .page-head .section-label::after {
  color: var(--red-bright);
  background: var(--red-bright);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 16px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.55);
  letter-spacing: 0.01em;
}
.page-title span { color: var(--red-bright); }
.page-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
.page-subtitle a { color: var(--red-bright); font-weight: 600; }
.page-subtitle a:hover { color: var(--white); }

/* ── PAY METHODS GRID ─────────────────────────────────────── */
.pay-methods { background: var(--offwhite); padding: 80px 0; }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.pay-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-top: 4px solid var(--red);
  padding: 28px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pay-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--navy);
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}
.pay-card .pay-card-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}
.pay-card .pay-card-logo svg {
  width: 56px;
  height: 56px;
}
.pay-card.brand-cashapp .pay-card-logo svg { color: #00D632; }
.pay-card.brand-venmo   .pay-card-logo svg { color: #008CFF; }
.pay-card.brand-zelle   .pay-card-logo svg { color: #6D1ED4; }
.pay-card.brand-google  .pay-card-logo svg { color: #4285F4; }
.pay-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pay-card .pay-handle {
  font-family: 'Courier New', Menlo, monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--sky-soft, #f0f4ff);
  padding: 8px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  word-break: break-all;
  width: 100%;
}
.pay-card .pay-note {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 18px;
}
.pay-card .pay-action {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pay-card.brand-mail { cursor: default; }
.pay-card.brand-mail:hover { transform: none; box-shadow: var(--shadow-sm); border-top-color: var(--red); }

/* ── PAY BAND (notify form) ───────────────────────────────── */
.pay-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.pay-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(191,10,48,0.16) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.pay-band .section-inner { position: relative; z-index: 2; }
.pay-band .section-title { color: var(--white); }
.pay-band .section-title span { color: var(--red-bright); }
.pay-band .section-label { color: var(--red-bright); }
.pay-band .section-label::before, .pay-band .section-label::after {
  color: var(--red-bright);
  background: var(--red-bright);
}
.pay-band .section-desc { color: rgba(255,255,255,0.85); }
.pay-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: start;
}
.pay-band-contact { margin: 18px 0 22px; }
.pay-band-contact p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.pay-band-contact a { color: var(--red-bright); font-weight: 600; }
.pay-band-contact a:hover { color: var(--white); }
.pay-band-warning {
  background: rgba(191,10,48,0.16);
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  border-radius: 3px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}
.pay-band-warning a { color: var(--red-bright); font-weight: 600; }
.pay-band-warning em { font-style: italic; color: var(--white); }

.feedback-cta {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
}
.feedback-cta p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.feedback-cta .btn-secondary-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.feedback-cta .btn-secondary-light:hover {
  background: var(--white);
  color: var(--navy);
}

.pay-form {
  /* Inherits from .request-form, just larger header */
}
.form-warning {
  font-size: 0.82rem;
  color: var(--red);
  background: var(--red-soft);
  padding: 10px 14px;
  border-radius: 3px;
  border-left: 4px solid var(--red);
  margin-bottom: 12px;
}

/* ── STAR RATING (feedback.html) ──────────────────────────── */
.rating-fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 14px;
}
.rating-fieldset legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
  padding: 0;
}
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.star-rating input { position: absolute; opacity: 0; pointer-events: none; }
.star-rating label {
  font-size: 2.2rem;
  color: var(--gray-soft);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--red);
  transform: scale(1.05);
}
.star-rating input:focus-visible + label {
  outline: 2px solid var(--royal);
  outline-offset: 2px;
}

/* ── FORM CHECKBOX ROW ────────────────────────────────────── */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.form-checkbox label {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .texas-feature-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .texas-emblem svg { max-width: 320px; }
  .texas-stats { text-align: left; max-width: 480px; margin: 0 auto; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-types { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-band-grid { grid-template-columns: 1fr; gap: 36px; }
  .request-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .header-inner { height: 64px; }
  .logo-icon { width: 44px; height: 44px; }
  .logo-text .name { font-size: 1.3rem; }
  nav { display: none; }
  nav.open {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 18px;
    border-bottom: 4px solid var(--red);
  }
  nav.open ul { flex-direction: column; align-items: stretch; gap: 4px; }
  nav.open ul li a { display: block; padding: 12px 14px; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .mobile-call { display: inline-flex; }
  .cta-phone-link { font-size: 1.7rem; padding: 14px 22px; }
  .fire-bar .star-sep { display: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-types { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .texas-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 0.74rem; }
}

/* ═══ AUCTIONS PAGE ═══════════════════════════════════════ */
.auction-section { padding: 56px 0; }
.auction-section-alt { background: var(--offwhite); }
.auction-detail-card {
  display: flex; flex-wrap: wrap; gap: 18px;
  background: var(--white); border: 1px solid var(--gray-soft);
  border-left: 5px solid var(--red); border-radius: 12px;
  padding: 24px 28px; box-shadow: var(--shadow-sm); margin-top: 8px;
}
.auction-detail { display: flex; flex-direction: column; gap: 4px; min-width: 160px; flex: 1; }
.auction-detail-label { font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); }
.auction-detail-label i { margin-right: 6px; }
.auction-detail-value { font-size: 1.15rem; font-weight: 600; color: var(--navy); }
.auction-empty-note { margin-top: 16px; color: var(--gray); font-style: italic; }
.auction-table-wrap { overflow-x: auto; margin-top: 14px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.auction-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 480px; }
.auction-table thead th { background: var(--navy); color: var(--white); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; padding: 12px 16px; text-align: left; }
.auction-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--gray-soft); color: var(--charcoal); }
.auction-table tbody tr:nth-child(even) td { background: var(--offwhite); }
.auction-table .col-num { width: 56px; text-align: center; color: var(--gray); font-weight: 600; }
.auction-empty-row td { text-align: center; color: var(--gray); font-style: italic; padding: 22px 16px; }
.auction-terms { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; max-width: 560px; }
.auction-terms li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; color: var(--charcoal); background: var(--white); border: 1px solid var(--gray-soft); border-radius: 10px; padding: 12px 16px; }
.auction-terms li i { color: var(--red); width: 20px; text-align: center; }
.auction-cta { margin-top: 24px; }
.auction-cta p { margin-bottom: 14px; color: var(--charcoal); }

/* Locations grid — logo fills the empty 4th cell beside the Pasadena card */
.location-logo-cell {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border-radius: 14px; padding: 28px;
  box-shadow: var(--shadow-sm);
}
.location-logo-cell img { max-width: 100%; max-height: 190px; width: auto; height: auto; }
@media (max-width: 780px) { .location-logo-cell { display: none; } }
