/* ============================================================
   ÉVASION — Travel Agency Landing Page
   Inspired by the cream/yellow agency aesthetic
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ---------- TOKENS ---------- */
:root {
  /* Palette inspirée du visuel de référence (cream + yellow) */
  --bg-cream: #F8F2E2;
  --bg-cream-deep: #F2EAD3;
  --bg-paper: #FFFCF1;
  --bg-white: #FFFFFF;
  --bg-dark: #161512;

  --text-primary: #1A1814;
  --text-secondary: #5C564B;
  --text-muted: #8C8576;

  --accent-yellow: #E6B43A;
  --accent-yellow-soft: #F2C95E;
  --accent-gold: #B8860B;
  --accent-lime: #B8E55C;
  --accent-lime-soft: rgba(184, 229, 92, 0.55);
  --accent-orange: #E07A2D;

  --border: rgba(26, 24, 20, 0.08);
  --border-strong: rgba(26, 24, 20, 0.18);
  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(26, 24, 20, 0.18);
  --shadow-xl: 0 30px 60px -20px rgba(26, 24, 20, 0.25);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-icon { animation: none; }
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-yellow);
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 18ch;
}
.section-title-light { color: #FFFCF1; max-width: 22ch; }

.section-sub {
  margin-top: 16px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 60ch;
}
.section-sub-light { color: rgba(255, 252, 241, 0.75); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-head .section-title { margin: 0 auto; }
.section-head .section-sub { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn i { font-size: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--text-primary);
  color: #FFFCF1;
  box-shadow: 0 4px 14px rgba(26, 24, 20, 0.25);
}
.btn-dark:hover { background: #2A2620; box-shadow: 0 8px 22px rgba(26, 24, 20, 0.35); }

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(230, 180, 58, 0.4);
}
.btn-yellow:hover { background: var(--accent-yellow-soft); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn-outline:hover { background: var(--text-primary); color: var(--bg-paper); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFCF1;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.15); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(12px);
  background: rgba(248, 242, 226, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent-yellow);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(230, 180, 58, 0.35);
}
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--bg-paper); color: var(--text-primary); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(230, 180, 58, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(184, 229, 92, 0.1) 0%, transparent 60%),
    var(--bg-cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 24, 20, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero title */
.hero-title {
  position: relative;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 12px auto 0;
  max-width: 13ch;
}
.hero-title-accent {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-gold);
  letter-spacing: -0.01em;
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-2deg);
}

/* Yellow text + lime highlight on "satisfaction" */
.highlight-yellow {
  position: relative;
  display: inline-block;
  color: var(--accent-gold);
  z-index: 1;
}
.highlight-mark {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight-mark::before {
  content: '';
  position: absolute;
  inset: 12% -3% 8% -3%;
  background: var(--accent-lime-soft);
  z-index: -1;
  transform: skewY(-1.2deg) rotate(-0.4deg);
  border-radius: 4px;
}

/* Floating icons (top + bottom) */
.float-icons {
  position: relative;
  display: flex;
  gap: 36px;
  z-index: 2;
}
.float-top { margin-bottom: 18px; }
.float-bottom { margin-top: 24px; }
.float-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-paper);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  padding: 10px;
  animation: floatUp 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.float-icon img { width: 100%; height: 100%; object-fit: contain; }
.float-icon-travel {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: #FFFCF1;
}
.float-icon-travel i { font-size: 28px; }
.float-top .float-icon:nth-child(1) { transform: rotate(-8deg) translateY(0); }
.float-top .float-icon:nth-child(2) { transform: rotate(0deg); }
.float-top .float-icon:nth-child(3) { transform: rotate(8deg); }
.float-bottom .float-icon:nth-child(1) { transform: rotate(6deg); }
.float-bottom .float-icon:nth-child(2) { transform: rotate(-4deg); }
.float-bottom .float-icon:nth-child(3) { transform: rotate(10deg); }

