/* ==========================================================================
   SkyNest Travels — Blue & Gold Theme
   ========================================================================== */

:root {
  --navy-950: #050f26;
  --navy-900: #081c3f;
  --navy-800: #0b2657;
  --navy-700: #123166;
  --navy-600: #1b4080;
  --navy-tint: #eef2f9;

  --gold-200: #f6e3b4;
  --gold-300: #f0d4a0;
  --gold-400: #e3bd7a;
  --gold-500: #d4a857;
  --gold-600: #c2933f;
  --gold-700: #a97a2f;

  --cream: #faf7f0;
  --ivory: #fffdf8;
  --ink: #16233f;
  --ink-soft: #4d5a78;
  --line: #e4dcc8;

  --gradient-gold: linear-gradient(120deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  --gradient-navy: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);

  --shadow-soft: 0 20px 45px -20px rgba(8, 28, 63, 0.35);
  --shadow-card: 0 14px 30px -16px rgba(8, 28, 63, 0.28);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Default icon sizing — every bare <svg> icon defaults to a text-sized icon.
   More specific rules below (.icon-badge svg, .pkg-visual svg, etc.) override this. */
svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { line-height: 1.75; color: var(--ink-soft); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section--navy { background: var(--gradient-navy); color: #fff; }
.section--navy p { color: rgba(255,255,255,.75); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
/* Light cards placed inside a navy section keep dark text on their own light background */
.section--navy .card h3, .section--navy .card h4 { color: var(--navy-900); }
.section--navy .card p { color: var(--ink-soft); }
.section--navy .card .pkg-price { color: var(--navy-900); }
.section--cream { background: var(--ivory); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold-300); }
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: 0 14px 28px -12px rgba(196, 148, 65, 0.55);
}
.btn-gold:hover { box-shadow: 0 18px 34px -12px rgba(196, 148, 65, 0.7); }
.btn-outline-light {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-navy {
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-900); color: #fff; }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 15, 38, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.18);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(5, 15, 38, 0.98);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; transition: transform .3s ease; }
.brand:hover img { transform: scale(1.03); }
.brand-word-logo { height: 42px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.82);
  padding: 6px 2px;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold-300); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { transform: scaleX(1); }

.dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  border: 1px solid var(--line);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: block;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
}
.dropdown-panel a::after { display: none; }
.dropdown-panel a:hover { background: var(--navy-tint); color: var(--navy-900); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-300); font-size: 13.5px; font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px; width: 42px; height: 40px;
  color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-950);
  padding: 10px 24px 26px;
  border-top: 1px solid rgba(212,168,87,.18);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}
.mobile-nav .btn { margin-top: 14px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
  padding: 110px 0 130px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(212,168,87,.16), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(212,168,87,.12), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(212,168,87,.10), transparent 40%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  top: 60px; right: 40px;
  width: 140px; height: 110px;
  background-image: radial-gradient(var(--gold-500) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .5;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,168,87,.12);
  border: 1px solid rgba(212,168,87,.35);
  color: var(--gold-300);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.78); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--gold-300); }
