/* ═══════════════════════════════════════════════════════════════════════════
   FinlandPackage.com – Global Design System v2
   Premium Nordic aesthetic. Curvy, modern, refined.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --fp-blue:         #1a56db;
  --fp-blue-dark:    #1341b8;
  --fp-blue-mid:     #2563EB;
  --fp-blue-light:   #EFF6FF;
  --fp-blue-ice:     #DBEAFE;
  --fp-orange:       #f56f00;
  --fp-orange-dark:  #dc6300;
  --fp-teal:         #0d9488;
  --fp-aurora:       #6366f1;

  /* Map */
  --fp-map-route:    #93C5FD;
  --fp-map-marker:   #1a56db;
  --fp-map-active:   #f56f00;

  /* Neutrals */
  --fp-text:         #0f172a;
  --fp-text-2:       #475569;
  --fp-text-3:       #94a3b8;
  --fp-border:       #e2e8f0;
  --fp-border-2:     #cbd5e1;
  --fp-bg:           #f8fafc;
  --fp-bg-2:         #f1f5f9;
  --fp-white:        #ffffff;

  /* Semantic */
  --fp-green:        #16a34a;
  --fp-red:          #dc2626;
  --fp-amber:        #d97706;
  --fp-wa:           #25D366;
  --fp-wa-dark:      #1db954;

  /* Typography */
  --fp-font-head:    'Plus Jakarta Sans', sans-serif;
  --fp-font-body:    'DM Sans', sans-serif;

  /* Radii — curvy */
  --fp-radius:       14px;
  --fp-radius-sm:    8px;
  --fp-radius-lg:    24px;
  --fp-radius-xl:    32px;
  --fp-radius-full:  9999px;

  /* Shadows */
  --fp-shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --fp-shadow:       0 8px 24px rgba(0,0,0,.09);
  --fp-shadow-lg:    0 20px 60px rgba(0,0,0,.13);
  --fp-shadow-blue:  0 8px 32px rgba(26,86,219,.22);

  /* Layout */
  --fp-max-width:    1180px;
  --fp-nav-height:   68px;
  --fp-transition:   .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 15px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* offset for sticky nav */
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}
body {
  font-family: var(--fp-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--fp-text);
  background: var(--fp-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 {
  font-family: var(--fp-font-head);
  line-height: 1.12;
  letter-spacing: -.025em;
}
a    { color: inherit; text-decoration: none; }
button { font-family: var(--fp-font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--fp-font-body); }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.fp-container { max-width: var(--fp-max-width); margin: 0 auto; padding: 0 28px; }
.fp-section   { padding: 88px 0; }
.fp-section-alt { background: var(--fp-bg); }

/* ── Labels & Headings ────────────────────────────────────────────────────── */
.fp-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fp-font-body);
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fp-blue);
  margin-bottom: 12px;
}
.fp-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--fp-blue); border-radius: 2px;
}
.fp-section-title {
  font-family: var(--fp-font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: var(--fp-text);
  margin-bottom: 10px; font-style: italic;
}
.fp-section-sub {
  font-size: 15.5px; color: var(--fp-text-2);
  margin-bottom: 44px; max-width: 580px; line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.fp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--fp-radius-full);
  font-family: var(--fp-font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all var(--fp-transition);
  text-decoration: none; border: none; white-space: nowrap; line-height: 1;
  letter-spacing: -.01em;
}
.fp-btn:hover { transform: translateY(-2px); }
.fp-btn:active { transform: translateY(0); }
.fp-btn--primary { background: var(--fp-blue); color: #fff; box-shadow: 0 4px 16px rgba(26,86,219,.3); }
.fp-btn--primary:hover { background: var(--fp-blue-dark); box-shadow: 0 8px 24px rgba(26,86,219,.4); }
.fp-btn--orange  { background: var(--fp-orange); color: #fff; box-shadow: 0 4px 16px rgba(245,111,0,.3); }
.fp-btn--orange:hover { background: var(--fp-orange-dark); box-shadow: 0 8px 24px rgba(245,111,0,.4); }
.fp-btn--outline { background: transparent; color: var(--fp-text); border: 2px solid var(--fp-border-2); }
.fp-btn--outline:hover { border-color: var(--fp-blue); color: var(--fp-blue); background: var(--fp-blue-light); }
.fp-btn--ghost   { background: transparent; color: var(--fp-text-2); border: 1.5px solid var(--fp-border); }
.fp-btn--ghost:hover { background: var(--fp-bg-2); color: var(--fp-text); }
.fp-btn--wa      { background: var(--fp-wa); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.fp-btn--wa:hover { background: var(--fp-wa-dark); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.fp-btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.fp-btn--white-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.fp-btn--sm  { padding: 8px 18px; font-size: 13px; }
.fp-btn--lg  { padding: 15px 32px; font-size: 15.5px; }
.fp-btn--full { width: 100%; }
.fp-btn--icon { padding: 10px; }
.fp-btn svg  { flex-shrink: 0; }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.fp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--fp-radius-full);
  font-size: 12px; font-weight: 700;
}
.fp-badge--blue  { background: var(--fp-blue-light); color: var(--fp-blue); }
.fp-badge--green { background: #dcfce7; color: #15803d; }
.fp-badge--amber { background: #fef9c3; color: #a16207; }
.fp-badge--grey  { background: var(--fp-bg-2); color: var(--fp-text-2); }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.fp-card {
  background: var(--fp-white); border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg); overflow: hidden;
}
.fp-card--hover { transition: all var(--fp-transition); }
.fp-card--hover:hover { transform: translateY(-4px); box-shadow: var(--fp-shadow-lg); border-color: transparent; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.fp-input, .fp-textarea, .fp-select {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--fp-border); border-radius: var(--fp-radius);
  font-family: var(--fp-font-body); font-size: 14px;
  color: var(--fp-text); background: var(--fp-white);
  outline: none; transition: border var(--fp-transition);
}
.fp-input:focus, .fp-textarea:focus, .fp-select:focus {
  border-color: var(--fp-blue);
  box-shadow: 0 0 0 4px rgba(26,86,219,.08);
}
.fp-textarea { resize: vertical; line-height: 1.6; }
.fp-label-text { font-size: 13px; font-weight: 600; color: var(--fp-text-2); margin-bottom: 6px; display: block; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.fp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--fp-nav-height);
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px) saturate(2);
  border-bottom: 1px solid rgba(0,0,0,.05);
  display: flex; align-items: center;
  transition: box-shadow var(--fp-transition);
}
.fp-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.fp-nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.fp-nav__logo { display: flex; align-items: center; }
.fp-nav__logo img { height: 40px; width: auto; }
.fp-nav__logo-text { font-family: var(--fp-font-head); font-weight: 900; font-size: 20px; color: var(--fp-text); }
.fp-nav__logo-text span { color: var(--fp-blue); }
.fp-nav__links { display: flex; align-items: center; gap: 2px; }
.fp-nav__link {
  padding: 8px 15px; border-radius: var(--fp-radius-full);
  font-size: 13.5px; font-weight: 600; color: var(--fp-text-2);
  transition: all var(--fp-transition);
}
.fp-nav__link:hover { background: var(--fp-bg); color: var(--fp-text); }
.fp-nav__link.active { color: var(--fp-blue); background: var(--fp-blue-light); }
.fp-nav__actions { display: flex; align-items: center; gap: 8px; }
.fp-nav__mobile-toggle { display: none; padding: 8px; border-radius: 10px; color: var(--fp-text-2); }

/* Mobile Nav */
@media (max-width: 900px) {
  .fp-nav__links, .fp-nav__actions { display: none; }
  .fp-nav__mobile-toggle { display: flex; align-items: center; justify-content: center; }
}
.fp-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(15,23,42,.97); backdrop-filter: blur(12px);
  padding: 100px 28px 40px;
  flex-direction: column; gap: 4px;
}
.fp-mobile-nav.open { display: flex; }
.fp-mobile-nav__link {
  display: block; padding: 15px 18px; border-radius: var(--fp-radius);
  font-size: 18px; font-weight: 700; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all var(--fp-transition);
}
.fp-mobile-nav__link:hover { color: #fff; background: rgba(255,255,255,.07); }
.fp-mobile-nav__cta { margin-top: 20px; }

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.fp-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.fp-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--fp-transition); }
.fp-breadcrumb a:hover { color: #fff; }
.fp-breadcrumb span:last-child { color: rgba(255,255,255,.88); }

/* ── Facts Bar ────────────────────────────────────────────────────────────── */
.fp-facts {
  background: var(--fp-white);
  border-bottom: 1px solid var(--fp-border);
  padding: 0;
}
.fp-facts__inner {
  display: flex; flex-wrap: wrap;
  border-left: 1px solid var(--fp-border);
}
.fp-fact {
  flex: 1 1 140px; min-width: 120px;
  padding: 22px 24px;
  border-right: 1px solid var(--fp-border);
  transition: background var(--fp-transition);
}
.fp-fact:hover { background: var(--fp-bg); }
.fp-fact__label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--fp-text-3); margin-bottom: 5px;
}
.fp-fact__value {
  font-family: var(--fp-font-head); font-size: 16px; font-weight: 800;
  color: var(--fp-text); font-style: italic;
}

