/* ===== DESIGN TOKENS ===== */
:root {
  --accent: #F97316;
  --accent-hover: #ea580c;
  --accent-rgb: 249, 115, 22;
  --navy: #0c1a32;
  --navy-rgb: 12, 26, 50;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f9fb;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --card-hover: #f3f4f6;
  --text: #0c1420;
  --text-muted: #525c6e;
  --text-subtle: #94a0b4;
  --border: rgba(0,0,0,.06);
  --border-strong: rgba(0,0,0,.1);
  --input-bg: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --hero-overlay: linear-gradient(135deg, rgba(12,26,50,.85) 0%, rgba(12,26,50,.5) 50%, rgba(12,26,50,.15) 100%);
  --hero-gradient: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.55) 25%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.08) 100%);
  --glass-bg: rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.15);
  --glow: radial-gradient(ellipse at 50% 0%, rgba(var(--navy-rgb),.06) 0%, transparent 60%);
  --btn-outline-border: rgba(0,0,0,.08);
  --btn-outline-text: var(--text);
  --btn-outline-hover: rgba(0,0,0,.04);
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1724;
  --bg-alt: #1a2332;
  --card: #162032;
  --card-hover: #1d2b3d;
  --text: #e2e8f0;
  --text-muted: #94a0b8;
  --text-subtle: #64748b;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.12);
  --input-bg: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow: 0 4px 20px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --hero-overlay: linear-gradient(135deg, rgba(12,26,50,.92) 0%, rgba(12,26,50,.7) 50%, rgba(12,26,50,.4) 100%);
  --hero-gradient: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 25%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
  --glass-bg: rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
  --glow: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb),.04) 0%, transparent 60%);
  --btn-outline-border: rgba(255,255,255,.2);
  --btn-outline-text: var(--text);
  --btn-outline-hover: rgba(255,255,255,.06);
}

/* ===== GLOBAL DARK ELEMENTS (same in both themes) ===== */
:root {
  --topbar-bg: #0c1a32;
  --footer-bg: #0c1a32;
  --footer-text: #94a0b4;
  --footer-heading: #d0d8e6;
  --footer-subtle: #4a5a78;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin: 0 auto; }
section { padding: 5.5rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border-style: solid;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.03) 100%);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
  z-index: 1;
}
.btn-primary {
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  border: 1.5px solid rgba(var(--accent-rgb), .35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 20px rgba(var(--accent-rgb), .12);
}
.btn-primary:hover {
  background: rgba(var(--accent-rgb), .18);
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 32px rgba(var(--accent-rgb), .2);
}
.btn-primary:active {
  transform: scale(.97);
}
.btn-outline {
  background: var(--btn-outline-hover);
  color: var(--btn-outline-text);
  border: 1px solid var(--btn-outline-border);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--glass-bg);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), .25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 8px 32px rgba(0,0,0,.15);
}
.btn-sm { padding: 11px 24px; font-size: .82rem; }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--topbar-bg);
  padding: 10px 0;
  font-size: .82rem;
  color: var(--footer-text);
  border-bottom: 1px solid var(--border);
  display: none;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span,
.topbar-left a { color: var(--footer-text); display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.topbar-left a:hover { color: var(--accent); }
.topbar-right { display: flex; gap: 6px; }
.topbar-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--footer-subtle);
  font-size: .75rem;
  transition: all var(--transition);
}
.topbar-right a:hover { background: var(--accent); color: #fff; }
@media (min-width: 768px) { .topbar { display: block; } }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.header.scrolled {
  background: color-mix(in srgb, var(--bg-alt) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
@supports not (backdrop-filter: blur(16px)) {
  .header.scrolled { background: var(--bg-alt); }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; transition: opacity var(--transition); }
[data-theme="dark"] .logo-dark { display: block; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
}
.logo-text span { color: var(--accent); }

.nav { display: none; }
.nav-list { display: flex; gap: 2px; }
.nav-list a {
  padding: 8px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text);
  transition: all var(--transition);
  font-weight: 400;
}
.nav-list a:hover,
.nav-list a.active {
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
}
@media (min-width: 992px) { .nav { display: flex; align-items: center; gap: 24px; } }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  transition: all var(--transition);
}
.hamburger:hover { border-color: var(--accent); }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 992px) { .hamburger, .mobile-nav-toggle { display: none; } }
@media (min-width: 992px) { .header-actions .btn { display: inline-flex; } }
@media (max-width: 991px) { .header-actions .btn { display: none; } }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-alt);
  z-index: 999;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(var(--accent-rgb), .1); color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(75vh - 80px);
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}
.hero-glow {
  display: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-content { max-width: 600px; }
.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  max-width: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
  display: block;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,.08);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
  border: 1px solid rgba(var(--accent-rgb), .3);
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: .6rem;
  letter-spacing: -1px;
  color: #fff;
}
.hero h1 span { color: var(--accent); text-shadow: 0 2px 12px rgba(var(--accent-rgb), .4); }
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), .35), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero .btn-primary:hover {
  background: #e86a10;
  box-shadow: 0 8px 36px rgba(var(--accent-rgb), .5), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero .btn-outline {
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent;
  box-shadow: none;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.hero-stat p {
  font-size: .8rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .hero { min-height: 50vh; padding: 2rem 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 80px; }
  .hero-stat h3 { font-size: 1.5rem; }
  .hero-bg::after { background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.6) 100%); }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: .9rem; }
}

