/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* base */
  --cream: #FBF6EE;
  --ink: #2B2B3D;
  --ink-soft: #6B6C7E;
  --card-bg: #FFFFFF;
  --border: #F0E9DD;

  /* pastels */
  --powder-blue: #CFE8F0;
  --powder-blue-deep: #4D93A8;
  --soft-peach: #FFE1C9;
  --peach-deep: #C77A3F;
  --pale-mint: #D8F0E4;
  --mint-deep: #2E8C63;
  --lavender: #E6E1F7;
  --lavender-deep: #7A6BC7;
  --blush-pink: #FBDCE4;
  --blush-deep: #C15D79;
  --pale-yellow: #FFF3C4;
  --yellow-deep: #A6862C;

  /* accent (one warm, slightly stronger tone for CTAs) */
  --accent: #FF8A65;
  --accent-dark: #E76A44;
  --accent-soft: #FFE1C9;

  /* whatsapp (softened) */
  --wa-bg: #D8F0E4;
  --wa-text: #14523A;
  --wa-bg-hover: #C4E9D6;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 6px 24px rgba(43, 43, 61, 0.07);
  --shadow-hover: 0 12px 32px rgba(43, 43, 61, 0.12);
  --max-width: 1120px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px; /* room for mobile sticky bar */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Quicksand', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.3rem);
  margin-bottom: 14px;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 640px;
  margin-bottom: 22px;
}