/* ── Keyword Pills ────────────────────────────────────────────────────────── */
.fp-kw-strip {
  background: var(--fp-white);
  border-bottom: 1px solid var(--fp-border);
  padding: 16px 0;
}
.fp-kw-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.fp-kw-label {
  font-size: 11.5px; font-weight: 700; color: var(--fp-text-3);
  letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0;
}
.fp-kw-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fp-kw-tag {
  display: inline-flex; align-items: center;
  padding: 6px 16px; border-radius: var(--fp-radius-full);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid; transition: opacity var(--fp-transition);
  white-space: nowrap;
}
.fp-kw-tag:hover { opacity: .75; }
@media (max-width: 640px) {
  .fp-kw-label { display: none; }
  .fp-kw-tag { font-size: 12px; padding: 5px 13px; }
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.fp-pricing-box {
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
  border-radius: var(--fp-radius-xl);
  padding: 36px; color: #fff;
  box-shadow: 0 24px 64px rgba(15,23,42,.35);
  position: relative; overflow: hidden;
}
.fp-pricing-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,.3), transparent 70%);
  border-radius: 50%;
}
.fp-pricing-from { font-size: 12px; font-weight: 600; opacity: .6; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.fp-pricing-price { font-family: var(--fp-font-head); font-size: clamp(36px, 5vw, 52px); font-weight: 900; line-height: 1; margin-bottom: 4px; font-style: italic; }
.fp-pricing-per  { font-size: 13px; opacity: .65; margin-bottom: 24px; }
.fp-pricing-breakdown { background: rgba(255,255,255,.08); border-radius: 16px; padding: 18px; margin-bottom: 18px; }
.fp-pricing-row  { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.fp-pricing-row:last-child { border-bottom: none; }
.fp-pricing-row.total { font-weight: 800; font-size: 16px; padding-top: 12px; color: #fbbf24; }
.fp-pricing-note { font-size: 12.5px; opacity: .6; margin-bottom: 16px; line-height: 1.5; }

/* ── Itinerary ────────────────────────────────────────────────────────────── */
.fp-itinerary-day {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 0 24px; position: relative; padding-bottom: 32px;
}
.fp-itinerary-day:last-child { padding-bottom: 0; }
.fp-itinerary-day::before {
  content: ''; position: absolute; left: 32px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--fp-border), transparent);
  transform: translateX(-50%);
}
.fp-itinerary-day:last-child::before { display: none; }
.fp-day-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fp-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fp-font-head); font-weight: 900; font-size: 17px;
  font-style: italic; flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
}
.fp-day-body { padding-top: 8px; }
.fp-day-title {
  font-family: var(--fp-font-head); font-size: 20px; font-weight: 800;
  color: var(--fp-text); margin-bottom: 10px; font-style: italic;
}
.fp-day-desc { font-size: 14.5px; color: var(--fp-text-2); line-height: 1.8; }
.fp-day-activities {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.fp-day-activity {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fp-bg); border: 1.5px solid var(--fp-border);
  padding: 5px 13px; border-radius: var(--fp-radius-full);
  font-size: 13px; font-weight: 600; color: var(--fp-text-2);
}