/* ===== SERVICES BANNER ===== */
.services-banner {
  padding: 1.75rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.services-banner-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollBanner 40s linear infinite;
}
.services-banner-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
  flex-shrink: 0;
}
.service-link {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}
.service-link::after {
  content: '·';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 400;
  pointer-events: none;
}
.service-link:last-child::after {
  display: none;
}
.service-link:nth-child(odd) {
  font-family: var(--font-heading);
}
.service-link:nth-child(even) {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px var(--text-muted);
  -webkit-text-fill-color: transparent;
  paint-order: stroke;
}
.service-link:hover {
  color: var(--accent);
}
.service-link:hover::after {
  color: var(--accent);
}
.service-link:nth-child(even):hover {
  -webkit-text-stroke-color: var(--accent);
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .service-link { font-size: 1.5rem; letter-spacing: 1px; }
  .service-link:nth-child(even) { -webkit-text-stroke: 1px var(--text-muted); }
  .services-banner-content { gap: 2rem; }
}

/* ===== TRANSPORT ===== */
.transport-section {
  padding: 6rem 0;
  text-align: center;
}
.transport-section .section-header {
  margin-bottom: 3rem;
}
.ab-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.ab-point {
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.ab-point:hover {
  border-color: rgba(var(--accent-rgb), .2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ab-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.ab-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: rgba(var(--accent-rgb), .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.ab-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.ab-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ab-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.ab-arrow-text {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-subtle);
  white-space: nowrap;
}
.transport-footer {
  margin-top: 2rem;
  text-align: center;
}
.transport-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.transport-tagline span {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .transport-section { padding: 4rem 0; }
  .ab-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ab-arrow { flex-direction: row; gap: .75rem; }
  .ab-arrow svg { transform: rotate(90deg); }
  .ab-point { padding: 1.5rem; }
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-alt);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .1), transparent 50%);
  z-index: -1;
}
.about-image .exp-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), .3);
}
.about-image .exp-badge strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  display: block;
}
.about-image .exp-badge span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-content .btn { margin-top: .5rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}
.about-stat p {
  font-size: .8rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover { border-color: rgba(var(--accent-rgb),.15); transform: translateY(-3px); box-shadow: var(--shadow); }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  font-weight: 600;
  border: 2px solid rgba(var(--accent-rgb), .15);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.step-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
@media (min-width: 769px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    opacity: .25;
    rotate: 45deg;
  }
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ===== BENEFITS ===== */
.benefits { background: var(--bg-alt); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--accent-rgb),.1); }
.benefit-card .icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent);
  width: 50px; height: 50px;
  background: rgba(var(--accent-rgb), .1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.benefit-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ===== CLIENTS LOGOS ===== */
.clients-section {
  padding: 4rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-track-wrap {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollClients 35s linear infinite;
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  flex-shrink: 0;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 280px;
  height: 160px;
}
.client-logo img {
  max-width: 400px;
  max-height: 160px;
  width: auto;
  height: auto;
  opacity: .5;
  transition: all var(--transition);
}
.client-logo img[src*="client-7"] {
  max-width: 120px;
  max-height: 50px;
}
.client-logo img[src*="client-cat"] {
  max-width: 160px;
  max-height: 70px;
}
.client-logo:hover img {
  opacity: 1;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .clients-track { gap: 1.5rem; }
}

[data-theme="dark"] .client-logo {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
}
[data-theme="dark"] .client-logo img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 2rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: .06;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(var(--accent-rgb),.5));
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author h4 { font-size: .95rem; font-weight: 600; }
.testimonial-author span {
  font-size: .8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}
.testimonial-controls button {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center; justify-content: center;
}
.testimonial-controls button:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2848 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(var(--accent-rgb),.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
}
.cta-section p {
  opacity: .75;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h3 {
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--footer-heading);
  margin-bottom: 1.25rem;
}
.footer-about p { font-size: .85rem; line-height: 1.7; color: var(--footer-text); max-width: 300px; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 42px; width: auto; }
.footer-logo .logo-dark { display: block; }
.footer-logo .logo-light { display: none; }
.footer-social { display: flex; gap: 8px; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--footer-text);
  font-size: .8rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--footer-text);
  font-size: .85rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: var(--footer-text);
}
.footer-contact .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .8;
}
.footer-contact a { color: var(--footer-text); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: .8rem;
  color: var(--footer-subtle);
}
.footer-bottom a { color: var(--footer-text); }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ===== FLEET PAGE ===== */
.fleet-intro { padding: 3rem 0 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 3rem 0 4rem; }
.fleet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { border-color: rgba(var(--accent-rgb),.15); transform: translateY(-3px); box-shadow: var(--shadow); }
.fleet-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.fleet-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .07);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fleet-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .25rem;
}
.fleet-tagline { font-size: .78rem; color: var(--text-muted); line-height: 1.4; display: block; }
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}
.fleet-spec {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}
.spec-label { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 2px; }
.spec-value { display: block; font-family: var(--font-heading); font-size: .85rem; color: var(--text); }
.fleet-use { color: var(--text-muted); font-size: .82rem; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.fleet-card .btn { margin-top: auto; align-self: flex-start; }
.fleet-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; justify-self: center; width: 100%; }
@media (max-width: 992px) { .fleet-grid { grid-template-columns: 1fr 1fr; } .fleet-card:last-child:nth-child(odd) { max-width: 100%; } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } .fleet-card:last-child:nth-child(odd) { max-width: 100%; } }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 3.5rem 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-subtle);
  margin-top: .5rem;
  align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== QUOTE FORM ===== */
