/* ═══════════════════════════════════════════════════════════════
   VIVA LA DIVA CURAÇAO — Complete Design System
   Premium Car Rental | Curaçao
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ── */
:root {
  --clr-ocean:      #0D4F6E;
  --clr-ocean-dark: #083549;
  --clr-sky:        #5BB8D4;
  --clr-sky-light:  #A8D8E8;
  --clr-gold:       #F4A341;
  --clr-gold-lt:    #F5C842;
  --clr-rose:       #E8527A;
  --clr-sand:       #F5E6CC;
  --clr-blush:      #FFD4E2;
  --clr-anthracite: #1A1A2E;
  --clr-warm-white: #FAFAF7;
  --clr-mist:       #E8EDF2;
  --clr-text-muted: #6B7280;

  --grad-sunrise:   linear-gradient(135deg, #0D4F6E 0%, #5BB8D4 50%, #F4A341 100%);
  --grad-gold:      linear-gradient(90deg, #F4A341 0%, #F5C842 50%, #F4A341 100%);
  --grad-ocean:     linear-gradient(160deg, #083549 0%, #0D4F6E 60%, #1a6b8a 100%);
  --grad-hero:      linear-gradient(160deg, rgba(8,53,73,0.82) 0%, rgba(13,79,110,0.65) 50%, rgba(26,26,46,0.75) 100%);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-ui:        'Plus Jakarta Sans', system-ui, sans-serif;
  --font-accent:    'Dancing Script', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-card:  0 2px 16px rgba(13,79,110,0.08), 0 1px 4px rgba(13,79,110,0.05);
  --shadow-float: 0 20px 48px rgba(13,79,110,0.18), 0 4px 12px rgba(13,79,110,0.08);
  --shadow-gold:  0 8px 28px rgba(244,163,65,0.40);
  --shadow-nav:   0 1px 0 rgba(13,79,110,0.08), 0 4px 24px rgba(13,79,110,0.06);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-mid:  350ms;
  --dur-slow: 600ms;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  background: var(--clr-warm-white);
  color: var(--clr-anthracite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-ui); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { line-height: 1.7; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.section-title { color: var(--clr-ocean); margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── 4. LAYOUT HELPERS ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section--dark {
  background: var(--grad-ocean);
  color: white;
}
.section--sand { background: var(--clr-sand); }
.section--white { background: white; }

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast),
              background-position var(--dur-mid);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background: var(--grad-gold);
  background-size: 200% 100%;
  color: var(--clr-anthracite);
  box-shadow: 0 4px 16px rgba(244,163,65,0.32);
}
.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--clr-ocean);
  border: 2px solid var(--clr-ocean);
}
.btn--outline:hover {
  background: var(--clr-ocean);
  color: white;
  box-shadow: 0 4px 16px rgba(13,79,110,0.25);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

/* ── 6. NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background var(--dur-mid) var(--ease-inout),
              padding    var(--dur-mid) var(--ease-inout),
              box-shadow var(--dur-mid);
}
.navbar--scrolled {
  background: rgba(250,250,247,0.90);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: 14px 40px;
  box-shadow: var(--shadow-nav);
}
.navbar--scrolled .nav-link { color: var(--clr-anthracite); }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-sunrise);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 12px rgba(244,163,65,0.35);
  overflow: hidden;
}
.navbar__logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.navbar--scrolled .navbar__logo-text { color: var(--clr-ocean); }
.navbar__logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.navbar--scrolled .navbar__logo-sub { color: var(--clr-text-muted); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-expo);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--clr-gold); }
.navbar--scrolled .nav-link:hover { color: var(--clr-ocean); }

.navbar__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-expo), opacity var(--dur-fast);
}
.navbar--scrolled .hamburger span { background: var(--clr-anthracite); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8,53,73,0.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link {
  font-size: 1.6rem;
  font-family: var(--font-display);
  color: white;
  padding: 16px 32px;
}
.mobile-menu .nav-link::after { bottom: 10px; left: 32px; right: 32px; }

/* ── 7. HERO SECTIE ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 60%;
  animation: kenBurnsHero 18s ease-in-out infinite alternate;
}
@keyframes kenBurnsHero {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}

/* Orbs hidden — hero heeft nu echte foto */
.hero__orb { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-expo) 0.4s forwards;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--clr-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.06;
  margin-bottom: 24px;
}
.hero__line {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-expo) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.7s; }
.hero__line:nth-child(2) {
  animation-delay: 1.0s;
  font-style: italic;
  color: var(--clr-gold-lt);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-expo) 1.3s forwards;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-expo) 1.5s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 0.5s ease 2s forwards;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out 2.2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 0.15; transform: scaleY(0.5); }
}