/* ── Inclusions / Exclusions ──────────────────────────────────────────────── */
.fp-inc-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--fp-border);
  font-size: 14.5px; color: var(--fp-text-2); line-height: 1.6;
}
.fp-inc-item:last-child { border-bottom: none; }
.fp-inc-icon { flex-shrink: 0; margin-top: 2px; font-size: 16px; }

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.fp-gallery--grid {
  display: grid; gap: 12px; border-radius: var(--fp-radius-lg); overflow: hidden;
}
.fp-gallery--grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fp-gallery--grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fp-gallery--grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.fp-gallery--grid img { width: 100%; height: 240px; object-fit: cover; display: block; border-radius: 12px; transition: transform .3s; }
.fp-gallery--grid img:hover { transform: scale(1.03); }
.fp-gallery--single img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--fp-radius-xl); }
.fp-gallery--slider { position: relative; overflow: hidden; border-radius: var(--fp-radius-xl); }
.fp-slider-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.fp-slider-track img { min-width: 100%; max-height: 520px; object-fit: cover; }
.fp-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(0,0,0,.45);
  border: none; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; transition: background .2s; z-index: 2;
  backdrop-filter: blur(8px);
}
.fp-slider-btn:hover { background: rgba(0,0,0,.7); }
.fp-slider-btn--prev { left: 16px; }
.fp-slider-btn--next { right: 16px; }
.fp-gallery__counter {
  position: absolute; bottom: 16px; right: 20px;
  background: rgba(0,0,0,.5); color: #fff; padding: 5px 13px;
  border-radius: var(--fp-radius-full); font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.fp-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.93); align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.fp-lightbox.open { display: flex; }