@keyframes floatUp {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ---------- CALENDAR + ANNOTATIONS ---------- */
.calendar-wrap {
  position: relative;
  margin: 56px auto 40px;
  width: 100%;
  max-width: 460px;
}

.calendar {
  position: relative;
  z-index: 2;
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.calendar-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.calendar-day:hover { transform: scale(1.1); }
.day-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  position: absolute;
  top: 8px;
  font-variant-numeric: tabular-nums;
}
.day-icon {
  font-size: 28px;
  line-height: 1;
  margin-top: 14px;
  filter: drop-shadow(0 2px 4px rgba(26, 24, 20, 0.08));
}
.calendar-day:not(.calendar-day-empty) {
  background: rgba(230, 180, 58, 0.16);
}
.day-highlighted {
  background: var(--accent-yellow) !important;
  box-shadow: 0 6px 18px rgba(230, 180, 58, 0.45);
}
.day-highlighted .day-num { color: var(--text-primary); }
.day-final {
  background: rgba(184, 229, 92, 0.4) !important;
}
.calendar-day-empty {
  background: rgba(26, 24, 20, 0.04) !important;
}
.calendar-day-empty .day-num,
.calendar-day-empty .day-icon { display: none; }

/* Annotations around the calendar */
.annotation {
  position: absolute;
  z-index: 3;
  max-width: 200px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.annotation-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.annotation-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.annotation-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.annotation-tl {
  top: -10px;
  left: -240px;
  text-align: right;
}
.annotation-bl {
  bottom: 30%;
  left: -240px;
  text-align: right;
}
.annotation-r {
  top: 25%;
  right: -240px;
  text-align: left;
  max-width: 220px;
}
.annotation-bc {
  bottom: -130px;
  left: -10px;
  text-align: center;
  max-width: 220px;
}

.arrow {
  position: absolute;
  pointer-events: none;
}
.arrow-tl { right: -100px; top: 30px; width: 110px; height: 90px; }
.arrow-bl { right: -100px; top: 18px; width: 110px; height: 70px; transform: scaleY(-1); }
.arrow-bc { right: -50px; top: -100px; width: 70px; height: 100px; }

/* WhatsApp bubble */
.wa-bubble {
  position: absolute;
  right: -70px;
  top: 60%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 4;
  transition: transform 0.2s ease;
}
.wa-bubble:hover { transform: scale(1.06); }
.wa-bubble img { width: 32px; height: 32px; }

@media (max-width: 1100px) {
  .annotation-tl { left: auto; right: 100%; margin-right: 16px; }
  .annotation-bl { left: auto; right: 100%; margin-right: 16px; }
  .annotation-r { right: auto; left: 100%; margin-left: 16px; }
}
@media (max-width: 920px) {
  .annotation { display: none; }
  .arrow { display: none; }
  .wa-bubble { right: 16px; top: auto; bottom: 16px; }
  .calendar-wrap { margin: 32px auto; }
}

.cta-main {
  margin-top: 40px;
  padding: 18px 32px;
}

/* Tag bar */
.tag-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed var(--border-strong);
  width: 100%;
  max-width: 900px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 252, 241, 0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.tag i { color: var(--accent-gold); font-size: 14px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  padding: 48px 0;
  background: var(--bg-cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 56px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.trust-item i { color: var(--accent-gold); font-size: 18px; }
.trust-item .ph-fill.ph-star { color: var(--accent-yellow); font-size: 14px; margin-right: -2px; }
.trust-item span { margin-left: 6px; }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro { padding: 120px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.intro-grid .section-title { margin: 0; }
.intro-grid .section-sub { margin-top: 20px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }
.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.intro-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 252, 241, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.intro-tag i { color: var(--accent-orange); }

@media (max-width: 880px) {
  .intro { padding: 80px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   BENTO CARDS
   ============================================================ */
.bento { padding: 80px 0 120px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 380px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
/* Pastel green & blue palette inspirée des bentocards de référence */
.bento-yellow {
  /* Now: pastel green (top-left) */
  background: linear-gradient(135deg, #DDF1C6 0%, #C5E5A0 100%);
  border-color: rgba(120, 170, 80, 0.18);
}
.bento-cream {
  /* Now: pastel blue (top-right) */
  background: linear-gradient(135deg, #DCEDF7 0%, #B9DAEC 100%);
  border-color: rgba(80, 140, 180, 0.18);
}
.bento-mint {
  /* Now: pastel blue (bottom-left) */
  background: linear-gradient(135deg, #E5F1F8 0%, #C8DDEA 100%);
  border-color: rgba(80, 140, 180, 0.18);
}
.bento-sand {
  /* Now: pastel green (bottom-right) */
  background: linear-gradient(135deg, #D6EDB8 0%, #B5DC8A 100%);
  border-color: rgba(120, 170, 80, 0.18);
}

.bento-illustration {
  flex: 1;
  position: relative;
  margin-bottom: 24px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.bento-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Card 1 — Sur-mesure: stacked destination pills */
.ill-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 240px;
}
.ill-pill {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.ill-pill:nth-child(1) { transform: translateX(-12px) rotate(-2deg); }
.ill-pill:nth-child(2) { transform: translateX(8px) rotate(1deg); }
.ill-pill:nth-child(3) { transform: translateX(-4px) rotate(-1deg); }
.ill-pill:nth-child(4) { transform: translateX(14px) rotate(2deg); }
.ill-pill-active {
  background: var(--text-primary);
  color: #FFFCF1;
  border-color: var(--text-primary);
  box-shadow: 0 8px 20px rgba(26, 24, 20, 0.25);
}
.ill-sticker {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-lime);
  color: var(--text-primary);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 16px;
  transform: rotate(8deg);
  box-shadow: 0 4px 12px rgba(184, 229, 92, 0.4);
}

/* Card 2 — Hôtels Premium */
.ill-hotel {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ill-hotel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.ill-hotel-row .ill-hotel-name { flex: 1; }
.ill-hotel-row > .ph-fill.ph-check-circle { color: #2BB673; font-size: 18px; }
.ill-hotel-active {
  background: var(--text-primary);
  color: #FFFCF1;
  border-color: var(--text-primary);
}
.ill-hotel-active .ph-fill.ph-star { color: var(--accent-yellow); }
.ill-stars {
  display: inline-flex;
  gap: 1px;
}
.ill-stars i { color: var(--accent-yellow); font-size: 12px; }

/* Card 3 — Conciergerie chat */
.ill-chat {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ill-chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
  max-width: 80%;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}
.ill-chat-them {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ill-chat-us {
  background: var(--text-primary);
  color: #FFFCF1;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ill-chat-typing {
  align-self: flex-start;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  display: inline-flex;
  gap: 4px;
}
.ill-chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.ill-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.ill-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.ill-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #2BB673;
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ill-badge i { font-size: 14px; }

/* Card 4 — Assurance */
.ill-shield {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 320px;
}
.ill-shield-icon {
  font-size: 80px;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.ill-shield-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.ill-shield-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ill-shield-points i {
  width: 18px;
  height: 18px;
  background: var(--text-primary);
  color: #FFFCF1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 880px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process { padding: 120px 0; background: var(--bg-cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.4;
  line-height: 1;
}
.step-icon {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.step-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 12px;
  background: var(--bg-cream-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.process-step-final {
  background: var(--text-primary);
  color: #FFFCF1;
  border-color: var(--text-primary);
}
.process-step-final h3 { color: #FFFCF1; }
.process-step-final p { color: rgba(255, 252, 241, 0.7); }
.process-step-final .step-icon { color: var(--accent-yellow); }
.process-step-final .step-num { color: var(--accent-yellow); opacity: 0.5; }
.process-step-final .step-tag { background: rgba(255, 255, 255, 0.1); color: rgba(255, 252, 241, 0.85); }

@media (max-width: 880px) {
  .process { padding: 80px 0; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { padding: 120px 0; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dest-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dest-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img img { transform: scale(1.05); }
.dest-info { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.dest-place {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dest-place i { font-size: 14px; }
.dest-info h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.dest-meta {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.dest-meta span { display: inline-flex; align-items: center; gap: 4px; }
.dest-meta i { font-size: 14px; color: var(--accent-gold); }

@media (max-width: 980px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .destinations { padding: 80px 0; }
  .dest-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 120px 0; background: var(--bg-cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-card-featured {
  background: var(--text-primary);
  color: #FFFCF1;
  border-color: var(--text-primary);
}
.testi-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-yellow);
}
.testi-stars i { font-size: 16px; }
.testi-quote {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
}
.testi-card-featured .testi-quote { color: rgba(255, 252, 241, 0.95); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-trip { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testi-card-featured .testi-trip { color: rgba(255, 252, 241, 0.6); }

@media (max-width: 980px) {
  .testimonials { padding: 80px 0; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 120px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background: var(--bg-dark);
  color: #FFFCF1;
  border: 0;
  box-shadow: 0 30px 60px -20px rgba(26, 24, 20, 0.4);
  transform: translateY(-12px);
}
.price-card-featured:hover { transform: translateY(-16px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: var(--text-primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-head p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}
.price-card-featured .price-head p { color: rgba(255, 252, 241, 0.65); }
.price-amount { display: flex; flex-direction: column; gap: 4px; }
.price-num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-unit { font-size: 13px; color: var(--text-muted); }
.price-card-featured .price-unit { color: rgba(255, 252, 241, 0.55); }
.price-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
}
.price-card-featured .price-list li { color: rgba(255, 252, 241, 0.92); }
.price-list i {
  width: 18px;
  height: 18px;
  background: rgba(184, 229, 92, 0.4);
  color: #2A6E0E;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card-featured .price-list i {
  background: rgba(230, 180, 58, 0.25);
  color: var(--accent-yellow);
}

@media (max-width: 980px) {
  .pricing { padding: 80px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: translateY(0); }
  .price-card-featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--bg-cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-grid .section-sub a { color: var(--accent-gold); border-bottom: 1px solid currentColor; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 0.8;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 880px) {
  .faq { padding: 80px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { padding: 60px 0 120px; }
.cta-card {
  position: relative;
  background: var(--bg-dark);
  color: #FFFCF1;
  border-radius: var(--radius-xl);
  padding: 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 252, 241, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.cta-visual {
  position: relative;
  height: 280px;
}
.cta-circle {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230, 180, 58, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.cta-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 180px;
  color: var(--accent-yellow);
  filter: drop-shadow(0 12px 24px rgba(230, 180, 58, 0.4));
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@media (max-width: 880px) {
  .cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-visual { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: #FFFCF1;
  padding: 80px 0 32px;
}
.footer .brand-mark { background: var(--accent-yellow); }
.footer .brand-mark svg path { fill: var(--text-primary); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 252, 241, 0.1);
}
.footer-tag {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 252, 241, 0.65);
  max-width: 36ch;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 252, 241, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 252, 241, 0.7);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--accent-yellow); color: var(--text-primary); }
.footer-social i { font-size: 18px; }

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFCF1;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255, 252, 241, 0.6);
  transition: color 0.15s ease;
}
.footer ul a:hover { color: #FFFCF1; }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 252, 241, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: #FFFCF1; }

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