/* =============================================
   VANGO SOLUCIONES LOGÍSTICAS — Design Tokens
   ============================================= */
:root {
  --black:        #000000;
  --bg:           #000000;
  --bg-card:      #0f0f0f;
  --bg-card-2:    #090909;
  /* Brand green — go / movement / VanGo identity */
  --green:        #3ce85c;
  --green-dim:    #28c447;
  --green-glow:   rgba(60, 232, 92, 0.12);
  --green-border: rgba(60, 232, 92, 0.22);
  /* Logistics orange — urgency / speed / industry standard */
  --orange:       #f97316;
  --orange-dim:   #ea6c0a;
  --orange-glow:  rgba(249, 115, 22, 0.14);
  --orange-border:rgba(249, 115, 22, 0.28);
  /* Neutral */
  --white:        #ffffff;
  --gray-100:     #eef2f7;
  --gray-400:     #8a9bb0;
  --gray-600:     #4a5568;
  --border:       rgba(255,255,255,0.08);

  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      12px;
  --radius-sm:   8px;
  --ease:        0.25s ease;

  --max-w:       1200px;
  --pad-x:       clamp(1.25rem, 5vw, 4rem);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--gray-100);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* =============================================
   LAYOUT UTILS
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section {
  padding-block: 5.5rem;
}
.section--alt {
  background: var(--bg-card-2);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--green);
}
.section-lead {
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #000;
}
.btn--primary:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--green-glow);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green-border);
}
.btn--outline:hover {
  background: var(--green-glow);
  border-color: var(--green);
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn--orange {
  background: var(--orange);
  color: #fff;
  border: none;
}
.btn--orange:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--orange-glow);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad-x);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav__logo-text span { color: var(--green); }
.nav__logo-sub {
  font-size: 0.6rem;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gray-100);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-100);
  transition: all var(--ease);
  border-radius: 2px;
}
/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 72px 0 0;
  background: var(--bg);
  padding: 2rem var(--pad-x);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  z-index: 199;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn { align-self: flex-start; margin-top: 0.5rem; }

/* =============================================
   HERO — HOME
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(60,232,92,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  background: radial-gradient(circle, rgba(60,232,92,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  padding-block: 2.5rem 5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(60,232,92,0.1);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__logo-block::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(60,232,92,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__logo-img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 0 40px rgba(60,232,92,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-2);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.card:hover::after {
  transform: scaleX(1);
}
.card__icon {
  width: 46px;
  height: 46px;
  background: rgba(60,232,92,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-text strong { color: var(--gray-100); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.mv-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.mv-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* =============================================
   VALUES
   ============================================= */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-item__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.value-item__text {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}
.value-item__text strong { color: var(--gray-100); }

/* =============================================
   FLEET
   ============================================= */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--ease);
}
.fleet-card:hover { border-color: var(--green-border); }
.fleet-card__van {
  width: 80px;
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}
.fleet-card h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.fleet-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* =============================================
   COVERAGE
   ============================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.city-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), background var(--ease);
}
.city-pill:hover {
  border-color: var(--green-border);
  background: var(--bg-card-2);
}
.city-pill__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}
.city-pill__name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}
.city-pill__state {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* =============================================
   COVERAGE — LIGHT SECTION
   ============================================= */
.section--coverage {
  background: var(--bg-card-2);
  color: var(--gray-100);
}
.section--coverage .section-eyebrow { color: var(--orange); }
.section--coverage .section-title em { color: var(--green); }
.section--coverage .section-lead  { color: var(--gray-400); }

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: center;
}

/* Map container */
#coverage-map {
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 0;
}

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  border: none !important;
  padding: 0 !important;
}
.leaflet-popup-content {
  margin: 0 !important;
}
.map-popup {
  padding: 0.85rem 1.1rem;
  min-width: 140px;
}
.map-popup__city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.map-popup__state {
  font-size: 0.75rem;
  color: #64748b;
}
.leaflet-popup-tip { background: #fff !important; }

/* City list panel (light) */
.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}
.city-chip:hover {
  border-color: var(--orange-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transform: translateX(3px);
}
.city-chip__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.city-chip__dot--green {
  background: var(--green);
  box-shadow: 0 0 6px rgba(60,232,92,0.5);
}
.city-chip__dot--orange {
  background: var(--orange);
  box-shadow: 0 0 6px rgba(249,115,22,0.5);
}
.city-chip__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-100);
  line-height: 1.2;
}
.coverage-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .coverage-layout {
    grid-template-columns: 1fr;
  }
  #coverage-map { height: 360px; }
  .coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .city-chip:hover { transform: none; }
}

/* =============================================
   CLIENTS STRIP
   ============================================= */
.clients-strip {
  padding-block: 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-strip__label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
.clients-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.client-tag {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--ease);
  cursor: default;
}
.client-tag:hover { color: var(--gray-400); }

/* =============================================
   CONTACT / FOOTER
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(60,232,92,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item__label {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact-item__value a {
  color: var(--gray-400);
  transition: color var(--ease);
}
.contact-item__value a:hover { color: var(--green); }

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form__label {
  font-size: 0.78rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}
.form__input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--gray-100);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,232,92,0.08);
}
.form__input::placeholder { color: var(--gray-600); }
textarea.form__input {
  min-height: 110px;
  resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
@media (max-width: 600px) {
  .footer__right { align-items: flex-start; }
}

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  padding-top: 72px;
  background: linear-gradient(180deg, rgba(60,232,92,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  padding-block: 5rem 3.5rem;
}
.page-hero__crumb {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.page-hero__crumb a {
  color: var(--green);
  transition: opacity var(--ease);
}
.page-hero__crumb a:hover { opacity: 0.7; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--green);
}
.page-hero__lead {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.75;
}

/* =============================================
   HERO IMAGE SPLIT
   ============================================= */
.hero__img-panel {
  position: absolute;
  inset: 0 0 0 50%;
  overflow: hidden;
  pointer-events: none;
}
.hero__img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
.hero__img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.55);
}

/* =============================================
   PHOTO FEATURE SECTION (3-col images)
   ============================================= */
.photo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: default;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.75) brightness(0.65);
}
.photo-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.85) brightness(0.7);
}
.photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,12,18,0.88) 0%, rgba(8,12,18,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.photo-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.photo-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.photo-card p {
  font-size: 0.8rem;
  color: rgba(240,244,247,0.7);
  line-height: 1.5;
}

/* =============================================
   FEATURE SPLIT (image + text)
   ============================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split--reverse .feature-split__img { order: 2; }
.feature-split--reverse .feature-split__text { order: 1; }
.feature-split__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.feature-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.7);
  transition: filter 0.4s ease;
}
.feature-split__img:hover img {
  filter: saturate(0.9) brightness(0.8);
}
.feature-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.feature-split__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.feature-split__text .section-lead { margin-bottom: 1.5rem; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =============================================
   ORANGE ACCENT OVERRIDES
   ============================================= */
.stat__number--orange { color: var(--orange); }
.card__icon--orange {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
}
.card--orange::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}
.card--orange:hover { border-color: var(--orange-border); }
.section-eyebrow--orange { color: var(--orange); }
.city-pill__dot--orange {
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo-block { display: none; }
  .hero__img-panel { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .photo-features { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split--reverse .feature-split__img { order: unset; }
  .feature-split--reverse .feature-split__text { order: unset; }
}
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 3.5rem); }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .hero__actions { flex-direction: column; }
  .photo-features { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
}