.fp-lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.fp-lightbox__close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,.7); font-size: 32px; cursor: pointer;
  transition: color .2s; background: none; border: none; line-height: 1;
}
.fp-lightbox__close:hover { color: #fff; }
.fp-lightbox__prev, .fp-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.7); font-size: 40px; cursor: pointer;
  background: none; border: none; line-height: 1; padding: 8px;
  transition: color .2s;
}
.fp-lightbox__prev { left: 16px; }
.fp-lightbox__next { right: 16px; }
.fp-lightbox__prev:hover, .fp-lightbox__next:hover { color: #fff; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.fp-faq-item {
  border: 1.5px solid var(--fp-border); border-radius: var(--fp-radius-lg);
  margin-bottom: 10px; overflow: hidden;
  transition: border-color var(--fp-transition);
}
.fp-faq-item:hover { border-color: var(--fp-blue-ice); }
.fp-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: none; border: none;
  text-align: left; font-family: var(--fp-font-body);
  font-size: 15px; font-weight: 700; color: var(--fp-text);
  cursor: pointer; gap: 12px;
}
.fp-faq-icon { font-size: 20px; flex-shrink: 0; color: var(--fp-blue); transition: transform .25s; }
.fp-faq-item.open .fp-faq-icon { transform: rotate(45deg); }
.fp-faq-a { display: none; padding: 0 22px 18px; font-size: 14.5px; color: var(--fp-text-2); line-height: 1.8; }
.fp-faq-item.open .fp-faq-a { display: block; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.fp-review {
  background: var(--fp-white); border: 1.5px solid var(--fp-border);
  border-radius: var(--fp-radius-xl); padding: 28px;
  transition: all var(--fp-transition);
}
.fp-review:hover { box-shadow: var(--fp-shadow); border-color: var(--fp-blue-ice); }
.fp-review__stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.fp-review__text { font-size: 14.5px; color: var(--fp-text-2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.fp-review__author { display: flex; align-items: center; gap: 12px; }
.fp-review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--fp-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fp-font-head); font-weight: 800; font-size: 16px; font-style: italic;
  flex-shrink: 0;
}
.fp-review__name { font-weight: 700; font-size: 14.5px; color: var(--fp-text); }
.fp-review__from { font-size: 12.5px; color: var(--fp-text-3); margin-top: 2px; }

/* ── Map Section ──────────────────────────────────────────────────────────── */
.fp-map-wrap {
  border-radius: var(--fp-radius-xl); overflow: hidden;
  border: 1.5px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
}

/* ── Enquiry Form ─────────────────────────────────────────────────────────── */
.fp-enquiry-wrap {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: var(--fp-radius-xl); padding: 48px;
  position: relative; overflow: hidden;
}
.fp-enquiry-wrap::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%);
  border-radius: 50%;
}
.fp-enquiry-field {
  display: flex; flex-direction: column; gap: 6px;
}
.fp-enquiry-field label {
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: .04em; text-transform: uppercase;
}
.fp-enquiry-input {
  padding: 12px 16px; border-radius: var(--fp-radius);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08); color: #fff;
  font-family: var(--fp-font-body); font-size: 14px; outline: none;
  transition: border var(--fp-transition);
  -webkit-appearance: none;
}
.fp-enquiry-input::placeholder { color: rgba(255,255,255,.35); }
.fp-enquiry-input:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); }