/* ── 8. SEARCH BAR ── */
.search-section {
  padding: 0 32px;
  position: relative;
  z-index: 10;
  margin-top: -56px;
  margin-bottom: 80px;
}
.search-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: 0 24px 64px rgba(13,79,110,0.18), 0 4px 16px rgba(13,79,110,0.08);
  border: 1px solid rgba(13,79,110,0.08);
}
.search-card__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-ocean);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-card__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-mist);
}
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.search-field select,
.search-field input[type="date"] {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--clr-mist);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-anthracite);
  background: var(--clr-warm-white);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.search-field input[type="date"] {
  background-image: none;
  padding-right: 16px;
}
.search-field select:focus,
.search-field input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(244,163,65,0.18);
}

/* ── 9. USP STRIP ── */
.usp-section { padding: 72px 0; background: white; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-mist);
  transition: transform var(--dur-mid) var(--ease-expo),
              box-shadow var(--dur-mid),
              border-color var(--dur-fast);
}
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(244,163,65,0.3);
}
.usp-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(13,79,110,0.08), rgba(91,184,212,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform var(--dur-fast);
}
.usp-card:hover .usp-icon { transform: rotate(6deg) scale(1.1); }
.usp-card h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-ocean);
  margin-bottom: 4px;
}
.usp-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ── 10. CAR CARDS ── */
.car-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-mist);
  transition: transform var(--dur-mid) var(--ease-expo),
              box-shadow var(--dur-mid);
  position: relative;
}
.car-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
}

.car-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-mist), #d4e4f0);
}
.car-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}
.car-card:hover .car-card__img { transform: scale(1.07); }

.car-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}
.car-card:hover .car-card__photo { transform: scale(1.07); }

.car-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #e8f4f8, #d0e8f2);
  color: var(--clr-sky);
}

.car-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--clr-ocean);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}
.car-card__deal {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--clr-rose);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,82,122,0.5); }
  60%      { box-shadow: 0 0 0 8px rgba(232,82,122,0); }
}

.car-card__body { padding: 20px 24px 24px; }
.car-card__name {
  font-size: 1.3rem;
  color: var(--clr-ocean);
  margin-bottom: 14px;
}

.car-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  transition: max-height 0.4s var(--ease-expo),
              opacity 0.3s ease,
              padding 0.3s ease;
  border-top: 0px solid var(--clr-mist);
}
.car-card:hover .car-card__specs {
  max-height: 140px;
  opacity: 1;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--clr-mist);
}
.car-card__spec { display: flex; align-items: center; gap: 6px; }
.car-card__spec-icon { font-size: 14px; }

.car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.car-card__price { line-height: 1.1; }
.car-card__price-label { font-size: 0.7rem; color: var(--clr-text-muted); display: block; }
.car-card__price-amount {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-ocean);
}
.car-card__price-old {
  font-size: 0.85rem;
  color: var(--clr-rose);
  text-decoration: line-through;
  margin-right: 4px;
}
.car-card__price-period { font-size: 0.78rem; color: var(--clr-text-muted); }

.btn-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-gold);
  background-size: 200% 100%;
  color: var(--clr-anthracite);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s,
              transform 0.3s ease 0.05s,
              background-position var(--dur-mid),
              box-shadow var(--dur-fast);
  white-space: nowrap;
}
.car-card:hover .btn-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.btn-card-cta:hover {
  background-position: 100% 0;
  box-shadow: var(--shadow-gold);
}

