/* ═══════════════════════════════════════════════════
   YUKICAR — MAIN STYLESHEET
   Brand: #001C54 (navy) · #F5AF02 (gold)
   ═══════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --navy: #001C54;
  --navy-dark: #001040;
  --navy-mid: #002580;
  --gold: #F5AF02;
  --gold-dark: #d49700;
  --gold-light: #ffd04d;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f0f2f5;
  --gray-100: #e4e6eb;
  --gray-300: #bcc0cc;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10b981;
  --error: #ef4444;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 28, 84, .10);
  --shadow-lg: 0 10px 40px rgba(0, 28, 84, .15);
  --shadow-xl: 0 20px 60px rgba(0, 28, 84, .20);

  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block
}

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem)
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem)
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem)
}

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem
}

.text-accent {
  color: var(--gold)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold)
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 175, 2, .35)
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px)
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7)
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px)
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35)
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: 1.05rem
}

.btn-sm {
  padding: .45rem 1rem;
  font-size: .85rem
}

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

/* ═══════════════ SECTION HEADERS ═══════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem
}

.section-header--light h2 {
  color: var(--white)
}

.section-header--light p {
  color: rgba(255, 255, 255, .75)
}

.section-tag {
  display: inline-block;
  background: rgba(245, 175, 2, .15);
  color: var(--gold-dark);
  border: 1px solid rgba(245, 175, 2, .3);
  padding: .25rem .9rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-header--light .section-tag {
  background: rgba(255, 255, 255, .15);
  color: var(--gold);
  border-color: rgba(245, 175, 2, .4)
}

.section-header p {
  color: var(--gray-500);
  max-width: 560px;
  margin-inline: auto;
  margin-top: .5rem
}

/* ═══════════════ FORMS ═══════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1
}

.form-group--sm {
  flex: 0 0 140px
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700)
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.form-row--align-end {
  align-items: flex-end
}

.input-icon {
  position: relative
}

.input-icon i {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  pointer-events: none;
  font-size: .9rem
}

.input-icon input,
.input-icon select {
  width: 100%;
  padding: .7rem .9rem .7rem 2.4rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-icon input:focus,
.input-icon select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 175, 2, .15)
}

.input-icon select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  padding-right: 2.2rem
}

.field-error {
  font-size: .78rem;
  color: var(--error);
  min-height: 1rem
}

.form-group.has-error .input-icon input,
.form-group.has-error .input-icon select,
.form-group.has-error textarea {
  border-color: var(--error)
}

textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition)
}

textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 175, 2, .15)
}

/* ═══════════════ PROMO MODAL ═══════════════ */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 40, .6);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(4px);
}

.promo-overlay.active {
  opacity: 1;
  pointer-events: all
}

.promo-modal {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 901;
  width: min(540px, 94vw);
  background: var(--navy);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-xl);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.promo-modal.active {
  transform: translateX(-50%) translateY(0)
}

.promo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .9rem;
  transition: background var(--transition);
}

.promo-close:hover {
  background: rgba(255, 255, 255, .25)
}

.promo-inner {
  text-align: center;
  color: var(--white)
}

.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .2rem .8rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-modal h2 {
  font-size: 1.8rem;
  margin-bottom: .75rem
}

.promo-highlight {
  color: var(--gold)
}

.promo-modal p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.5rem
}

.promo-modal .btn-whatsapp {
  font-size: 1.05rem;
  padding: .8rem 2rem
}

/* ═══════════════ COOKIE BANNER ═══════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2.5rem));
  z-index: 800;
  width: min(640px, 94vw);
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .35s ease;
  border: 1px solid rgba(245, 175, 2, .2);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%
}

.cookie-inner p {
  font-size: .875rem;
  flex: 1;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85)
}

.cookie-inner a {
  color: var(--gold);
  text-decoration: underline
}

.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0
}

/* ═══════════════ HEADER / NAV ═══════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: .9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(0, 16, 64, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
  padding: .6rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.nav-logo {
  display: flex;
  align-items: center
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em
}

.logo-accent {
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto
}

.nav-link {
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0
}

/* ── Language switcher — elegant select ── */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, .08);
  /* gold chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23F5AF02'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .55rem center;
  background-size: 8px 5px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  min-width: 56px;
  outline: none;
  padding: .35rem 1.55rem .35rem .65rem;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.lang-select:hover {
  background-color: rgba(255, 255, 255, .14);
  border-color: rgba(245, 175, 2, .65);
}

.lang-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 175, 2, .2);
}

.lang-select option {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.lang-sep {
  color: rgba(255, 255, 255, .3);
  font-size: .75rem
}

.nav-cta {
  padding: .55rem 1.2rem;
  font-size: .9rem
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .1);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, .2)
}

.hamburger span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition)
}

.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)
}

/* Close button — hidden on desktop */
.nav-close-item {
  display: none
}