/* ── Copy URL ─────────────────────────────────────────────────────────────── */
.fp-copy-url { position: relative; }
.fp-copy-confirm {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--fp-text); color: #fff;
  padding: 5px 12px; border-radius: var(--fp-radius-full);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.fp-copy-confirm.show { opacity: 1; }

/* ── Bottom CTA ───────────────────────────────────────────────────────────── */
.fp-bottom-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1a1a4e 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.fp-bottom-cta::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,.2), transparent 70%);
}
.fp-bottom-cta h2 {
  font-family: var(--fp-font-head); font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: #fff; margin-bottom: 14px; font-style: italic;
  position: relative;
}
.fp-bottom-cta p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; position: relative; }
.fp-bottom-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ── Sticky CTA ───────────────────────────────────────────────────────────── */
.fp-sticky-cta {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  z-index: 800; display: flex; align-items: center; gap: 10px;
  background: var(--fp-white); border: 1.5px solid var(--fp-border);
  border-radius: var(--fp-radius-full); padding: 8px 16px 8px 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0; white-space: nowrap;
}
.fp-sticky-cta.visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Content Blocks ───────────────────────────────────────────────────────── */
.fp-content-block { padding: 56px 0; border-top: 1px solid var(--fp-border); }
.fp-content-block + .fp-content-block { border-top: none; padding-top: 0; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fp-section   { padding: 60px 0; }
  .fp-container { padding: 0 18px; }
  .fp-facts__inner { flex-wrap: wrap; }
  .fp-fact { flex: 1 1 calc(50% - 1px); }
  .fp-gallery--grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .fp-gallery--grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .fp-gallery--grid img { height: 180px; }
  .fp-pricing-box { padding: 28px; }
  .fp-enquiry-wrap { padding: 32px 20px; }
  .fp-bottom-cta { padding: 60px 0; }
  .fp-itinerary-day { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .fp-day-num { width: 44px; height: 44px; font-size: 15px; }
}
@media (max-width: 480px) {
  .fp-facts__inner { flex-direction: column; }
  .fp-gallery--grid { grid-template-columns: 1fr; }
}
/* ── Footer mascot overflow fix ──────────────────────────────────────────── */
footer { overflow: hidden; }
footer img { max-width: 100%; }
/* ── Footer mobile fix ───────────────────────────────────────────────────── */
@media(max-width:960px){
  footer img { max-width: 200px; display: block; margin: 0 auto; }
  footer { overflow: hidden; }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.fp-footer { background: #0A1628; color: rgba(255,255,255,.7); }
.fp-footer__main { padding: 60px 0 40px; }
.fp-footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.fp-footer__logo { margin-bottom: 16px; }
.fp-footer__logo img { height: 56px; width: auto; }
.fp-footer__logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.fp-footer__logo-text span { color: #60A5FA; }
.fp-footer__desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 20px; color: rgba(255,255,255,.55); }
.fp-footer__social { display: flex; gap: 10px; }
.fp-footer__social-link { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: .15s; text-decoration: none; }
.fp-footer__social-link:hover { background: rgba(255,255,255,.15); color: #fff; }
.fp-footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.fp-footer__links { display: flex; flex-direction: column; gap: 8px; }
.fp-footer__link { font-size: 13.5px; color: rgba(255,255,255,.6); text-decoration: none; transition: .15s; }
.fp-footer__link:hover { color: #fff; }
.fp-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.35); }
.fp-footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.fp-footer__bottom-link { color: rgba(255,255,255,.35); text-decoration: none; transition: .15s; }
.fp-footer__bottom-link:hover { color: rgba(255,255,255,.7); }
@media(max-width:900px) {
  .fp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:560px) {
  .fp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .fp-footer__main { padding: 40px 0 28px; }
  .fp-footer__bottom { flex-direction: column; text-align: center; }
}