/* ============================================================
   TURBO — Luxury Car Rental
   style.css
   Design: Yellow background, Red text — Turbo Car Rental Malaysia
           Barlow Condensed display / Barlow headings / Inter body
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours from the logo */
  --c-yellow:    #F5C800;   /* logo background yellow */
  --c-yellow-lt: #FFD700;
  --c-yellow-dk: #D4AC00;
  --c-red:       #CC1C1C;   /* logo "TURBO CAR RENTAL" red */
  --c-red-lt:    #E52020;
  --c-red-dk:    #A01515;

  /* Page surfaces — all yellow-tinted */
  --c-bg:        #F5C800;
  --c-surface:   #F0C200;
  --c-surface2:  #EBB900;
  --c-border:    #D4AC00;

  /* Text colours */
  --c-white:     #1a0a00;   /* use near-black for "white" text on yellow */
  --c-text:      #2a1000;
  --c-muted:     #7a4500;
  --c-heading:   #CC1C1C;   /* all headings in brand red */

  --c-green:     #1a7a2e;   /* WhatsApp green adjusted for yellow bg */

  /* Gold = red on this theme */
  --c-gold:      var(--c-red);
  --c-gold-lt:   var(--c-red-lt);
  --c-gold-dk:   var(--c-red-dk);

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-serif:   'Barlow', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1240px;
  --nav-h:        168px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red-dk);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--c-red);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title .dot { color: var(--c-red-dk); }

.section-sub {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--c-red);
  color: #fff;
}
.btn-gold:hover {
  background: var(--c-red-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(180, 20, 20, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 700;
}
.btn-outline:hover {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}

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

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: var(--c-yellow);
  border-bottom: 3px solid var(--c-red);
}

.navbar.scrolled {
  background: rgba(245, 200, 0, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(180, 20, 20, 0.18);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo image replaces text */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

/* Hide old text logo spans if they exist */
.logo-turbo, .logo-tagline { display: none; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red-dk);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--c-red); }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-green);
  flex-shrink: 0;
  transition: opacity var(--transition);
  background: rgba(0,80,0,0.08);
  padding: 7px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,100,0,0.2);
}
.nav-whatsapp:hover { opacity: 0.75; }

/* ── Language switcher ───────────────────────────────────────── */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}

.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-red-dk);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  padding: 7px 12px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.lang-switch-btn:hover {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.25);
}

.lang-switch-caret {
  transition: transform var(--transition);
}

.lang-switch.is-open .lang-switch-caret {
  transform: rotate(180deg);
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff9d6;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}

.lang-switch.is-open .lang-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  background: none;
  border: none;
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-option:hover {
  background: rgba(204, 28, 28, 0.08);
}

.lang-option.is-active {
  background: var(--c-red);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-red);
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center 45%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── HERO HEADLINE ────────────────────────────────────────── */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 2px 4px 0px rgba(0,0,0,0.3);
}

/* Single slot — JS slides one <span> out, swaps text, slides it back in */
.hero-headline .hero-animated-word {
  display: block;
  overflow: hidden;   /* clips the translateY slide so nothing bleeds out */
  line-height: 1.05;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  font-weight: 700;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── BOOKING BAR ──────────────────────────────────────────── */
.booking-bar {
  background: var(--c-surface);
  border-top: 2px solid var(--c-red);
  border-bottom: 2px solid var(--c-red);
}

.booking-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px;
}

.booking-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--c-red);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 160px;
}

.field-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red-dk);
}

.field-group select,
.field-group input[type="date"] {
  background: #fff9d6;
  border: 2px solid var(--c-red-dk);
  border-radius: var(--radius);
  color: var(--c-text);
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-weight: 500;
}

.field-group select:focus,
.field-group input[type="date"]:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(204, 28, 28, 0.15);
}

.booking-btn { flex-shrink: 0; align-self: flex-end; }

/* ── FLEET ────────────────────────────────────────────────── */
.fleet { background: var(--c-bg); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.car-card {
  background: #F5C800;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px rgba(180, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
  box-shadow: 0 16px 48px rgba(180, 20, 20, 0.2);
}

.car-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--c-red);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.car-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--c-yellow-dk);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  display: block;
}

