:root {
  --navy: #0b1f3a;
  --navy-mid: #12305a;
  --navy-light: #1a4275;
  --gold: #c8922a;
  --gold-light: #e8ac3f;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --text-muted: #8a9bb5;
  --text-dark: #1a2636;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 52px; height: 40px;
  background: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
}
.nav-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-logo-text span {
  display: block; font-weight: 300; font-size: 11px;
  letter-spacing: 2px; color: var(--gold-light);
}

/* Desktop nav links — always visible on large screens */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Hamburger → X state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  z-index: 998;
  padding: 24px 5% 32px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav a:last-child {
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border-bottom: none;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: 72px; /* offset for fixed nav */
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,58,0.93) 0%, rgba(11,31,58,0.7) 55%, rgba(11,31,58,0.4) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: zoomOut 12s ease forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800; line-height: 1.05;
  color: var(--white);
  text-transform: uppercase; letter-spacing: -1px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  margin-top: 16px;
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.65;
  max-width: 520px;
  opacity: 0; animation: fadeUp 0.7s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 1.1s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 4px;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.hero-stats {
  display: flex; flex-wrap: wrap;
  margin: 20px 0 0 0;
  padding: 16px 0 100px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  opacity: 0; animation: fadeUp 0.8s 0.85s ease forwards;
  position: relative; z-index: 2;
}
.hero-stats.animated {
  opacity: 1;
}
.stat-item {
  flex: 1; min-width: 100px; padding: 12px 20px 12px 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 20px;
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   TRUST STRIP
══════════════════════════════ */
.trust-strip-wrapper {
  position: relative;
  background: var(--navy);
  padding: 0;
  margin-top: 32px;
}

/* Golden "Trusted by" badge sitting on top of the strip */
.trust-badge {
  position: absolute;
  top: -16px;
  left: 8%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(200,146,42,0.4);
}

.trust-strip {
  display: flex; align-items: center;
  overflow: hidden;
  padding: 28px 8%;
  padding-left: calc(8% + 140px); /* offset past the badge */
}
.trust-logos {
  display: flex; gap: 52px; align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s; cursor: default;
}
.trust-logos span:hover { color: var(--gold-light); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
section { padding: 100px 8%; }
.section-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800; text-transform: uppercase;
  color: var(--navy); line-height: 1; letter-spacing: -0.5px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-sub {
  margin-top: 18px;
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: #556; max-width: 580px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; height: 480px;
  object-fit: cover; border-radius: 8px; display: block;
}
.about-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); color: var(--navy);
  padding: 28px 32px; border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(200,146,42,0.35);
}
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 800; line-height: 1;
}
.about-badge-text {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
}
.about-content { padding-bottom: 20px; }
.about-list {
  margin-top: 32px; list-style: none;
  display: flex; flex-direction: column; gap: 16px;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.6; color: #445;
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex-shrink: 0;
}
.about-list li strong { color: var(--navy); font-weight: 700; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-intro { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  position: relative; overflow: hidden;
  height: 320px; cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover img { transform: scale(1.08); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px; transition: background 0.3s;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(11,31,58,0.98) 0%, rgba(11,31,58,0.6) 60%, rgba(11,31,58,0.2) 100%);
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700;
  text-transform: uppercase; color: var(--white); line-height: 1.1;
}
.service-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-top: 8px; line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.4s;
}
.service-card:hover .service-desc { max-height: 80px; }
.service-gold-line {
  width: 32px; height: 2px; background: var(--gold);
  margin-bottom: 10px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover .service-gold-line { transform: scaleX(1); }

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why { background: var(--navy); color: var(--white); }
.why .section-title { color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.why-image { position: relative; }
.why-image img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: 8px; display: block; position: relative; z-index: 1;
}
.why-image::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  border-radius: 8px; z-index: 0;
}
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point {
  display: flex; gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 800;
  color: rgba(200,146,42,0.2); line-height: 1;
  flex-shrink: 0; width: 60px;
}
.why-point-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.3px;
}
.why-point-body p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 6px;
}

/* ══════════════════════════════
   FLEET GALLERY
══════════════════════════════ */
.fleet-gallery { background: var(--off-white); }
.fleet-filters {
  display: flex; gap: 8px; margin: 40px 0 32px; flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--navy);
  background: transparent; color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white);
}
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.fleet-item {
  position: relative; overflow: hidden;
  border-radius: 6px; cursor: pointer; aspect-ratio: 4/3;
  transition: opacity 0.3s, transform 0.3s;
}
.fleet-item.hidden {
  opacity: 0; transform: scale(0.95); pointer-events: none;
  position: absolute; visibility: hidden;
}
.fleet-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.fleet-item:hover img { transform: scale(1.06); }
.fleet-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(11,31,58,0.85), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  color: var(--white); letter-spacing: 0.5px;
}

