*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f4c542;
  --gold-dark: #e8950a;
  --navy: #050d24;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.18);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-smooth: cubic-bezier(0.45,0,0.55,1);
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-smooth);
  will-change: opacity;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease-out, filter 1.4s var(--ease-smooth);
  will-change: transform;
}
.slide.active .slide-bg { transform: scale(1.06); }

.slide-1 .slide-bg { background-image: linear-gradient(135deg,rgba(2,8,35,.82) 0%,rgba(12,25,80,.55) 40%,rgba(180,130,10,.25) 100%), url('/assets/images/1.jpeg'); }
.slide-2 .slide-bg { background-image: linear-gradient(135deg,rgba(15,5,0,.84) 0%,rgba(80,40,5,.58) 45%,rgba(200,160,20,.22) 100%), url('/assets/images/2.jpeg'); }
.slide-3 .slide-bg { background-image: linear-gradient(135deg,rgba(0,20,15,.85) 0%,rgba(5,55,45,.58) 45%,rgba(0,180,150,.20) 100%), url('/assets/images/3.jpeg'); }

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw 160px;
  transform: translateY(0);
  transition: transform 1.4s var(--ease-smooth);
}
.slide:not(.active) .slide-content { transform: translateY(8px); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 6px 20px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
}
.slide.active .tag-pill { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4.8vw,4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 720px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease .55s, transform .75s ease .55s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.gold { color: var(--gold); }

.slide-sub {
  font-size: clamp(.88rem,1.5vw,1.08rem);
  font-weight: 300;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease .78s, transform .75s ease .78s;
}
.slide.active .slide-sub { opacity: 1; transform: translateY(0); }

.dots {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .4s ease;
  border: none;
}
.dot.active { background: var(--gold); width: 30px; }

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-dark));
  z-index: 10;
  width: 0%;
}

.slide-counter {
  position: absolute;
  top: 36px;
  right: 6vw;
  z-index: 10;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.slide-counter .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── BOOKING BAR ── */
.booking-bar {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  background: rgba(5,13,36,.55);
  backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: 14px 14px 14px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.12);
  width: fit-content;
  max-width: min(96vw,720px);
  transition: transform .45s var(--ease-spring), box-shadow .35s ease;
}
.booking-bar.modal-opening {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 16px 60px rgba(244,197,66,.25);
}

.bar-tagline {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .03em;
  white-space: nowrap;
}
.bar-tagline span { color: var(--gold); font-weight: 700; }

.continue-chip {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244,197,66,.12);
  border: 1px solid rgba(244,197,66,.35);
  border-radius: 99px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .2s, transform .2s var(--ease-spring);
}
.continue-chip:hover { background: rgba(244,197,66,.22); transform: translateY(-2px); }

.begin-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);
  color: #0a0500;
  font-family: 'Inter',sans-serif;
  font-size: .9rem;
  font-weight: 800;
  border: none;
  border-radius: 99px;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(244,197,66,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .22s var(--ease-spring), box-shadow .22s ease, filter .22s ease;
  position: relative;
  z-index: 99999;
}
.begin-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 36px rgba(244,197,66,.6); filter: brightness(1.08); }
.begin-btn:active { transform: scale(.97); }
.begin-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-pulse { position: relative; display: inline-flex; z-index: 99999; }
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  border: 2px solid rgba(244,197,66,.5);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { opacity: .7; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 46, 0.42);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f2f6 100%);
  border: 1px solid #d8dce6;
  border-radius: 28px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(26, 26, 46, 0.16), 0 0 0 1px rgba(244, 197, 66, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(.97);
  transition: transform .45s var(--ease-spring);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.sheet-handle {
  display: none;
  width: 40px;
  height: 4px;
  background: #d8dce6;
  border-radius: 99px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.modal-header {
  padding: 28px 32px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d8dce6;
  flex-shrink: 0;
}
.modal-brand { display: flex; align-items: center; gap: 10px; }
.modal-brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(244,197,66,.7); }
.modal-brand-name { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #5a5a72; }

.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f2f6; border: 1px solid #d8dce6;
  color: #5a5a72; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: #fff8e6; color: #e8950a; transform: rotate(90deg); }

.modal-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin-top: 16px; }
.bc-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #9a9ab0; transition: color .3s, opacity .3s;
}
.bc-item.hidden-bc { display: none; }
.bc-item.active { color: var(--gold-dark); }
.bc-item.done { color: rgba(232, 149, 10, 0.65); }
.bc-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: #f0f2f6; border: 1.5px solid #d8dce6;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; transition: all .3s;
  color: #5a5a72;
}
.bc-item.active .bc-dot { background: var(--gold); border-color: var(--gold); color: #0a0500; }
.bc-item.done .bc-dot { background: rgba(244,197,66,.25); border-color: rgba(244,197,66,.5); color: var(--gold-dark); }
.bc-arrow { color: #d8dce6; font-size: .7rem; }
.bc-arrow.hidden-bc { display: none; }

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,197,66,.3) transparent;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(244,197,66,.3); border-radius: 99px; }