.quote-section { padding: 4rem 0; }
.quote-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--text);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
  font-size: .82rem;
  color: var(--text-muted);
}
.form-consent label span { line-height: 1.5; }
.form-consent label a { color: var(--accent); text-decoration: underline; }
.form-consent input[type="checkbox"] { width: auto; margin-top: 2px; accent-color: var(--accent); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== MULTI-STEP QUOTE FORM ===== */
.quote-section { padding: 4rem 0; }
.quote-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.quote-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 1;
  max-width: 120px;
}
.quote-step::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.quote-step:last-child::after { display: none; }
.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.quote-step.active .step-dot,
.quote-step.completed .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.quote-step.completed .step-dot { background: #22c55e; border-color: #22c55e; }
.quote-step span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  font-weight: 500;
}
.quote-step.active span { color: var(--accent); }
.quote-step.completed span { color: #22c55e; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1.25rem;
}
.step-hint {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Stop blocks */
.stops-container { margin-bottom: .75rem; }
.stop-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 12px;
}
.stop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.stop-label {
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--accent);
}
.btn-remove-stop {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.btn-remove-stop:hover { border-color: #ef4444; color: #ef4444; }

.btn-add-stop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: .5rem;
}
.btn-add-stop:hover { border-color: var(--accent); background: rgba(var(--accent-rgb), .03); }

.form-asap label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 8px;
}
.form-asap input[type="checkbox"] { width: auto; accent-color: var(--accent); }
@media (max-width: 600px) {
  .quote-steps { flex-wrap: wrap; gap: 12px; }
  .quote-step { max-width: none; flex: 0 0 auto; }
  .quote-step::after { display: none; }
}