/* Mobile nav */
@media(max-width:900px) {
  .hamburger {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: .25rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, .3);
    transition: right var(--transition-slow);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0
  }

  .nav-link {
    font-size: 1.05rem;
    padding: .6rem .9rem;
    width: 100%
  }

  .nav-cta {
    display: none
  }

  /* Close button inside panel */
  .nav-close-item {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
  }

  .nav-close-btn {
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    cursor: pointer;
  }

  .nav-close-btn:hover {
    background: rgba(255, 255, 255, .25)
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001040 0%, #001C54 40%, #002580 70%, #001C54 100%);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 175, 2, .08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 175, 2, .05) 0%, transparent 60%);
}

/* Particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 175, 2, .2);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: .8
  }

  50% {
    opacity: .3
  }

  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-text {
  color: var(--white)
}

.hero-tag {
  display: inline-block;
  background: rgba(245, 175, 2, .2);
  border: 1px solid rgba(245, 175, 2, .35);
  color: var(--gold);
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  width: fit-content;
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1
}

.stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  margin-top: .35rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
  margin: 0
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.5s ease infinite;
  box-shadow: 0 0 0 0 rgba(245, 175, 2, .4);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(245, 175, 2, .4)
  }

  50% {
    transform: translateY(8px);
    box-shadow: 0 0 0 8px rgba(245, 175, 2, 0)
  }
}

/* ═══════════════ BOOKING SECTION ═══════════════ */
.booking-section {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding-bottom: 3rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.booking-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-100);
  background: var(--gray-50);
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--navy);
  background: var(--white)
}

.tab-btn.active {
  border-bottom-color: var(--gold)
}

.booking-form {
  padding: 1.75rem
}

/* ═══════════════ WHY SECTION ═══════════════ */
.why-section {
  padding: 5rem 0;
  background: var(--off-white)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

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

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 28, 84, .25);
}

.why-icon i {
  font-size: 1.4rem;
  color: var(--gold)
}

.why-card h3 {
  margin-bottom: .6rem;
  font-size: 1.1rem
}

.why-card p {
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.6
}

/* ═══════════════ FLEET SECTION ═══════════════ */
.fleet-section {
  padding: 5rem 0;
  background: var(--white)
}

.fleet-filters {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: .5rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid var(--gray-100);
  color: var(--gray-500);
  background: var(--white);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy)
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Car Card */
.car-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.car-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md)
}

.car-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.car-badge.economy {
  background: #e8f5e9;
  color: #2e7d32
}

.car-badge.suv {
  background: #e3f2fd;
  color: #1565c0
}

.car-badge.luxury {
  background: #fce4ec;
  color: #c62828
}

.car-badge.van {
  background: #f3e5f5;
  color: #6a1b9a
}

.car-featured-ribbon {
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-dark);
  padding: .25rem .9rem .25rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  box-shadow: 0 2px 8px rgba(245, 175, 2, .4);
}

.car-img-wrap {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  padding: 2.5rem 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  position: relative;
}

.car-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.car-img {
  max-height: 140px;
  transition: transform var(--transition);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .15));
}

.car-card:hover .car-img {
  transform: scale(1.06) translateY(-4px)
}

.car-info {
  padding: 1.25rem
}

.car-name {
  font-size: 1.1rem;
  margin-bottom: .2rem
}

.car-category {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .8rem
}

.car-specs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem
}

.car-specs li {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: .2rem .55rem;
  border-radius: var(--radius-sm);
}

.car-specs i {
  color: var(--navy);
  font-size: .75rem
}

.car-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: 1rem;
}

.price-from {
  font-size: .78rem;
  color: var(--gray-500)
}

.price-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1
}

.price-unit {
  font-size: .78rem;
  color: var(--gray-500)
}

/* Hidden cards when filtered */
.car-card.hidden {
  display: none
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: background var(--transition), transform var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px)
}

