/* ============================================================
   HMW LLC — Freight Broker — Main Stylesheet
   ============================================================ */

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

:root {
  --gold: #F5A623;
  --gold-dark: #d48c0f;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --border: #222222;
  --text: #ffffff;
  --text-muted: #888888;
  --text-light: #cccccc;
  --radius: 8px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.gold { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ——— SECTION HEADERS ——— */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 540px; margin: 0 auto; }

/* ——— BUTTONS ——— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; justify-content: center; font-size: 15px; padding: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(245,166,35,0.06); }

/* ——— NAVBAR ——— */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { text-decoration: none; display: flex; align-items: baseline; gap: 3px; }
.logo-hmw {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-llc {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Animated speed lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-lines .line {
  position: absolute;
  left: -100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.15), transparent);
  animation: speedLine 4s linear infinite;
}
.hero-lines .line:nth-child(1) { top: 20%; width: 60%; animation-delay: 0s; animation-duration: 3.5s; }
.hero-lines .line:nth-child(2) { top: 35%; width: 80%; animation-delay: 0.8s; animation-duration: 4.5s; }
.hero-lines .line:nth-child(3) { top: 55%; width: 50%; animation-delay: 1.6s; animation-duration: 3s; }
.hero-lines .line:nth-child(4) { top: 70%; width: 70%; animation-delay: 0.4s; animation-duration: 5s; }
.hero-lines .line:nth-child(5) { top: 85%; width: 45%; animation-delay: 2s; animation-duration: 4s; }

@keyframes speedLine {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Big background text */
.hero::before {
  content: 'HMW';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 25vw, 380px);
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  letter-spacing: -10px;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2);
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
@media (max-width: 1200px) { .hero-content { padding-left: 24px; margin-left: 0; } }

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;
}
.badge-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
  background: rgba(245,166,35,0.06);
}
.badge-ring span {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.badge-ring small {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ——— STATS STRIP ——— */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-icon { font-size: 22px; line-height: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ——— SERVICES ——— */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--bg3); border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ——— ABOUT ——— */
.about { background: var(--bg2); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.about-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.about-stat-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.big-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 4px;
}
.big-sub {
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
}
.about-tagline {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.5px;
}
.about-owner-block { margin-top: 28px; }
.owner-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 14px; }
.owner-name { font-size: 16px; font-weight: 700; color: #fff; }
.owner-title { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 2px; }
.about-quote-card {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-top: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote-card p {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
}
.about-text .section-tag { display: block; margin-bottom: 12px; }
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.pillar { border-left: 2px solid var(--border); padding-left: 20px; transition: border-color var(--transition); }
.pillar:hover { border-color: var(--gold); }
.pillar-label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.pillar p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ——— CARRIERS ——— */
.carriers { background: var(--bg); }
.carriers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.carriers-text .section-tag { display: block; margin-bottom: 12px; }
.carriers-text .section-title { text-align: left; margin-bottom: 24px; }
.carriers-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.carriers-because { color: var(--text-muted) !important; font-size: 15px !important; }
.verify-grid { display: flex; flex-direction: column; gap: 2px; }
.verify-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.verify-card:hover { background: var(--bg3); border-color: rgba(245,166,35,0.25); }
.verify-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.verify-card strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.verify-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin: 0; }
.relationship-banner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 40px 48px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.relationship-banner p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.relationship-banner p:last-child { margin-bottom: 0; }
.relationship-close { font-style: italic; color: var(--text-muted) !important; }

/* ——— CONTACT ——— */
.contact {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { display: block; margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); font-size: 16px; margin-bottom: 40px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 18px; }
.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg3);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong { font-size: 13px; font-weight: 600; color: #fff; }
.contact-item span { font-size: 14px; color: var(--text-muted); }
.contact-item span a { color: var(--gold); text-decoration: none; }
.contact-item span a:hover { text-decoration: underline; }
.contact-credentials { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.cred-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.cred-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}
.cred-note { font-size: 12px; color: var(--text-muted); }
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  appearance: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select option { background: var(--bg2); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; }
.form-success {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
}
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--text-muted); }