.car-card:hover .car-img-wrap img { transform: scale(1.04); }

.car-img-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.car-card:hover .car-img-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ── CAR LIGHTBOX MODAL ──────────────────────────────────────── */
.car-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.car-modal.is-open {
  display: flex;
}

.car-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.82);
  backdrop-filter: blur(4px);
}

.car-modal-content {
  position: relative;
  z-index: 1;
  background: var(--c-surface, #111);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: carModalIn 0.25s ease;
}

/* Only this inner wrapper scrolls, so the close button (a direct child of
   car-modal-content) always stays pinned in the same spot on screen. */
.car-modal-scroll {
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes carModalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.car-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.car-modal-close:hover { background: var(--c-red); }

.car-modal-img-wrap {
  width: 100%;
  background: var(--c-yellow-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 60vh;
}

.car-modal-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

.car-modal-info {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.car-modal-badge {
  align-self: flex-start;
  background: var(--c-red);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.car-modal-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.car-modal-specs { display: flex; gap: 16px; }
.car-modal-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--c-muted);
  font-weight: 500;
}

@media (max-width: 600px) {
  .car-modal-img-wrap { max-height: 40vh; }
  .car-modal-img-wrap img { max-height: 40vh; }
  .car-modal-name { font-size: 1.3rem; }
}

.car-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.car-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.car-price { display: flex; flex-direction: column; gap: 2px; }

.price-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--c-red-dk);
  line-height: 1;
}
.price-value em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-muted);
  margin-left: 4px;
}

.car-info .btn-full { margin-top: auto; }

.car-specs { display: flex; gap: 16px; }
.car-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 500;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features { background: var(--c-surface); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 72px;
}

.feature-card {
  background: #fff9cc;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(180, 20, 20, 0.06);
}

.feature-card:hover {
  border-color: var(--c-red);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(204, 28, 28, 0.1);
  border: 2px solid rgba(204, 28, 28, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-red);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
  color: #7a4500;
}

/* Brands Marquee */
.brands-marquee-wrap {
  overflow: hidden;
  border-top: 2px solid var(--c-red-dk);
  padding: 40px 0 40px;
  position: relative;
  background: rgba(0,0,0,0.25);
}

.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--c-surface), transparent);
}
.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--c-surface), transparent);
}

.brands-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.brands-track span {
  padding: 0 56px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.brands-track span:hover { transform: scale(1.08); }

.brand-logo-img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
  mix-blend-mode: screen;
  transition: opacity var(--transition), transform var(--transition);
}
.brands-track span:hover .brand-logo-img {
  opacity: 0.8;
  transform: scale(1.1);
}

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

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works { background: var(--c-bg); }

.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.hiw-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-red-dk);
}

.hiw-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.hiw-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(204, 28, 28, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  margin-top: 2px;
}

.hiw-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-red);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hiw-step p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.hiw-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.req-list li {
  font-size: 0.9rem;
  color: var(--c-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
}

.req-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-style: italic;
  padding: 12px 14px;
  border-left: 3px solid var(--c-red-dk);
  background: rgba(204, 28, 28, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { background: var(--c-surface); }

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff9cc;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(180, 20, 20, 0.06);
}

.contact-card:hover {
  border-color: var(--c-red);
  transform: translateX(3px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon--green {
  background: rgba(0, 100, 30, 0.1);
  color: var(--c-green);
  border: 2px solid rgba(0, 100, 30, 0.25);
}

.contact-icon--gold {
  background: rgba(204, 28, 28, 0.1);
  color: var(--c-red);
  border: 2px solid rgba(204, 28, 28, 0.3);
}

.contact-icon--red {
  background: rgba(204, 28, 28, 0.1);
  color: var(--c-red);
  border: 2px solid rgba(204, 28, 28, 0.3);
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-red);
}



.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red-dk);
}

.optional {
  font-size: 0.65rem;
  color: var(--c-muted);
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  background: var(--c-yellow-lt);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition);
  font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(204, 28, 28, 0.15);
}

.form-note {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
}