.lead-strong {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.section { padding: 60px 0; position: relative; }

.highlight {
  background: linear-gradient(180deg, transparent 58%, var(--soft-peach) 58%);
  padding: 0 4px;
  border-radius: 6px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.confusion-grid .reveal:nth-child(1) { transition-delay: 0s; }
.confusion-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.confusion-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.confusion-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.stage-grid .reveal:nth-child(1) { transition-delay: 0s; }
.stage-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stage-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stage-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.first-day-grid .reveal:nth-child(1) { transition-delay: 0s; }
.first-day-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.first-day-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.first-day-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.first-day-grid .reveal:nth-child(5) { transition-delay: 0.24s; }

/* ---------- Floating pastel shapes ---------- */
.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite alternate;
}
.shape-blue { width: 160px; height: 160px; background: var(--powder-blue); top: -40px; right: 6%; }
.shape-peach { width: 120px; height: 120px; background: var(--soft-peach); bottom: 10%; left: 2%; animation-duration: 8.5s; animation-delay: -2s; }
.shape-mint { width: 90px; height: 90px; background: var(--pale-mint); top: 40%; right: 22%; animation-duration: 6s; animation-delay: -4s; }
.shape-lavender { width: 150px; height: 150px; background: var(--lavender); top: -30px; left: 4%; }
.shape-blush { width: 110px; height: 110px; background: var(--blush-pink); bottom: -20px; right: 8%; animation-duration: 9s; animation-delay: -3s; }

@keyframes floaty {
  from { transform: translateY(-10px); }
  to { transform: translateY(14px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 138, 101, 0.4);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 10px 26px rgba(231, 106, 68, 0.45); }

.btn-whatsapp {
  background: var(--wa-bg);
  color: var(--wa-text);
  box-shadow: 0 6px 18px rgba(20, 82, 58, 0.12);
}
.btn-whatsapp:hover { background: var(--wa-bg-hover); }

.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand span { color: var(--accent-dark); }
.brand-tagline {
  display: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.nav-links {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--accent-dark); }

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .brand-tagline { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
}

.hero-copy { text-align: center; }
@media (min-width: 900px) {
  .hero-copy { text-align: left; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--peach-deep);
  background: var(--soft-peach);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.1rem, 6.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.subhead {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  max-width: 520px;
  margin: 0 auto 10px;
}
@media (min-width: 900px) {
  .subhead { margin: 0 0 10px; }
}

.supporting {
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 26px;
}
@media (min-width: 900px) {
  .supporting { margin: 0 0 26px; }
}

.airports {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .airports { justify-content: flex-start; }
}
.airports .dot { color: var(--accent); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}
@media (min-width: 900px) {
  .hero-ctas { justify-content: flex-start; }
}

/* ---------- Hero illustration ---------- */
.hero-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.journey-line {
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 0;
  border-left: 3px dashed var(--powder-blue-deep);
  opacity: 0.45;
  transform: translateX(-50%);
  animation: draw-line 1.1s var(--ease) 0.3s forwards;
}
@keyframes draw-line {
  from { height: 0; }
  to { height: 88%; }
}

.journey-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border-radius: 100px;
  padding: 10px 20px 10px 10px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.92rem;
  animation: bob 4.5s ease-in-out infinite;
}
.node-1 { margin-right: 34%; animation-delay: 0s; }
.node-2 { margin-left: 30%; animation-delay: 0.3s; }
.node-3 { margin-right: 30%; animation-delay: 0.6s; }
.node-4 { margin-left: 26%; animation-delay: 0.9s; }
.node-5 { margin-right: 22%; animation-delay: 1.2s; }

.node-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.node-1 .node-emoji { background: var(--powder-blue); }
.node-2 .node-emoji { background: var(--soft-peach); }
.node-3 .node-emoji { background: var(--pale-mint); }
.node-4 .node-emoji { background: var(--lavender); }
.node-5 .node-emoji { background: var(--blush-pink); }

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

@media (max-width: 899px) {
  .journey-node { padding: 8px 18px 8px 8px; font-size: 0.85rem; }
  .node-emoji { width: 36px; height: 36px; font-size: 1.1rem; }
  .node-1, .node-3, .node-5 { margin-right: 20%; margin-left: 0; }
  .node-2, .node-4 { margin-left: 20%; margin-right: 0; }
}

/* ---------- Problem / confusion cards ---------- */
.problem { text-align: center; }

.confusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto 32px;
}
@media (min-width: 640px) {
  .confusion-grid { grid-template-columns: repeat(4, 1fr); }
}
.confusion-card {
  border-radius: var(--radius-md);
  padding: 24px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.confusion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.confusion-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.card-blue { background: var(--powder-blue); }
.card-peach { background: var(--soft-peach); }
.card-mint { background: var(--pale-mint); }
.card-lavender { background: var(--lavender); }
.card-blush { background: var(--blush-pink); }
.card-yellow { background: var(--pale-yellow); }

.reassurance {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
}

/* ---------- Journey / airport section ---------- */
.journey-section { text-align: center; }
.journey-section .lead { margin-left: auto; margin-right: auto; }

.airport-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
}
.chip-blue { background: var(--powder-blue); color: var(--powder-blue-deep); }
.chip-peach { background: var(--soft-peach); color: var(--peach-deep); }
.chip-mint { background: var(--pale-mint); color: var(--mint-deep); }
.chip-lavender { background: var(--lavender); color: var(--lavender-deep); }
.chip-blush { background: var(--blush-pink); color: var(--blush-deep); }
.chip-yellow { background: var(--pale-yellow); color: var(--yellow-deep); }

.journey-subhead {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  margin-bottom: 24px;
}

.stage-grid {
  display: grid;
  gap: 18px;
  text-align: left;
  margin-bottom: 36px;
  position: relative;
}
@media (min-width: 760px) {
  .stage-grid { grid-template-columns: repeat(4, 1fr); }
  .stage-grid::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 8%;
    right: 8%;
    border-top: 3px dashed var(--soft-peach);
    z-index: 0;
  }
}
.stage-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.stage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.stage-number {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.stage-icon { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.stage-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.stage-card p { color: var(--ink-soft); font-size: 0.9rem; }

.center-cta { text-align: center; }

/* ---------- Packages ---------- */
.packages { text-align: center; }
.package-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}
@media (min-width: 760px) {
  .package-grid { grid-template-columns: 1fr 1fr; }
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 6px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-top-blue { border-top-color: var(--powder-blue); }
.card-top-peach { border-top-color: var(--soft-peach); }
.card-top-mint { border-top-color: var(--pale-mint); }
.card-top-lavender { border-top-color: var(--lavender); }
.card-top-blush { border-top-color: var(--blush-pink); }

.badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.package-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.package-tagline {
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.package-includes-note {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.check-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.check-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-deep);
  font-weight: 800;
}
.package-cta { align-self: flex-start; }

/* ---------- First-day help ---------- */
.first-day { text-align: center; }
.first-day .lead { margin-left: auto; margin-right: auto; }
.first-day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}
@media (min-width: 700px) {
  .first-day-grid { grid-template-columns: repeat(3, 1fr); }
}
.fd-card {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.fd-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.fd-card:hover .fd-icon { transform: rotate(-8deg) scale(1.1); }
.fd-icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px;
  transition: transform 0.25s var(--ease);
}
.fd-card h4 { font-size: 1rem; margin-bottom: 4px; }
.fd-card p { color: var(--ink-soft); font-size: 0.87rem; }

/* ---------- Accommodation ---------- */
.accommodation { background: var(--lavender); border-radius: var(--radius-lg); margin: 0 20px; }
.accommodation-inner { text-align: center; padding: 8px 0; }
.accommodation .lead { margin-left: auto; margin-right: auto; }
.residence-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

/* ---------- How it works (compact strip) ---------- */
.how-it-works { text-align: center; margin-bottom: 48px; }
.how-it-works h3 { font-size: 1.2rem; margin-bottom: 20px; }
.mini-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .mini-steps { flex-direction: row; }
}
.mini-step {
  flex: 1;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
@media (min-width: 640px) {
  .mini-step { flex-direction: column; text-align: center; }
}
.mini-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft-peach);
  color: var(--peach-deep);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.mini-step p { font-size: 0.86rem; font-weight: 600; }