/* ——— FOOTER ——— */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo { display: flex; align-items: baseline; gap: 3px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); letter-spacing: 1px; }
.footer-sub { font-size: 12px; color: #444; font-style: italic; }
.footer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.5px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: #444; }

/* ——— REVIEWS ——— */
.reviews { background: var(--bg); border-top: 1px solid var(--border); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.review-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  transition: opacity var(--transition);
  opacity: 0.6;
}
.review-google::before    { background: #4285F4; }
.review-facebook::before  { background: #1877F2; }
.review-bbb::before       { background: #003F87; }
.review-yelp::before      { background: #D32323; }
.review-trustpilot::before{ background: #00B67A; }
.review-card:hover { background: var(--bg3); transform: translateY(-3px); }
.review-google:hover    { border-color: rgba(66,133,244,0.35); }
.review-facebook:hover  { border-color: rgba(24,119,242,0.35); }
.review-bbb:hover       { border-color: rgba(0,63,135,0.5); }
.review-yelp:hover      { border-color: rgba(211,35,35,0.35); }
.review-trustpilot:hover{ border-color: rgba(0,182,122,0.35); }
.review-platform-icon { width: 36px; height: 36px; flex-shrink: 0; }
.review-platform-icon svg { width: 100%; height: 100%; }
.review-body { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-size: 14px; font-weight: 700; }
.review-action { font-size: 12px; color: var(--text-muted); }
.reviews-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ——— SOCIAL LINKS (footer) ——— */
.footer-social { display: flex; gap: 12px; align-items: center; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: #fff; }
.social-facebook:hover  { background: #1877F2; border-color: #1877F2; }
.social-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; }
.social-linkedin:hover  { background: #0A66C2; border-color: #0A66C2; }
.social-google:hover    { background: var(--bg3); border-color: #4285F4; }
.social-link[data-pending="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ——— HERO WITH PHOTO ——— */
.hero.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero.has-photo .hero-content,
.hero.has-photo .hero-badge,
.hero.has-photo .hero-scroll-indicator { z-index: 2; }
.hero.has-photo .hero-lines { z-index: 2; }

/* ——— ABOUT WITH PHOTO ——— */
.about-visual.has-photo {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-visual.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.about-visual.has-photo .about-box {
  position: relative;
  z-index: 2;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.08);
  margin: 24px;
}
.about-visual.has-photo .about-quote-card {
  position: relative;
  z-index: 2;
  margin: 0 24px 24px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
}

/* ——— FLEET GALLERY ——— */
.fleet { background: var(--bg2); border-top: 1px solid var(--border); }
.fleet-slider {
  position: relative;
  overflow: hidden;
}
.fleet-track {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 4px 4px;
  box-sizing: border-box;
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-slide {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
}
.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fleet-slide:hover img { transform: scale(1.04); }
.fleet-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.fleet-btn svg { width: 16px; height: 16px; }
.fleet-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.fleet-prev { left: 0; }
.fleet-next { right: 0; }

/* ——— REVEAL ANIMATIONS ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .about-layout,
  .contact-layout,
  .carriers-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual:not(.has-photo) { display: none; }
  .about-visual.has-photo { min-height: 320px; }
  .hero-badge { display: none; }
  .stat-divider { display: none; }
  .stats-strip { gap: 28px 48px; }
  .relationship-banner { padding: 28px 24px; }
  .fleet-slide { width: 160px; height: 120px; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); border-bottom: 1px solid var(--border); padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 14px; }
  .nav-cta { margin: 8px 24px; padding: 12px 20px !important; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 100px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-scroll-indicator { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-slide { width: 130px; height: 100px; }
  .fleet-btn { width: 32px; height: 32px; }
  .fleet-btn svg { width: 14px; height: 14px; }
}

/* ——— FORM SECTION TITLES ——— */
.form-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin: 24px 0 16px;
}
.form-section-title:first-child { margin-top: 0; }
.req { color: var(--gold); font-size: 13px; }

/* ——— CONTACT CTA CARD ——— */
.contact-cta-wrap { display: flex; align-items: center; justify-content: center; }
.contact-cta-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
}
.cta-card-icon { margin-bottom: 20px; }
.cta-card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.cta-card-body { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 28px; }
.cta-card-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ——— QUOTE MODAL ——— */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }

/* ——— ENTRY POPUP ——— */
.entry-popup {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--bg2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
}
.entry-popup.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.entry-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}
.entry-popup-close:hover { color: var(--text); }
.entry-popup-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.entry-popup-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.entry-popup-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.entry-popup-btn { width: 100%; justify-content: center; font-size: 14px; padding: 10px 16px; }

@media (max-width: 680px) {
  .contact-cta-card { padding: 32px 20px; }
  .modal-box { padding: 32px 20px; }
  .entry-popup { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
}