.step-connector {
  color: rgba(255, 255, 255, .3);
  font-size: 1.4rem;
  padding: 0 .75rem;
  align-self: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 175, 2, .2);
  line-height: 1;
  margin-bottom: .5rem;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 175, 2, .2), rgba(245, 175, 2, .1));
  border: 1px solid rgba(245, 175, 2, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
}

.step-icon i {
  font-size: 1.3rem;
  color: var(--gold)
}

.step-card h3 {
  margin-bottom: .5rem;
  font-size: 1.05rem
}

.step-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--off-white)
}

.testimonials-slider {
  overflow: hidden
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.t-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .75rem
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-size: .95rem;
  quotes: "\201C" "\201D";
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.4em;
  margin-right: .15em
}

.t-author {
  display: flex;
  align-items: center;
  gap: .85rem
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: .9rem;
  color: var(--gray-900)
}

.t-author span {
  font-size: .8rem;
  color: var(--gray-500)
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--navy-dark)
}

.slider-dots {
  display: flex;
  gap: .5rem
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--navy);
  transform: scale(1.3)
}

/* ═══════════════ BLOG ═══════════════ */
.blog-section {
  padding: 5rem 0;
  background: var(--white)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-img-link {
  display: block;
  overflow: hidden
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow)
}

.blog-card:hover .blog-img-placeholder {
  transform: scale(1.06)
}

.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 28, 84, .4) 100%);
}

.blog-img-1 {
  background-color: #1a3a6b;
  background-image:
    url('../images/blog/Top_5_Rutas_de_Road_Trip_en_Mexico.png');
  /* background-image:
    linear-gradient(135deg, rgba(0, 28, 84, 0.7) 0%, rgba(0, 48, 128, 0.7) 50%, rgba(0, 28, 84, 0.7) 80%),
    url('../images/blog/Top_5_Rutas_de_Road_Trip_en_Mexico.png'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blog-img-2 {
  background-color: #2d4a1e;
  background-image: url('../images/blog/Seguro_de_Renta_en_Mexico.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blog-img-3 {
  background-color: #4a1a00;
  background-image: url('../images/blog/10_Consejos_para_Manejar_en_Mexico_por_Primera_Vez.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blog-content {
  padding: 1.5rem
}

.blog-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(0, 28, 84, .08);
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  line-height: 1.4
}

.blog-card h3 a {
  color: var(--gray-900);
  transition: color var(--transition)
}

.blog-card h3 a:hover {
  color: var(--navy)
}

.blog-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--gray-500)
}

.blog-read-more {
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition)
}

.blog-read-more:hover {
  gap: .55rem;
  color: var(--gold-dark)
}

.blog-cta {
  text-align: center
}

/* ═══════════════ LOCATIONS ═══════════════ */
.locations-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.location-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: var(--transition);
}

.location-item:hover,
.location-item.active {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(245, 175, 2, .4);
  color: var(--white);
}

.location-item.active i {
  color: var(--gold)
}

.location-item i {
  font-size: 1.1rem;
  color: rgba(245, 175, 2, .5);
  flex-shrink: 0
}

.location-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .15rem;
  color: var(--white)
}

.location-item span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55)
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 320px
}

.location-map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .4);
}

.location-map-placeholder i {
  font-size: 3rem
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-section {
  padding: 5rem 0;
  background: var(--off-white)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 28, 84, .2);
}

.contact-item strong {
  display: block;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: .2rem
}

.contact-item a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition)
}

.contact-item a:hover {
  color: var(--gold-dark)
}

.contact-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px)
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form .form-group {
  margin-bottom: 1.25rem
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 175, 2, .12);
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .75)
}

.footer-top {
  padding: 4rem 0 3rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem
}

.footer-social {
  display: flex;
  gap: .65rem
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold)
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-col a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition)
}

.footer-col a:hover {
  color: var(--gold)
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-full);
  padding: .35rem .35rem .35rem .9rem;
  overflow: hidden;
}

.newsletter-form input {
  background: transparent;
  border: none;
  flex: 1;
  color: var(--white);
  font-size: .875rem;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.newsletter-form input:focus {
  outline: none
}

.newsletter-form button {
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-dark)
}

.footer-bottom {
  background: rgba(0, 0, 0, .2);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45)
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem
}

.footer-legal-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition)
}

.footer-legal-links a:hover {
  color: var(--gold)
}

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6)
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all
}

/* Pulse ring */
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: waPulse 2s ease infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .9
  }

  70% {
    transform: scale(1.5);
    opacity: 0
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--gray-900);
  color: var(--white);
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
}