/* ══════════════════════════════
   CLIENTS
══════════════════════════════ */
.clients { background: var(--white); }
.clients-intro { text-align: center; }
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--navy);
  border: 2px solid var(--navy);
}
.client-item {
  background: var(--white);
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy-mid); text-align: center; line-height: 1.3;
  min-height: 80px;
  transition: background 0.2s, color 0.2s; cursor: default;
}
.client-item:hover { background: var(--navy); color: var(--gold-light); }

/* ══════════════════════════════
   REGISTRATIONS
══════════════════════════════ */
.registrations {
  background: var(--gold);
  padding: 60px 8%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.reg-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); letter-spacing: -0.3px;
}
.reg-content p { font-size: 14px; color: var(--navy); opacity: 0.75; margin-top: 6px; }
.reg-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.reg-badge {
  background: var(--navy); color: var(--white);
  padding: 10px 20px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact { background: var(--navy); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px;
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-item-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-item-value {
  font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.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: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px; padding: 14px 16px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--navy-mid); }
.form-submit {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 18px 40px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #080f1c;
  padding: 48px 8%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-left {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6;
}
.footer-left strong { color: rgba(255,255,255,0.6); font-weight: 700; }
.footer-right { display: flex; gap: 24px; }
.footer-right a {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-right a:hover { color: var(--gold-light); }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */


/* ══════════════════════════════
   TEAM
══════════════════════════════ */
.team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,146,42,0.12);
}
.team-initials {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  letter-spacing: 0.5px;
}
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.team-role {
  font-size: 12px; font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP
══════════════════════════════════════════════════════ */
@media (min-width: 1400px) {
  .hero-content { padding-top: 100px; max-width: 760px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MEDIUM DESKTOP / LAPTOP
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero h1 { font-size: clamp(38px, 4.5vw, 58px); }
  .hero-content { max-width: 600px; }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE / SMALL LAPTOP (960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { bottom: -20px; right: 0; }
  .why-image::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip { padding-left: 8%; padding-top: 36px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 6% 0; max-width: 100%; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); line-height: 1; }
  .hero-sub { font-size: 14px; margin-top: 12px; }
  .hero-tag { margin-bottom: 12px; }
  .hero-actions { margin-top: 20px; gap: 12px; }
  .btn-primary, .btn-outline { padding: 13px 24px; font-size: 12px; }

  /* Stats */
  .hero-stats { margin-top: 16px; padding-bottom: 80px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }
  .stat-item { padding: 10px 14px 10px 14px; min-width: 80px; }
  .stat-item:first-child { padding-left: 0; }

  /* Nav */
  nav { padding: 0 4%; height: 64px; }
  .nav-logo-text { font-size: 14px; }
  .nav-logo-text span { font-size: 9px; }

  /* Trust strip */
  .trust-strip-wrapper { margin-top: 20px; }
  .trust-badge { font-size: 9px; padding: 5px 12px; left: 5%; }
  .trust-strip { padding: 32px 5% 16px; }

  /* Sections */
  section { padding: 60px 6%; }
  .section-title { font-size: clamp(30px, 7vw, 46px); }
  .section-sub { font-size: 14px; }

  /* About */
  .about-grid { gap: 60px; }
  .about-image img { height: 300px; }
  .about-badge { bottom: -16px; right: 0; padding: 20px 22px; }
  .about-badge-num { font-size: 38px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 260px; }

  /* Why */
  .why-grid { gap: 32px; }
  .why-image img { height: 280px; }
  .why-num { font-size: 36px; width: 44px; }
  .why-point-body h3 { font-size: 18px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fleet-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .client-item { padding: 20px 12px; font-size: 13px; min-height: 60px; }

  /* Registrations */
  .registrations { padding: 40px 6%; flex-direction: column; gap: 24px; }
  .reg-content h2 { font-size: 26px; }
  .reg-badges { flex-wrap: wrap; gap: 10px; }

  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-item-value { font-size: 14px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-card { padding: 20px 14px 18px; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 32px 6%; }
  .footer-right { flex-wrap: wrap; gap: 14px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (480px)
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .hero-content { padding: 90px 5% 0; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }

  /* Stats — 2x2 grid on small phones */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 16px; padding-bottom: 70px; border-top: 1px solid rgba(255,255,255,0.15); }
  .stat-item { border-left: 1px solid rgba(255,255,255,0.12); padding: 12px 10px; }
  .stat-item:first-child { border-left: none; }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-num { font-size: 30px; }

  /* Nav */
  .nav-logo-text { display: none; }

  /* Sections */
  section { padding: 50px 5%; }
  .section-title { font-size: clamp(28px, 8vw, 38px); }

  /* Services */
  .service-card { height: 220px; }
  .service-name { font-size: 20px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Contact form */
  .form-submit { width: 100%; text-align: center; }

  /* Footer */
  .footer-right { gap: 12px; }
  .footer-right a { font-size: 10px; }
}
