:root {
  --bg: #0b1f1e;
  --bg-soft: #112523;
  --surface: #162e2b;
  --surface-soft: rgba(22, 46, 43, 0.88);
  --text: #e6f4e0;
  --muted: #8fba78;
  --line: rgba(255, 255, 255, 0.07);
  --primary: #bfec2c;
  --primary-strong: #a8d41c;
  --primary-dark: #92bd00;
  --dark: #060f0d;
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(11, 31, 30, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.logo-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(191, 236, 44, 0.3);
}

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

.logo-text strong {
  font-size: 1rem;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  min-width: 44px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(191, 236, 44, 0.25);
}

.header-cta,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #0b1f1e;
  box-shadow: 0 16px 34px rgba(191, 236, 44, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(191, 236, 44, 0.14);
  border: 1px solid rgba(191, 236, 44, 0.2);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 12ch;
  background: linear-gradient(165deg, #ffffff 30%, #bfec2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h2 {
  margin: 0 0 16px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-text {
  max-width: 62ch;
  margin: 0 0 28px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.main-photo {
  min-height: 420px;
}

.main-photo img {
  min-height: 420px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-card.mini {
  min-height: 210px;
}

.hero-card.mini img {
  min-height: 210px;
}

.highlight-card {
  display: flex;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, rgba(191, 236, 44, 0.18), rgba(22, 46, 43, 0.95));
}

.highlight-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.highlight-content p {
  margin: 0;
  color: var(--muted);
}

.highlight-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(191, 236, 44, 0.18);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
  border: 1px solid rgba(191, 236, 44, 0.25);
}

.trust-bar {
  padding: 0 0 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  color: var(--text);
}

.fleet-section,
.solutions-section,
.booking-section,
.faq-section {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 780px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading h3 {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.06rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vehicle-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 46, 43, 0.9);
  border: 1px solid rgba(191, 236, 44, 0.2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-body h4 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.16;
}

.vehicle-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.vehicle-features li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vehicle-footer strong {
  font-size: 1rem;
}

.vehicle-footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(191, 236, 44, 0.1);
  border: 1px solid rgba(191, 236, 44, 0.25);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.vehicle-footer a:hover {
  background: rgba(191, 236, 44, 0.22);
  border-color: rgba(191, 236, 44, 0.5);
  box-shadow: 0 0 18px rgba(191, 236, 44, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  color: var(--primary);
}

.solutions-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.solutions-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card,
.faq-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.solution-card h4,
.faq-card h4 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.solution-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.booking-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.booking-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.booking-points {
  display: grid;
  gap: 12px;
}

.booking-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.booking-form-wrap {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.booking-form-wrap h3 {
  margin: 0 0 20px;
  font-size: 1.6rem;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(191, 236, 44, 0.55);
  box-shadow: 0 0 0 4px rgba(191, 236, 44, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  padding: 74px 0 24px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-logo .logo-mark {
  box-shadow: none;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

/* ─────────────── COMPONENTS ─────────────── */

/* ── Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  z-index: 200;
  background: #0e2624;
  padding: 28px 22px;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.5);
}

body.nav-open .mobile-nav { display: flex; }
body.nav-open .mobile-nav-overlay { display: block; }
body.nav-open { overflow: hidden; }

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.15s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--bg-soft);
}

.mobile-nav .btn-primary {
  margin-top: 8px;
  color: #102008;
}

/* ── Logo image */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-img--footer {
  height: 30px;
  opacity: 0.88;
}

.logo-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-logo .logo-img {
  opacity: 0.85;
}

/* ── Vehicle image link wrapper */
.vehicle-img-link { display: block; }

.vehicle-title-db {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.16;
}

.vehicle-text-db {
  margin: 0 0 16px;
  color: var(--muted);
}

.vehicle-primary-link {
  color: inherit;
  text-decoration: none;
}

.vehicle-primary-link:hover { color: var(--primary-dark); }

/* ── Honeypot */
.hp-field { display: none !important; }

/* ── Footer legal */
.footer-legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
}

.legal-grid div { display: flex; flex-direction: column; }

.legal-grid dt {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 2px;
}

.legal-grid dd {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* ─────────────── RESPONSIVE BREAKPOINTS ─────────────── */

/* 1180px — large tablet / small laptop
   Two-column grids. Book Now button hidden, hamburger shown. */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  /* Hide desktop nav + CTA, show hamburger */
  .main-nav { display: none; }
  .header-actions .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* 900px — tablet portrait */
@media (max-width: 900px) {
  .hero-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero { padding: 36px 0 52px; }
  .hero-visual { display: none; }
  .hero-content h1 { max-width: none; }

  .fleet-section,
  .solutions-section,
  .booking-section,
  .faq-section {
    padding: 60px 0;
  }
}

/* 768px — mobile landscape / large phone */
@media (max-width: 768px) {
  /* Header — single tight row */
  .header-inner {
    min-height: 64px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .header-actions { flex-shrink: 0; }

  .lang-switch {
    padding: 3px;
    gap: 2px;
  }

  .lang-btn {
    min-width: 34px;
    height: 30px;
    font-size: 0.76rem;
  }

  /* Hero */
  .hero { padding: 24px 0 38px; }

  .hero-content h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    letter-spacing: -0.02em;
  }

  .hero-content h2 { font-size: 1rem; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-card { padding: 12px 10px; }
  .stat-card strong { font-size: 1rem; }
  .stat-card span { font-size: 0.68rem; }

  /* Sections */
  .fleet-section,
  .solutions-section,
  .booking-section,
  .faq-section {
    padding: 44px 0;
  }

  .trust-bar { padding-bottom: 12px; }

  .section-heading { margin-bottom: 22px; }
  .section-heading h2 { font-size: clamp(1.65rem, 6vw, 2.3rem); }
  .section-heading h3 { font-size: 0.98rem; }

  /* Fleet — 1 column on mobile */
  .fleet-grid { grid-template-columns: 1fr; }

  /* FAQ — 1 column on mobile */
  .faq-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-copy h2 { font-size: clamp(1.65rem, 6vw, 2.3rem); }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 48px 0 20px; }
}

/* 600px — medium phones */
@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .fleet-section,
  .solutions-section,
  .booking-section,
  .faq-section {
    padding: 40px 0;
  }
}

/* 480px — small phones */
@media (max-width: 480px) {
  .container { width: min(100% - 20px, var(--container)); }

  .hero { padding: 20px 0 32px; }

  .hero-content h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.3rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-card { padding: 14px 16px; }
  .stat-card strong { font-size: 1.1rem; }
  .stat-card span { font-size: 0.78rem; }

  .trust-grid { grid-template-columns: 1fr; gap: 8px; }

  .fleet-section,
  .solutions-section,
  .booking-section,
  .faq-section {
    padding: 36px 0;
  }

  .section-heading h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .section-heading { margin-bottom: 18px; }

  .vehicle-body { padding: 16px; }
  .vehicle-body h4 { font-size: 1.1rem; }

  .booking-form-wrap { padding: 18px 16px; }
  .booking-form-wrap h3 { font-size: 1.3rem; }

  .solution-card,
  .faq-card,
  .vehicle-card,
  .trust-item,
  .stat-card {
    border-radius: 16px;
  }

  .legal-grid { grid-template-columns: 1fr; }

  .booking-points { gap: 8px; }
  .booking-point { padding: 13px 15px; }
}

/* 380px — very small phones */
@media (max-width: 380px) {
  .logo-img { height: 34px; }

  .lang-btn {
    min-width: 30px;
    height: 28px;
    font-size: 0.7rem;
  }

  .hero-content h1 { font-size: clamp(1.6rem, 9vw, 2rem); }

  .booking-form-wrap { padding: 14px 12px; }

  .btn { min-height: 48px; padding: 0 16px; font-size: 0.94rem; }

  .solution-card,
  .faq-card { padding: 18px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}