/* ═══════════════ BACK TO TOP ═══════════════ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 600;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px)
}

/* ═══════════════ AOS ANIMATIONS ═══════════════ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: .7s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

[data-aos="fade-up"] {
  transform: translateY(30px)
}

[data-aos="fade-right"] {
  transform: translateX(-30px)
}

[data-aos="fade-left"] {
  transform: translateX(30px)
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-newsletter {
    grid-column: 1/-1
  }
}

@media(max-width:900px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem
  }

  .stat-item {
    padding: 0 1.25rem
  }

  .steps-grid {
    flex-direction: column;
    align-items: stretch
  }

  .step-connector {
    transform: rotate(90deg);
    padding: .5rem 0;
    text-align: center
  }

  .locations-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .testimonial-card {
    flex: 0 0 calc(50% - .75rem)
  }
}

@media(max-width:700px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-stats {
    width: 100%
  }

  .stat-item {
    flex: 1
  }

  .form-group--sm {
    flex: 0 0 100%
  }

  .testimonial-card {
    flex: 0 0 90%
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

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

  .footer-brand {
    grid-column: 1/-1
  }
}

@media(max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: unset
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .booking-form {
    padding: 1.25rem
  }

  .form-row {
    flex-direction: column
  }

  .form-group--sm {
    flex: unset
  }
}

/* ═══════════════════════════════════════════════════
   ADDITIONS v2 — new sections & components
   ═══════════════════════════════════════════════════ */

/* ── Hero background image ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .55;
}

/* ── Hero trust badges ── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
}

.hero-trust i {
  color: var(--gold);
  font-size: .85rem
}

/* ── Booking form header ── */
.booking-header {
  padding: 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

.booking-header h2 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.booking-header h2 i {
  color: var(--navy);
  font-size: 1rem
}

.booking-header p {
  font-size: .875rem;
  color: var(--gray-500)
}

/* ── Days preview ── */
.days-preview {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(245, 175, 2, .1);
  border: 1px solid rgba(245, 175, 2, .3);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  font-size: .875rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: .25rem;
}

.days-preview i {
  color: var(--gold-dark)
}

/* ── Other destination note ── */
.booking-other-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0, 28, 84, .05);
  border: 1px solid rgba(0, 28, 84, .1);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .82rem;
  color: var(--gray-700);
  margin-top: .5rem;
}

.booking-other-note i {
  color: var(--navy);
  flex-shrink: 0
}

/* ── Submit row ── */
.form-row--submit {
  margin-top: .5rem
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.1rem
}

/* ── Language switcher (desktop nav context — inherited from .nav-actions) ── */

/* ── INCLUDES SECTION ── */
.includes-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.includes-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background var(--transition), transform var(--transition);
}

.includes-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px)
}

.includes-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 175, 2, .2);
  border: 1px solid rgba(245, 175, 2, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.includes-icon i {
  font-size: 1.3rem;
  color: var(--gold)
}

.includes-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  line-height: 1.5;
}

.includes-list>li>i.fa-check-circle {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0
}

.includes-list>li>i.fa-plane-arrival,
.includes-list>li>i.fa-user-plus,
.includes-list>li>i.fa-birthday-cake,
.includes-list>li>i.fa-road,
.includes-list>li>i.fa-credit-card,
.includes-list>li>i.fa-money-bill-wave {
  color: var(--gold);
  font-size: .95rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.includes-list strong {
  color: var(--white)
}

.payment-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, .4);
}

/* ── Fleet extras ── */
.car-model-alt {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
  min-height: 1.1rem;
}

.car-price-wrap {
  margin-bottom: 1rem
}

.price-currency {
  font-size: .78rem;
  color: var(--gray-500);
  margin-left: .1rem;
}

.fleet-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

.fleet-note i {
  color: var(--navy);
  flex-shrink: 0
}

/* ── Car badge extra colors ── */
.car-badge.sedan {
  background: #e8f5e9;
  color: #2e7d32
}

.car-badge.minivan {
  background: #fff3e0;
  color: #e65100
}

.car-badge.minivan8 {
  background: #fce4ec;
  color: #ad1457
}

/* ── DESTINATIONS SECTION ── */
.destinations-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.destinations-text {
  color: var(--white)
}

.destinations-text h2 {
  color: var(--white);
  margin: .75rem 0 1rem
}