.hero-stats div span { font-size: 12.5px; letter-spacing: .05em; color: rgba(255,255,255,.6); text-transform: uppercase; }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,168,87,.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.hero-card .price-tag {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--gold-300);
}
.hero-card .price-tag small { display: block; font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .05em; text-transform: uppercase; margin-top: 6px;}
.hero-card ul { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.hero-card ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.hero-card .icon-chip { color: var(--gold-400); flex-shrink: 0; }

/* ---- Icon chips / SVG ---- */
.icon-badge {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--gold-300);
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.light {
  background: var(--navy-tint);
  color: var(--navy-800);
}

/* ---- Marquee strip ---- */
.strip {
  background: var(--navy-950);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,168,87,.15);
  border-bottom: 1px solid rgba(212,168,87,.15);
}
.strip-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
  width: max-content;
}
.strip-track span {
  color: var(--gold-300);
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: .05em;
  display: inline-flex; align-items: center; gap: 14px;
}
.strip-track span::after { content: '✦'; color: rgba(212,168,87,.4); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Cards grid ---- */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

/* Package card */
.pkg-card { position: relative; }
.pkg-visual {
  position: relative;
  height: 200px;
  background: var(--gradient-navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pkg-visual svg { width: 74px; height: 74px; color: var(--gold-300); opacity: .9; position: relative; z-index: 2; }
.pkg-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--gold-500) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: .25;
  z-index: 1;
}
.pkg-visual img.pkg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.pkg-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,15,38,.08) 0%, rgba(5,15,38,.15) 55%, rgba(5,15,38,.78) 100%);
  z-index: 1;
}
.card:hover .pkg-visual img.pkg-photo { transform: scale(1.08); }
.pkg-visual .pkg-icon-chip {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(5,15,38,.55);
  border: 1px solid rgba(212,168,87,.4);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
}
.pkg-visual .pkg-icon-chip svg { width: 19px; height: 19px; }
.pkg-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  color: var(--navy-900);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; z-index: 3;
}
.pkg-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-body h3 { font-size: 21px; margin-bottom: 0; }
.pkg-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }
.pkg-price { font-family: var(--font-head); font-size: 20px; color: var(--navy-900); }
.pkg-price span { font-family: var(--font-body); font-size: 11.5px; color: var(--ink-soft); display: block; text-transform: uppercase; letter-spacing: .04em; }
.pkg-body p { font-size: 14.5px; margin-bottom: 4px; }

/* Service card */
.service-card { padding: 32px 28px; text-align: left; }
.service-card h3 { font-size: 18px; margin: 18px 0 8px; }
.service-card p { font-size: 14.5px; margin: 0; }

/* Feature list w/ icon */
.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row h4 { font-size: 16.5px; margin-bottom: 6px; }
.feature-row p { font-size: 14px; margin: 0; }

/* Divider ornament */
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 18px; color: var(--gold-500); }
.ornament .line { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.ornament .line.rev { background: linear-gradient(90deg, currentColor, transparent); }

/* CTA banner */
.cta-banner {
  background: var(--gradient-navy);
  border-radius: 28px;
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  color: #fff;
}
.cta-banner::after {
  content: '';
  position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,87,.22), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 0; max-width: 460px; }

/* Promo band */
.promo-band {
  background: var(--gradient-gold);
  color: var(--navy-950);
  padding: 16px 0;
}
.promo-band .container { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.promo-band strong { font-family: var(--font-head); font-size: 16px; }
.promo-band span { font-size: 13.5px; font-weight: 600; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.68); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 46px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14.5px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.62); }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 6px; color: rgba(255,255,255,.62); }
.footer-contact svg { flex-shrink: 0; color: var(--gold-400); margin-top: 3px; width:16px; height:16px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
}
.social-row a:hover { background: var(--gradient-gold); color: var(--navy-950); border-color: transparent; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--gradient-navy);
  color: #fff;
  padding: 74px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(212,168,87,.16), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-300); }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 620px; margin-bottom: 0; }

/* Content blocks (legal pages) */
.prose h2 { font-size: 22px; margin-top: 40px; }
.prose h3 { font-size: 17px; margin-top: 24px; color: var(--navy-800); }
.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--navy-900); }
.legal-updated {
  display: inline-block;
  background: var(--navy-tint);
  color: var(--navy-800);
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
  font-weight: 600;
}
.legal-toc {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-bottom: 10px;
}
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.legal-toc ol { padding-left: 18px; list-style: decimal; }
.legal-toc li { font-size: 14px; margin-bottom: 8px; }
.legal-toc a { color: var(--navy-800); }
.legal-toc a:hover { color: var(--gold-700); }

/* Layout helpers */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 22px; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 13px; border-radius: 999px; background: var(--navy-tint); color: var(--navy-800);
}