/* ── 11. FLEET GRID (wagenpark pagina) ── */
.fleet-header {
  padding: 140px 0 60px;
  background: var(--grad-ocean);
  color: white;
  text-align: center;
}
.fleet-header h1 { color: white; margin-bottom: 16px; }
.fleet-header p { color: rgba(255,255,255,0.75); margin: 0 auto; }

.fleet-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 32px 0 40px;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  margin-right: 4px;
  white-space: nowrap;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--clr-mist);
  background: white;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-anthracite);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--clr-ocean);
  background: var(--clr-ocean);
  color: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}
.car-item { transition: opacity 0.35s ease, transform 0.35s ease; }
.car-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; }

/* ── 12. AUTO DETAIL ── */
.detail-header {
  padding: 120px 0 48px;
  background: var(--grad-ocean);
}
.detail-header__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-header__breadcrumb a { color: rgba(255,255,255,0.6); }
.detail-header__breadcrumb a:hover { color: var(--clr-gold); }
.detail-header h1 { color: white; }
.detail-header .badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--clr-gold-lt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 60px 0 80px;
}

.detail-gallery__main {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-mist);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.detail-gallery__main img,
.detail-gallery__main .car-card__placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-expo);
  font-size: 8rem;
}
.detail-gallery__main:hover img { transform: scale(1.04); }

.detail-gallery__thumbs {
  display: flex;
  gap: 10px;
}
.detail-gallery__thumb {
  flex: 1;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color var(--dur-fast);
}
.detail-gallery__thumb.active { border-color: var(--clr-gold); }
.detail-gallery__thumb img,
.detail-gallery__thumb > div {
  width: 100%; height: 100%;
  object-fit: cover;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f8, #d0e8f2);
  color: var(--clr-sky);
}

.detail-specs { margin-top: 40px; }
.detail-specs h3 {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--clr-ocean);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-mist);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--clr-warm-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-mist);
}
.spec-item__icon { font-size: 20px; }
.spec-item__label { font-size: 0.72rem; color: var(--clr-text-muted); display: block; }
.spec-item__value { font-size: 0.9rem; font-weight: 700; color: var(--clr-anthracite); }

/* Booking sidebar */
.booking-card {
  position: sticky;
  top: 90px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-mist);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.booking-card__header {
  background: var(--grad-ocean);
  color: white;
  padding: 24px 28px;
}
.booking-card__header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.booking-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-gold-lt);
}
.booking-card__price span { font-size: 1rem; color: rgba(255,255,255,0.7); font-family: var(--font-ui); }
.booking-card__body { padding: 24px 28px; }
.booking-card__body .search-field { margin-bottom: 16px; }
.booking-card__body .search-field select,
.booking-card__body .search-field input { background: white; }
.booking-card__total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 2px solid var(--clr-mist);
  margin-top: 8px;
  font-weight: 700;
}
.booking-card__total span:last-child {
  color: var(--clr-ocean);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.booking-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  padding-top: 16px;
}

/* ── 13. REVIEWS ── */
.reviews-section {
  padding: 96px 0;
  background: var(--grad-ocean);
  color: white;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: var(--font-display);
  font-size: 32rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--dur-mid) var(--ease-expo),
              background var(--dur-fast);
}
.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}
.review-stars { color: var(--clr-gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-anthracite);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: white; }
.review-country { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── 14. FAQ PAGINA ── */
.faq-header {
  padding: 140px 0 60px;
  background: var(--grad-ocean);
  text-align: center;
}
.faq-header h1 { color: white; }
.faq-header p { color: rgba(255,255,255,0.75); margin: 16px auto 0; }

.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 80px 0;
}
.faq-sidebar { position: sticky; top: 90px; align-self: start; }
.faq-sidebar h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.faq-nav-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
  margin-bottom: 4px;
}
.faq-nav-link:hover,
.faq-nav-link.active {
  background: rgba(13,79,110,0.08);
  color: var(--clr-ocean);
}