.form-note a { color: var(--c-red); }
.form-note a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--c-red);
  border-top: 4px solid var(--c-red-dk);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-yellow);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-slogan {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-yellow);
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-contact-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(245, 200, 0, 0.75);
  transition: color var(--transition);
}
.footer-contact-row a:hover { color: var(--c-yellow); }

.footer-links h4,
.footer-social h4,
.footer-contact-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 18px;
  opacity: 0.8;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 200, 0, 0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-yellow); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245, 200, 0, 0.7);
  transition: color var(--transition);
}
.social-links a:hover { color: var(--c-yellow); }

.footer-contact-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-col a {
  font-size: 0.875rem;
  color: rgba(245, 200, 0, 0.7);
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--c-yellow); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(245, 200, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 200, 0, 0.65);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(245, 200, 0, 0.65);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--c-yellow); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ── AOS ──────────────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .hiw-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 140px; }

  .nav-logo img { height: 124px; }

  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--c-yellow);
    border-bottom: 3px solid var(--c-red);
    padding: 24px 32px 36px;
    gap: 20px;
  }
  .nav-links a { font-size: 1rem; }

  .nav-whatsapp { display: none; }
  .lang-switch { margin-left: auto; }
  .lang-switch-btn { padding: 6px 9px; font-size: 0.72rem; }
  .hamburger { display: flex; margin-left: 12px; }

  .section-inner { padding: 64px 20px; }
  .booking-inner { padding: 36px 20px; }

  .booking-fields { flex-direction: column; align-items: stretch; }
  .field-group { flex: unset; width: 100%; }
  .field-group select,
  .field-group input[type="date"] { width: 100%; }
  .booking-btn { width: 100%; justify-content: center; }

  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-headline { font-size: clamp(2rem, 9vw, 3.2rem); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-scroll { animation: none; }
}

/* ===================== CONTACT NOW (no-form) ===================== */
.contact-now-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.contact-now-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-border);
  background: #fff9cc;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 3px 12px rgba(180, 20, 20, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-now-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.contact-now-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(180, 20, 20, 0.14);
}

/* WhatsApp accent */
.contact-now-card--whatsapp { border-color: rgba(37, 168, 86, 0.4); }
.contact-now-card--whatsapp:hover { border-color: #25a856; }
.contact-now-card--whatsapp .contact-now-icon { background: rgba(37, 168, 86, 0.12); color: #1a8c45; border: 2px solid rgba(37, 168, 86, 0.3); }
.contact-now-card--whatsapp .contact-now-action { color: #1a8c45; }

/* Call accent */
.contact-now-card--call { border-color: rgba(204, 28, 28, 0.3); }
.contact-now-card--call:hover { border-color: var(--c-red); }
.contact-now-card--call .contact-now-icon { background: rgba(204, 28, 28, 0.1); color: var(--c-red); border: 2px solid rgba(204, 28, 28, 0.25); }
.contact-now-card--call .contact-now-action { color: var(--c-red); }

/* Email accent */
.contact-now-card--email { border-color: rgba(204, 28, 28, 0.3); }
.contact-now-card--email:hover { border-color: var(--c-red); }
.contact-now-card--email .contact-now-icon { background: rgba(204, 28, 28, 0.1); color: var(--c-red); border: 2px solid rgba(204, 28, 28, 0.25); }
.contact-now-card--email .contact-now-action { color: var(--c-red); }

/* Location accent */
.contact-now-card--location { border-color: rgba(204, 28, 28, 0.3); }
.contact-now-card--location:hover { border-color: var(--c-red); }
.contact-now-card--location .contact-now-icon { background: rgba(204, 28, 28, 0.1); color: var(--c-red); border: 2px solid rgba(204, 28, 28, 0.25); }
.contact-now-card--location .contact-now-action { color: var(--c-red); }

.contact-now-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-now-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-now-action {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-now-detail {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-now-hint {
  font-size: 0.75rem;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .contact-now-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .contact-now-card {
    padding: 20px 18px;
    gap: 14px;
  }
  .contact-now-icon {
    width: 48px;
    height: 48px;
  }
  .contact-now-icon svg {
    width: 24px;
    height: 24px;
  }
  .contact-now-detail {
    font-size: 0.92rem;
  }
}