.step { display: none; animation: stepIn .45s var(--ease-spring) both; }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes stepBack { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
.step.back { animation: stepBack .45s var(--ease-spring) both; }

.step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 700;
  color: #050d24;
  line-height: 1.2;
  margin-bottom: 6px;
}
.step-sub { font-size: .85rem; color: #5a5a72; margin-bottom: 28px; line-height: 1.6; }

/* Cards */
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.1);
  transition: border-color .25s, transform .3s var(--ease-spring), box-shadow .3s;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}
.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.75) 100%);
  transition: opacity .3s;
}
.dest-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.dest-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,197,66,.3), 0 20px 50px rgba(0,0,0,.5);
  animation: goldGlow 2.5s ease-in-out infinite;
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,197,66,.25), 0 20px 50px rgba(0,0,0,.5); }
  50% { box-shadow: 0 0 0 3px rgba(244,197,66,.45), 0 0 24px rgba(244,197,66,.15), 0 20px 50px rgba(0,0,0,.5); }
}
.dest-card.sa { background-image: url('/assets/images/1.jpeg'); }
.dest-card.eg { background-image: url('/assets/images/2.jpeg'); }
.dest-card.so { background-image: url('/assets/images/3.jpeg'); }
.dest-card-inner { position: absolute; inset: 0; padding: 20px 16px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 1; }
.dest-flag { font-size: 2rem; margin-bottom: 8px; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dest-tagline { font-size: .72rem; color: rgba(255,255,255,.65); }

.check-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: opacity .3s, transform .35s var(--ease-spring);
}
.dest-card.selected .check-badge,
.opt-card.selected .check-badge { opacity: 1; transform: scale(1) rotate(0deg); }
.check-badge svg { width: 14px; height: 14px; color: #0a0500; }

.options-grid { display: grid; gap: 12px; }
.options-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.options-grid.cols-3 { grid-template-columns: repeat(3,1fr); }

.opt-card {
  position: relative;
  border-radius: 18px;
  cursor: pointer;
  border: 2px solid #e4e6ef;
  background: #fff;
  padding: 22px 18px;
  text-align: center;
  transition: all .28s var(--ease-spring);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.opt-card::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(244,197,66,.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .5s ease, height .5s ease, opacity .5s ease;
  opacity: 0;
}
.opt-card.ripple::after { width: 200px; height: 200px; opacity: 1; transition: 0s; }
.opt-card:hover { border-color: rgba(232, 149, 10, 0.45); background: #fff8e6; transform: translateY(-4px); box-shadow: 0 12px 35px rgba(5, 13, 36, 0.08); }
.opt-card.selected { border-color: var(--gold); background: #fff8e6; transform: translateY(-4px); box-shadow: 0 0 0 3px rgba(244,197,66,.2), 0 12px 35px rgba(5, 13, 36, 0.08); }
.opt-card .check-badge { top: 10px; right: 10px; width: 24px; height: 24px; }

.svg-icon { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }
.svg-icon svg { width: 36px; height: 36px; }
.svg-icon.sm svg { width: 28px; height: 28px; }
.opt-icon { transition: transform .3s var(--ease-spring); }
.opt-card:hover .opt-icon,
.opt-card.selected .opt-icon { transform: scale(1.1); }

.opt-label { font-size: .82rem; font-weight: 700; color: #1a1a2e; }
.opt-card.selected .opt-label { color: var(--gold-dark); }
.opt-desc { font-size: .7rem; color: #5a5a72; line-height: 1.4; }
.opt-badge {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244,197,66,.15);
  border-radius: 99px;
  padding: 3px 10px;
  margin-top: 4px;
}

.package-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.pkg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  border: 1.5px solid #e4e6ef;
  background: #fff;
  transition: all .25s ease;
}
.pkg-item:hover { border-color: rgba(232, 149, 10, 0.4); background: #fff8e6; }
.pkg-item.selected { border-color: var(--gold); background: #fff8e6; }
.pkg-item-text { flex: 1; min-width: 0; }
.pkg-item-name { font-size: .8rem; font-weight: 700; color: #1a1a2e; }
.pkg-item.selected .pkg-item-name { color: var(--gold-dark); }
.pkg-item-desc { font-size: .68rem; color: #5a5a72; margin-top: 2px; }
.pkg-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #d8dce6;
  display: flex; align-items: center; justify-content: center;
}
.pkg-item.selected .pkg-check { background: var(--gold); border-color: var(--gold); }
.pkg-check svg { width: 11px; height: 11px; color: #0a0500; opacity: 0; transition: opacity .2s; }
.pkg-item.selected .pkg-check svg { opacity: 1; }

.celebrate { text-align: center; padding: 10px 0 20px; animation: celebrateIn .6s var(--ease-spring) both; }
.celebrate.mini { padding-bottom: 0; margin-bottom: 22px; }
@keyframes celebrateIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.svg-sparkle { display: inline-flex; color: var(--gold); margin-bottom: 16px; animation: bounce-emoji 1s ease-in-out infinite alternate; }
.svg-sparkle svg { width: 48px; height: 48px; }
.svg-sparkle.lg svg { width: 56px; height: 56px; }
@keyframes bounce-emoji { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.celebrate-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #050d24; margin-bottom: 8px; }
.celebrate-gold { color: var(--gold-dark); }
.celebrate-sub { font-size: .88rem; color: #5a5a72; line-height: 1.7; margin-bottom: 20px; }

/* Summary */
.summary-card {
  background: #fff;
  border: 1px solid #d8dce6;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 22px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eef0f5;
  font-size: .82rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: #5a5a72; flex-shrink: 0; }
.summary-row .value { color: #1a1a2e; font-weight: 600; text-align: right; }
.summary-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.summary-tag {
  font-size: .68rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(244,197,66,.12);
  border: 1px solid rgba(244,197,66,.25);
  border-radius: 99px;
  padding: 4px 10px;
}

.summary-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.field-row.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #5a5a72; margin-bottom: 6px; }
.field-input {
  width: 100%;
  background: #fff;
  border: 1px solid #d8dce6;
  border-radius: 12px;
  padding: 12px 14px;
  color: #1a1a2e;
  font-family: inherit;
  font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
}
.field-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,197,66,.15); }
.field-input option { background: #fff; color: #1a1a2e; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #9a9ab0;
  text-transform: uppercase;
}

/* Loading */
.modal-loading[hidden] { display: none !important; }
.modal-loading {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.modal-loading p { font-size: .88rem; color: #5a5a72; letter-spacing: .04em; }
.loading-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(244,197,66,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
.modal-footer {
  padding: 18px 32px 24px;
  border-top: 1px solid #d8dce6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
}
.btn-back {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: #5a5a72;
  background: none; border: 1px solid #d8dce6; border-radius: 99px;
  padding: 11px 20px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.btn-back:hover { color: #050d24; border-color: #c8ccd8; background: #f0f2f6; }
.btn-back svg { width: 14px; height: 14px; }

.footer-actions { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }

.btn-next, .btn-whatsapp {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter',sans-serif;
  font-size: .82rem; font-weight: 800;
  border: none; border-radius: 99px;
  padding: 13px 24px; cursor: pointer;
  letter-spacing: .04em; text-transform: uppercase;
  transition: transform .22s var(--ease-spring), box-shadow .22s, filter .22s, opacity .2s;
}
.btn-next {
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: #0a0500;
  box-shadow: 0 4px 20px rgba(244,197,66,.35);
  opacity: .45; pointer-events: none;
}
.btn-next.enabled { opacity: 1; pointer-events: all; }
.btn-next.enabled:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 32px rgba(244,197,66,.55); }

.btn-whatsapp {
  background: rgba(37,211,102,.15);
  color: #25d366;
  border: 1px solid rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: rgba(37,211,102,.25); transform: translateY(-2px); }

.selection-count { font-size: .78rem; color: #5a5a72; font-weight: 500; }
.selection-count span { color: var(--gold); font-weight: 700; }

.particles { position: fixed; inset: 0; pointer-events: none; z-index: 10000; }
.particle { position: absolute; border-radius: 50%; animation: fall 2.5s ease-in forwards; }
@keyframes fall {
  0%   { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* Bottom sheet mobile */
@media (max-width: 767px) {
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box {
    border-radius: 24px 24px 0 0;
    max-height: 92svh;
    transform: translateY(100%);
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .sheet-handle { display: block; }
}

/* Responsive hero */
@media (min-width:768px) and (max-width:1024px) {
  .slide-content { padding: 0 5vw 148px; }
  .dots { bottom: 110px; }
}
@media (min-width:480px) and (max-width:767px) {
  .slide-content { padding: 80px 5vw 140px; justify-content: flex-start; }
  .bar-tagline { display: none; }
  .dots { bottom: 110px; }
  .slide-counter { display: none; }
  .dest-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .options-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .modal-body, .modal-header, .modal-footer { padding-left: 20px; padding-right: 20px; }
}
@media (max-width:479px) {
  .slide-content { padding: 70px 5vw 130px; justify-content: flex-start; }
  .bar-tagline, .slide-counter { display: none; }
  .dots { bottom: 105px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { aspect-ratio: 16/7; }
  .options-grid.cols-2, .options-grid.cols-3 { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .field-row.cols-2 { grid-template-columns: 1fr; }
  .footer-actions { width: 100%; }
  .footer-actions .btn-next, .footer-actions .btn-whatsapp { flex: 1; justify-content: center; }
  .selection-count { width: 100%; order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .slide-bg { transform: none !important; }
}

/* ── Home sections (below hero) ── */
.home-spotlight { background: #fff; padding: 56px 5vw 64px; }
.home-spotlight-inner { max-width: 720px; margin: 0 auto; }
.home-spotlight h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 700; color: #1a2744; text-align: center; margin-bottom: 24px; }
.action-cards { display: flex; flex-direction: column; gap: 14px; }
.action-card { display: flex; align-items: center; gap: 18px; padding: 20px 22px; background: #fff; border: 1px solid #e4e6ef; border-radius: 16px; text-decoration: none; color: inherit; transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s; }
.action-card:hover { box-shadow: 0 8px 28px rgba(5, 13, 36, 0.1); transform: translateY(-2px); border-color: #d8dae6; }
.action-card-thumb { flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; overflow: hidden; background: #f4f5f8; border: 1px solid #e4e6ef; display: flex; align-items: center; justify-content: center; }
.action-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.action-card-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; background: #f4f5f8; border: 1px solid #e4e6ef; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.action-card-body { flex: 1; min-width: 0; }
.action-card-body h3 { font-size: 1rem; font-weight: 700; color: #1a2744; margin-bottom: 4px; letter-spacing: -0.01em; }
.action-card-body p { font-size: 0.82rem; color: #5a5a72; line-height: 1.55; margin-bottom: 8px; }
.action-card-cta { font-size: 0.78rem; font-weight: 700; color: #e8950a; letter-spacing: 0.02em; }
.action-card-arrow { flex-shrink: 0; font-size: 1.1rem; color: #c0c4d4; transition: color 0.2s, transform 0.2s; }
.action-card:hover .action-card-arrow { color: #e8950a; transform: translateX(3px); }
.home-why { background: #f9f9f7; padding: 72px 5vw; }
.home-why-inner { max-width: 1100px; margin: 0 auto; }
.home-why-header { text-align: center; margin-bottom: 52px; }
.home-why-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: #fdf6ec; border: 1px solid #f0d9b5; border-radius: 999px; padding: 4px 14px; color: #b36f00; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.home-why-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: #e8950a; }
.home-why-title { font-size: clamp(1.6rem, 2.4vw, 2.4rem); font-weight: 800; color: #111; letter-spacing: -0.02em; line-height: 1.2; }
.home-why-title .accent { color: #e8950a; }
.home-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.home-why-card { background: #fff; border: 1px solid #ececec; border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.25s, transform 0.25s; }
.home-why-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07); transform: translateY(-3px); }
.home-why-icon { width: 46px; height: 46px; border-radius: 12px; background: #fdf6ec; border: 1px solid #f0d9b5; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.home-why-card-title { font-size: 1rem; font-weight: 700; color: #111; }
.home-why-problem { font-size: 0.82rem; color: #999; line-height: 1.7; padding-bottom: 14px; border-bottom: 1px solid #f0f0ee; }
.home-why-solution { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; font-weight: 500; color: #333; line-height: 1.7; }
.home-why-solution-dot { width: 20px; height: 20px; border-radius: 50%; background: #fdf6ec; border: 1px solid #f0d9b5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.6rem; color: #e8950a; font-weight: 900; margin-top: 2px; }
.home-contact { background: #111; padding: 72px 5vw; }
.home-contact-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.home-contact-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(244, 197, 66, 0.12); border: 1px solid rgba(244, 197, 66, 0.3); border-radius: 999px; padding: 4px 14px; color: #f4c542; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.home-contact-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; }
.home-contact-title .accent { color: #e8950a; }
.home-contact-sub { font-size: 0.92rem; color: rgba(255, 255, 255, 0.5); line-height: 1.8; margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }
.home-contact-cards { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.home-contact-card { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 14px 20px; text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s; min-width: 200px; }
.home-contact-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(244, 197, 66, 0.4); transform: translateY(-2px); }
.home-contact-card-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.home-contact-card-icon.email { background: rgba(234, 67, 53, 0.15); }
.home-contact-card-icon.whatsapp { background: rgba(37, 211, 102, 0.15); }
.home-contact-card-icon.phone { background: rgba(66, 133, 244, 0.15); }
.home-contact-card-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.home-contact-card-label { font-size: 0.62rem; font-weight: 600; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.home-contact-card-value { font-size: 0.82rem; font-weight: 600; color: #fff; }
.home-contact-divider { display: flex; align-items: center; gap: 14px; max-width: 320px; margin: 0 auto 36px; }
.home-contact-divider-line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); }
.home-contact-divider-text { font-size: 0.7rem; color: rgba(255, 255, 255, 0.3); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.home-contact-btn { display: inline-flex; align-items: center; gap: 8px; background: #e8950a; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; border: none; border-radius: 12px; padding: 15px 30px; cursor: pointer; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s, transform 0.18s; }
.home-contact-btn:hover { background: #f4a820; transform: translateY(-2px); }
@media (max-width: 768px) { .home-why { padding: 52px 5vw; } .home-why-grid { grid-template-columns: 1fr; gap: 16px; } .home-why-card { padding: 26px 22px; } .action-card { padding: 16px 18px; gap: 14px; } }
@media (max-width: 640px) { .home-contact { padding: 52px 5vw; } .home-contact-cards { flex-direction: column; align-items: center; } .home-contact-card { width: 100%; max-width: 320px; } }
@media (max-width: 480px) { .home-spotlight { padding: 44px 5vw 52px; } .home-why { padding: 44px 5vw; } .home-why-title { font-size: 1.5rem; } .action-card-body p { font-size: 0.78rem; } }