.destinations-text p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.destinations-text strong {
  color: var(--white)
}

.section-tag--light {
  background: rgba(255, 255, 255, .1);
  color: var(--gold);
  border-color: rgba(245, 175, 2, .3);
}

.dest-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}

.dest-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.dest-list i {
  color: var(--gold);
  font-size: .85rem
}

.destinations-locations {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.dest-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
  cursor: pointer;
}

.dest-location:hover,
.dest-location.active {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(245, 175, 2, .4);
}

.dest-loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(245, 175, 2, .15);
  border: 1px solid rgba(245, 175, 2, .3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-loc-icon i {
  font-size: 1rem;
  color: var(--gold)
}

.dest-location strong {
  display: block;
  color: var(--white);
  margin-bottom: .15rem;
  font-size: .95rem
}

.dest-location span,
.dest-location a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55)
}

.dest-location a {
  color: var(--gold);
  transition: color var(--transition)
}

.dest-location a:hover {
  color: var(--gold-light)
}

.dest-location--other {
  border-style: dashed
}

/* ── Pax field & hint ── */
.form-row--pax {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group--pax {
  flex: 0 0 200px;
  min-width: 160px;
}

.pax-hint {
  display: none;
  flex: 1;
  align-items: flex-start;
  gap: .65rem;
  background: rgba(0, 28, 84, .05);
  border: 1px solid rgba(0, 28, 84, .12);
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  font-size: .83rem;
  color: var(--gray-700);
  min-height: 56px;
  align-self: flex-end;
}

.pax-hint i {
  color: var(--navy);
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.pax-hint-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: .2rem;
}

.pax-hint-cats {
  font-weight: 600;
  color: var(--navy);
}

.pax-hint-cats--warn {
  color: var(--gold-dark, #c98d00);
  font-weight: 500;
}

.no-results-msg {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .form-row--pax {
    flex-direction: column;
  }

  .form-group--pax {
    flex: 1 1 100%;
  }

  .pax-hint {
    width: 100%;
  }
}

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

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .nav-logo-img {
    height: 32px;
  }
}

/* ── Footer WA link ── */
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 600;
  transition: color var(--transition);
  margin-top: .5rem;
}

.footer-wa-link:hover {
  color: var(--gold-light)
}

.footer-contact-mini {
  margin-top: 1rem
}

/* ── Responsive additions ── */
@media(max-width:900px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

@media(max-width:700px) {
  .hero-trust {
    gap: .4rem
  }

  .hero-trust span {
    font-size: .74rem;
    padding: .25rem .6rem
  }

  .includes-grid {
    grid-template-columns: 1fr
  }

  .booking-header {
    padding: 1.25rem 1.25rem 0
  }
}

@media(max-width:480px) {
  .search-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem
  }

  .lang-select {
    min-width: 60px;
    font-size: .76rem;
    padding: .3rem 1.5rem .3rem .55rem;
  }

  .destinations-grid {
    gap: 2rem
  }
}

/* ═══════════════════════════════════════════════════
   ACRISS / SIPP — International Vehicle Classification
   ═══════════════════════════════════════════════════ */

/* Inline code badge (used in category headers & vehicle cards) */
.acriss-code {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Courier New', Courier, monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .18rem .5rem;
  border-radius: 4px;
  border: 1px solid rgba(245, 175, 2, .35);
  cursor: help;
  vertical-align: middle;
  white-space: nowrap;
  transition: border-color .2s;
}
.acriss-code:hover { border-color: var(--gold); }

/* Badge overlaid on vehicle card image */
.vc-acriss {
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  z-index: 3;
  background: rgba(0, 28, 84, .88);
  color: var(--gold);
  font-family: 'Courier New', Courier, monospace;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .15rem .4rem;
  border-radius: 3px;
  border: 1px solid rgba(245, 175, 2, .4);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ACRISS label inside filter tab */
.filter-acriss {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--gold);
  opacity: .8;
  margin-top: .08rem;
  line-height: 1;
}

/* ACRISS info strip (above filter bar on fleet page) */
.acriss-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-bottom: 2px solid rgba(245, 175, 2, .25);
  padding: .9rem 0;
}
.acriss-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.acriss-strip-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.acriss-strip-label i { color: var(--gold); font-size: .8rem; }
.acriss-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
}
.acriss-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 175, 2, .22);
  border-radius: 6px;
  padding: .28rem .65rem;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.acriss-chip:hover {
  background: rgba(245, 175, 2, .08);
  border-color: rgba(245, 175, 2, .5);
}
.acriss-chip-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}
.acriss-chip-dot {
  color: rgba(255, 255, 255, .25);
  font-size: .7rem;
}
.acriss-chip-name {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
}
.acriss-strip-more {
  font-size: .74rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
  margin-left: auto;
}
.acriss-strip-more:hover { color: var(--gold); }