/* Panel / info box */
.panel {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.panel-navy { background: var(--gradient-navy); color: #fff; border: none; }
.panel-navy p, .panel-navy li { color: rgba(255,255,255,.78); }
.panel-navy h2, .panel-navy h3, .panel-navy h4 { color: #fff; }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; letter-spacing: .02em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(212,168,87,.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: -6px; }

/* Table (itinerary/inclusions) */
.check-list li, .cross-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 10px; }
.check-list svg { color: #2e8b57; flex-shrink: 0; margin-top: 2px; width:17px;height:17px; }
.cross-list svg { color: #c1443c; flex-shrink: 0; margin-top: 2px; width:17px;height:17px; }

.itinerary-item {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.itinerary-item:last-child { border-bottom: none; }
.itinerary-day {
  flex-shrink: 0; width: 74px; height: 74px; border-radius: 16px;
  background: var(--gradient-navy); color: var(--gold-300);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.itinerary-day span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); }
.itinerary-day strong { font-size: 22px; }
.itinerary-item h4 { font-size: 16.5px; margin-bottom: 6px; }
.itinerary-item p { font-size: 14px; margin: 0; }

/* Payment / booking */
.summary-line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14.5px; }
.summary-line.total { border-bottom: none; padding-top: 18px; font-size: 18px; font-family: var(--font-head); color: var(--gold-300); }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 13px; border-radius: 999px;
  color: rgba(255,255,255,.8);
}

/* Map */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.hide-mobile { display: block; }
.show-mobile { display: none; }

/* Back to top */
.back-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  border: none; cursor: pointer;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.wa-float svg { width: 26px; height: 26px; }
.social-row svg { width: 17px; height: 17px; }
.promo-band svg { width: 22px; height: 22px; }
.ornament svg { width: 15px; height: 15px; }
.hero-badge svg { width: 17px; height: 17px; }

/* ---- Motion / Reveal animations ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-1.in-view { transition-delay: .06s; }
  .reveal-2.in-view { transition-delay: .12s; }
  .reveal-3.in-view { transition-delay: .18s; }
  .reveal-4.in-view { transition-delay: .24s; }

  .hero h1, .hero p.lead, .hero-actions, .hero-stats, .hero-card, .hero-badge {
    animation: fade-up .8s cubic-bezier(.2,.7,.2,1) both;
  }
  .hero-badge { animation-delay: .02s; }
  .hero h1 { animation-delay: .08s; }
  .hero p.lead { animation-delay: .16s; }
  .hero-actions { animation-delay: .24s; }
  .hero-stats { animation-delay: .3s; }
  .hero-card { animation-delay: .18s; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes twinkle {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.ornament svg { animation: twinkle 2.6s ease-in-out infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge { animation-name: fade-up; }
.wa-float { animation: pulse-ring 2.4s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), var(--shadow-soft); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), var(--shadow-soft); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), var(--shadow-soft); }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .nav-desktop, .header-cta .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px; flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 44px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 40px 0 56px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { border-radius: 20px; padding: 32px 24px; }
  .itinerary-item { flex-direction: column; gap: 12px; }
  .header-inner { padding: 10px 16px; }
  .brand img { height: 32px; }
  .brand-word-logo { height: 32px; }
  .nav-toggle { width: 44px; height: 44px; }
  .btn { padding: 14px 26px; font-size: 14px; }
  .hero-badge { font-size: 11px; padding: 7px 14px; }
  .hero-stats { gap: 22px; }
  .pkg-visual { height: 168px; }
  .section-head { margin-bottom: 34px; }
  .container { padding: 0 18px; }
  .panel, .legal-toc { padding: 22px; }
  .wa-float { width: 50px; height: 50px; bottom: 18px; left: 18px; }
  .back-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }
  .cta-banner h2 { font-size: 24px; }
  .two-col[style*="0.8fr"] { grid-template-columns: 1fr !important; }
}