/* ---------- Form ---------- */
.form-section { text-align: center; }

.form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(43, 43, 61, 0.1);
  padding: 32px 24px;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}
.form-card h2 { text-align: center; }
.form-card .lead { text-align: center; margin-left: auto; margin-right: auto; }

.form-row { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-grid-2 { display: grid; gap: 16px; }
@media (min-width: 520px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.form-row label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.req { color: var(--accent-dark); }

.form-row input,
.form-row select {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--powder-blue-deep);
  box-shadow: 0 0 0 4px rgba(207, 232, 240, 0.6);
}
.form-row input.invalid,
.form-row select.invalid {
  border-color: #E5484D;
}
.error-msg {
  color: #E5484D;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 1em;
}
.form-footnote {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 14px;
}

/* ---------- Reviews ---------- */
.reviews { text-align: center; }
.placeholder-flag {
  font-size: 0.85rem;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
}

.review-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px;
  margin-top: 20px;
  -webkit-overflow-scrolling: touch;
}
.review-scroller::-webkit-scrollbar { height: 6px; }
.review-scroller::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }

@media (min-width: 900px) {
  .review-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  text-align: left;
  flex: 0 0 82%;
  scroll-snap-align: start;
  border-top: 5px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
@media (min-width: 560px) {
  .review-card { flex: 0 0 46%; }
}
@media (min-width: 900px) {
  .review-card { flex: initial; }
}

.stars {
  color: var(--yellow-deep);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.review-quote {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}
.review-body { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 12px; }
.review-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* ---------- Trust + Final CTA ---------- */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--powder-blue) 0%, var(--pale-mint) 100%);
  border-radius: var(--radius-lg);
  margin: 0 20px 56px;
  padding: 56px 24px;
  overflow: hidden;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 700;
  font-size: 0.82rem;
}
.trust-list li {
  background: rgba(255, 255, 255, 0.6);
  padding: 7px 14px;
  border-radius: 100px;
}
.final-cta h2 { position: relative; z-index: 1; }
.final-cta .lead-strong { color: var(--ink); opacity: 0.8; position: relative; z-index: 1; }
.final-cta .hero-ctas { position: relative; z-index: 1; margin-bottom: 28px; }
.disclaimer {
  color: var(--ink-soft);
  font-size: 0.78rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer { padding: 32px 0 40px; text-align: center; }
.footer-brand { font-weight: 800; margin-bottom: 4px; font-family: 'Quicksand', sans-serif; }
.footer-airports { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 16px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-links a { transition: color 0.15s ease; }
.footer-links a:hover { color: var(--accent-dark); }

/* ---------- Sticky mobile WhatsApp bar ---------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 246, 238, 0.95);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
}
.mobile-sticky-cta a {
  display: block;
  text-align: center;
  background: var(--wa-bg);
  color: var(--wa-text);
  font-weight: 700;
  padding: 14px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(20, 82, 58, 0.18);
  transition: background 0.2s ease;
}
.mobile-sticky-cta a:active { background: var(--wa-bg-hover); }

@media (min-width: 768px) {
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Floating desktop WhatsApp ---------- */
.fab-whatsapp {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  align-items: center;
  gap: 8px;
  background: var(--wa-bg);
  color: var(--wa-text);
  padding: 14px 20px 14px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 28px rgba(20, 82, 58, 0.22);
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s var(--ease);
}
.fab-whatsapp:hover {
  background: var(--wa-bg-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 82, 58, 0.28);
}

@media (min-width: 768px) {
  .fab-whatsapp { display: inline-flex; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .float-shape,
  .journey-node,
  .journey-line {
    animation: none !important;
  }
  .journey-line { height: 88%; }
  .btn:hover,
  .package-card:hover,
  .confusion-card:hover,
  .stage-card:hover,
  .fd-card:hover,
  .review-card:hover,
  .fab-whatsapp:hover {
    transform: none;
  }
}