/* ACRISS explanation section */
.acriss-section {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  padding: 3.5rem 0;
}
.acriss-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.acriss-section-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.acriss-section h2 {
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
}
.acriss-section .acriss-subtitle {
  font-size: .95rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 720px;
}
.acriss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.acriss-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.acriss-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245, 175, 2, .12);
}
.acriss-card-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--navy);
  background: rgba(0, 28, 84, .06);
  padding: .4rem .7rem;
  border-radius: 6px;
  border: 1.5px solid rgba(0, 28, 84, .12);
  min-width: 58px;
  text-align: center;
  flex-shrink: 0;
}
.acriss-card-info {}
.acriss-card-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .25rem;
}
.acriss-card-decode {
  font-size: .76rem;
  color: var(--gray-500);
  margin: 0 0 .3rem;
  font-family: monospace;
}
.acriss-card-vehicles {
  font-size: .78rem;
  color: var(--gray-700);
  margin: 0;
}
.acriss-decode-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.acriss-decode-table th {
  background: var(--navy);
  color: var(--white);
  padding: .6rem .9rem;
  text-align: left;
  font-size: .78rem;
  letter-spacing: .04em;
}
.acriss-decode-table td {
  padding: .55rem .9rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  color: var(--gray-700);
}
.acriss-decode-table tr:last-child td { border-bottom: none; }
.acriss-decode-table td:first-child {
  font-family: monospace;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.acriss-note {
  background: rgba(0, 28, 84, .04);
  border-left: 3px solid var(--gold);
  padding: .9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .84rem;
  color: var(--gray-700);
}

/* ACRISS in terms/legal pages */
.legal-acriss-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
  margin: 1.2rem 0;
}
.legal-acriss-table th {
  background: var(--navy);
  color: var(--white);
  padding: .6rem .9rem;
  text-align: left;
  font-size: .8rem;
}
.legal-acriss-table td {
  padding: .55rem .9rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.legal-acriss-table tr:nth-child(even) td { background: var(--off-white); }
.legal-acriss-table td:first-child {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .acriss-strip-inner { gap: .65rem; }
  .acriss-strip-label { font-size: .72rem; }
  .acriss-chip { padding: .22rem .5rem; }
  .acriss-chip-code { font-size: .68rem; }
  .acriss-chip-name { display: none; }
  .acriss-strip-more { display: none; }
  .acriss-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SKELETON LOADING + PROGRESSIVE IMAGES
   ═══════════════════════════════════════════════════ */

/* Shimmer keyframe */
@keyframes yk-shimmer {
  0%   { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}

/* Generic skeleton placeholder */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: yk-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

/* Image wrappers — show shimmer while image loads */
.blog-img-wrap,
.fleet-img-wrap,
[class*="img-wrap"] {
  position: relative;
  overflow: hidden;
}

.blog-img-wrap::before,
.fleet-img-wrap::before,
[class*="img-wrap"]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: yk-shimmer 1.4s ease infinite;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* Once image loads, JS adds .img-loaded → hide shimmer */
.blog-img-wrap.img-loaded::before,
.fleet-img-wrap.img-loaded::before,
[class*="img-wrap"].img-loaded::before {
  opacity: 0;
}

/* Lazy images — start invisible, fade in when loaded */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .35s ease;
}
img[loading="lazy"].img-visible { opacity: 1; }

/* Above-fold images — always visible */
img:not([loading="lazy"]) { opacity: 1; }

/* ═══════════════════════════════════════════════════
   CORE WEB VITALS — LAYOUT STABILITY HINTS
   ═══════════════════════════════════════════════════ */

/* Reserve space for blog card images so CLS = 0 */
.blog-img-wrap { aspect-ratio: 16/9; height: auto; }
.blog-card--lg .blog-img-wrap { aspect-ratio: unset; min-height: 260px; }
@media(max-width:600px){
  .blog-img-wrap { aspect-ratio: 16/9; }
}

/* Prevent font flash on hero */
.hero-title, .hero-subtitle { contain: layout style; }