/* ===== SERVICES PAGE ===== */
.page-header-services {
  background: var(--bg-alt);
  padding: 6rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header-services h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: .75rem;
}
.page-header-services p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-header-services { padding: 4rem 0 2rem; }
  .page-header-services h1 { font-size: 2rem; }
}
.services-list { padding: 5rem 0 4rem; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .07);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-row-tag {
  font-family: var(--font-heading);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: .5rem;
  display: block;
}
.service-row-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: .75rem;
}
.service-row-content p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 640px;
}
@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .service-row-icon { width: 56px; height: 56px; }
  .service-row-icon svg { width: 28px; height: 28px; }
  .service-row-content h2 { font-size: 1.25rem; }
}
.service-row.reveal { transition: opacity .5s ease, transform .5s cubic-bezier(.25,.46,.45,.94); }
.service-row:nth-child(1).reveal { transition-delay: 0s; }
.service-row:nth-child(2).reveal { transition-delay: .1s; }
.service-row:nth-child(3).reveal { transition-delay: .2s; }
.service-row:nth-child(4).reveal { transition-delay: .3s; }
.service-row:nth-child(5).reveal { transition-delay: .4s; }
.service-row:nth-child(6).reveal { transition-delay: .5s; }
/* Process */
.process-section { background: var(--bg-alt); padding: 5rem 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.process-step { text-align: center; }
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  border: 2px solid rgba(var(--accent-rgb), .12);
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.process-step p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ===== INDUSTRIES & ITEMS (Service Detail Pages) ===== */
.industries-section { padding: 5rem 0; background: var(--bg-alt); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.industry-card:hover { border-color: rgba(var(--accent-rgb),.15); transform: translateY(-2px); box-shadow: var(--shadow); }
.industry-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .07);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.industry-card h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.industry-card p { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }
@media (max-width: 992px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }

.items-section { padding: 5rem 0; }
.items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.item-tag {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .85rem;
  color: var(--text);
  background: var(--card);
  transition: all var(--transition);
}
.item-tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover { border-color: rgba(var(--accent-rgb),.15); transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .07);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .4rem;
}
.contact-card p, .contact-card a { font-size: .85rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--accent); }
.contact-hours {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
}
.contact-hours span:last-child { font-weight: 500; color: var(--text); }
.map-wrapper {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.contact-form-wrapper > p { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.btn-block { width: 100%; justify-content: center; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-info-cards { grid-template-columns: 1fr; } }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image .category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: .78rem;
  color: var(--text-subtle);
  margin-bottom: .75rem;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.blog-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-card .btn { font-size: .78rem; padding: 8px 18px; }
@media (max-width: 992px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== BLOG ARTICLE ===== */
.blog-article { padding: 2rem 0 5rem; }
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.blog-category-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-date, .blog-read-time { font-size: .82rem; color: var(--text-muted); }
.blog-article-hero {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.blog-article-hero img { width: 100%; height: auto; display: block; }
.blog-article-content { max-width: 760px; margin: 0 auto; }
.blog-article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.blog-article-content h2:first-of-type { margin-top: 0; }
.blog-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.blog-list li {
  padding: 6px 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.blog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.blog-cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
}
.blog-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .5rem;
}
.blog-cta-box p { margin-bottom: 1.25rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--accent-rgb),.15); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pricing-card .vehicle-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: .25rem;
}
.pricing-card .price-sub {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-card ul li {
  padding: 6px 0;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section { padding: 4rem 0; }
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.faq-cat {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: .8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat:hover { border-color: rgba(var(--accent-rgb), .3); color: var(--accent); }
.faq-cat.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(var(--accent-rgb), .15); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question .arrow {
  font-size: .8rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

/* ===== MARQUEE ===== */
.marquee {
  padding: .85rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-heading);
  font-size: .9rem;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 2px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICE DETAIL ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-image img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.service-detail-content ul { margin-bottom: 1.5rem; }
.service-detail-content ul li {
  padding: 6px 0;
  font-size: .92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-detail-content ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-image { order: -1; }
}

/* ===== NATIONAL REACH ===== */
.national-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.national-map img {
  width: 100%;
  border-radius: var(--radius);
}
.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.region-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.region-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .5rem;
  color: var(--accent);
}
.region-card p { font-size: .85rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .national-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 3.5rem 0; }

  .testimonial-card { padding: 1.5rem; }
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 998;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-notice.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-notice-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .1);
  color: var(--accent);
  display: flex;
  align-items: center; justify-content: center;
}
.cookie-notice p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}
.cookie-notice .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cookie-notice { flex-direction: column; text-align: center; gap: 12px; left: 16px; right: 16px; }
  .cookie-notice-icon { display: none; }
}

/* ===== PRINT / PDF ===== */
@media print {
  .topbar, .header, .mobile-nav, .hamburger, .footer, .cta-section, .whatsapp-float, .cookie-notice,
  .breadcrumb, .section-tag, .section-sub, .fleet-intro .btn, .fleet-card .btn,
  .fleet-intro .section-header p, .loader { display: none !important; }
  .page-header { padding: 1rem 0; border-bottom: 2px solid #000; margin-bottom: 1.5rem; }
  .page-header h1 { font-size: 1.5rem; }
  .fleet-intro { padding: 0; }
  .fleet-intro .section-title { font-size: 1.1rem; margin-bottom: .5rem; }
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 1rem 0; }
  .fleet-card { break-inside: avoid; padding: 1rem; border-color: #ccc; box-shadow: none !important; transform: none !important; }
  .fleet-card:hover { transform: none !important; }
  .fleet-icon { width: 36px; height: 36px; }
  .fleet-icon svg { width: 22px; height: 22px; }
  .fleet-card h3 { font-size: .85rem; }
  .fleet-tagline { font-size: .7rem; }
  .fleet-specs { gap: 6px; }
  .fleet-spec { padding: 6px 4px; }
  .spec-label { font-size: .58rem; }
  .spec-value { font-size: .75rem; }
  .fleet-use { font-size: .72rem; margin-bottom: 0; }
  body { padding: 0; }
  .container { max-width: 100%; padding: 0 1.5rem; }
  @page { margin: 1.5cm; }
}