.faq-group { margin-bottom: 48px; }
.faq-group__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-mist);
}

.faq-item { border-bottom: 1px solid var(--clr-mist); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-anthracite);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--clr-ocean); }
.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--clr-mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-ocean);
  font-size: 12px;
  transition: transform var(--dur-mid) var(--ease-expo),
              background var(--dur-fast);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--clr-gold);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  transition: max-height 0.4s var(--ease-expo), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* ── 15. CONTACT PAGINA ── */
.contact-header {
  padding: 140px 0 60px;
  background: var(--grad-ocean);
  text-align: center;
}
.contact-header h1 { color: white; }
.contact-header p { color: rgba(255,255,255,0.75); margin: 16px auto 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
}
.contact-info h3 {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--clr-ocean);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-mist);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(13,79,110,0.08), rgba(91,184,212,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--clr-anthracite); margin-top: 2px; }
.contact-info-value a { color: var(--clr-ocean); }
.contact-info-value a:hover { color: var(--clr-gold); }

.contact-form-wrap h3 {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--clr-ocean);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-mist);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--clr-mist);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--clr-anthracite);
  background: var(--clr-warm-white);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(244,163,65,0.18);
}
.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(13,79,110,0.05), rgba(91,184,212,0.08));
  border: 1px solid var(--clr-sky);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--clr-ocean);
}

.map-section { padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: linear-gradient(135deg, #c8dfe8, #a8c8d8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-mist);
  position: relative;
}
.map-placeholder {
  text-align: center;
  color: var(--clr-ocean);
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.map-placeholder p { font-size: 0.9rem; color: var(--clr-text-muted); }

/* ── 16. FOOTER ── */
.footer {
  background: var(--clr-anthracite);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer__logo-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-sunrise);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer__logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer__logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; }
.footer__social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
}
.social-btn:hover { background: var(--clr-gold); transform: translateY(-2px); }

.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast), transform var(--dur-fast);
  display: inline-block;
}
.footer__links a:hover { color: var(--clr-gold); transform: translateX(4px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--clr-gold); }

/* ── 17. WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast),
              padding var(--dur-mid) var(--ease-expo);
  animation: fabPop 0.6s var(--ease-expo) 2s both;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-fab__label { white-space: nowrap; }
@keyframes fabPop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);  opacity: 1; }
}

/* ── 18. ANIMATIONS & KEYFRAMES ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Stagger helper */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }
.stagger-6 { transition-delay: 0.48s !important; }

/* Pulse loader */
@keyframes skeleton {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── 19. WHY US SECTION ── */
.why-section { background: var(--clr-warm-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-sunrise);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual__emoji {
  font-size: 8rem;
  animation: floatY 5s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
  display: block;
}
@keyframes floatY {
  0%,100% { transform: translateZ(0) translateY(0); }
  50%      { transform: translateZ(0) translateY(-14px); }
}
@media (max-width: 768px) {
  .why-visual__emoji { animation: none; }
}
.why-visual__badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-float);
  font-size: 0.85rem;
}
.why-visual__badge strong { display: block; font-size: 1.6rem; color: var(--clr-ocean); font-family: var(--font-display); }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--clr-anthracite);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-point h4 { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700; color: var(--clr-ocean); margin-bottom: 4px; }
.why-point p { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.5; }

/* ── 20. RESPONSIVE ── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .navbar { padding: 16px 20px; }
  .navbar--scrolled { padding: 12px 20px; }
  .navbar__nav { display: none; }
  .navbar__actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero__cta-group { flex-direction: column; }

  .search-section { padding: 0 16px; margin-top: -40px; }
  .search-card { padding: 20px; }
  .search-grid { grid-template-columns: 1fr; }

  .usp-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .detail-gallery__thumbs { display: none; }

  .whatsapp-fab { padding: 16px; border-radius: 50%; }
  .whatsapp-fab__label { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .fleet-header, .faq-header, .contact-header, .detail-header { padding: 110px 0 40px; }
}

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