/* ============================================
   EASY GO BOAT TRIP — Ionian Riviera
   Design tokens
   ============================================ */
:root {
  /* Palette — drawn from the Ionian: deep navy hull, light spray, turquoise shallows, warm sand */
  --navy:       #0B2D4E;   /* deep hull / primary text on light */
  --navy-soft:  #143a63;
  --azure:      #1B9CD8;   /* brand accent — light boat blue */
  --azure-deep: #0E7BB0;
  --turquoise:  #34C6C6;   /* shallows */
  --sand:       #F3ECDD;   /* warm beach light */
  --foam:       #F7FBFD;   /* near-white spray */
  --ink:        #0A1A2A;
  --muted:      #5C7080;
  --line:       rgba(11,45,78,0.10);
  --white:      #ffffff;

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(11,45,78,0.06);
  --shadow-md: 0 12px 40px rgba(11,45,78,0.12);
  --shadow-lg: 0 24px 70px rgba(11,45,78,0.20);

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}

section { position: relative; }

/* Section heading device */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--azure-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--azure);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  margin-top: 0.8rem;
  max-width: 16ch;
}
.section-lede {
  color: var(--muted);
  max-width: 52ch;
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--azure);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(27,156,216,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(27,156,216,0.45); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.42); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--azure); color: var(--azure-deep); transform: translateY(-3px); }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  background: rgba(247,251,253,0.96);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.site-header.scrolled {
  background: #f7fbfd;
  padding: 0.4rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 60px; width: auto; transition: height 0.4s var(--ease); display: block; }
.scrolled .brand img { height: 50px; }
.brand-name { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--navy);
  position: relative;
  transition: color 0.3s;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--azure);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--azure); }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

/* Language switcher */
.lang-switch { display: flex; gap: 0.2rem; align-items: center; }
.lang-switch button {
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0.5rem; border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  text-transform: uppercase;
}
.lang-switch button.active { color: var(--white); background: var(--azure); }
.lang-switch button:hover { color: var(--azure); }
.lang-switch button.active:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9.5px; }
.nav-toggle span:nth-child(3) { top: 19px; }
.nav-toggle.open span:nth-child(1) { top: 9.5px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9.5px; transform: rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,45,78,0.85) 0%, rgba(11,45,78,0.45) 50%, rgba(14,123,176,0.25) 100%);
}
.hero-content { max-width: 760px; padding-top: 6rem; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.98;
  margin: 1.3rem 0;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--turquoise);
}
.hero-eyebrow {
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.hero-eyebrow::before { content:""; width: 34px; height: 2px; background: var(--turquoise); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 48ch;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px; position: relative;
}
.scroll-cue .mouse::after {
  content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; background: rgba(255,255,255,0.8); border-radius: 2px;
  animation: scrollwheel 1.8s var(--ease) infinite;
}
@keyframes scrollwheel { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:18px} 100%{opacity:0} }

/* Hero quick facts strip */
.hero-facts {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(11,45,78,0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
}
.hero-facts .container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-block: 1.1rem; }
.fact { display: flex; align-items: center; gap: 0.7rem; color: #fff; font-size: 0.9rem; }
.fact svg { width: 22px; height: 22px; stroke: var(--turquoise); flex-shrink: 0; }
.fact strong { font-weight: 600; }
.fact span { color: rgba(255,255,255,0.7); display: block; font-size: 0.78rem; }
.fact-meeting-links { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.25rem; }
.fact-map-link { display: flex; align-items: flex-start; gap: 0.35rem; color: rgba(255,255,255,0.7); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; line-height: 1.35; }
.fact-map-link::before { content: "📍"; font-size: 0.72rem; flex-shrink: 0; }
.fact-map-link:hover { color: var(--turquoise); text-decoration: underline; }
.contact-map-link { display: flex; align-items: flex-start; gap: 0.4rem; color: var(--azure); font-size: 0.92rem; text-decoration: none; transition: color 0.2s; margin-top: 0.3rem; line-height: 1.4; }
.contact-map-link::before { content: "📍"; font-size: 0.85rem; flex-shrink: 0; }
.contact-map-link:hover { color: var(--navy); text-decoration: underline; }

/* ============================================
   Intro / value
   ============================================ */
.intro { padding: clamp(5rem, 10vw, 8rem) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.intro-media .badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.intro-media .badge .num { font-family: var(--display); font-size: 2.4rem; color: var(--azure); font-weight: 600; line-height: 1; }
.intro-media .badge .lbl { font-size: 0.85rem; color: var(--muted); line-height: 1.3; }

.value-list { margin-top: 2rem; display: grid; gap: 1.3rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item .ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--azure), var(--turquoise));
  display: grid; place-items: center;
}
.value-item .ic svg { width: 24px; height: 24px; stroke: #fff; }
.value-item h4 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.value-item p { color: var(--muted); font-size: 0.95rem; }

/* ============================================
   Itinerary / Journey map
   ============================================ */
.journey { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.journey::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(52,198,198,0.12), transparent 50%);
}
.journey .eyebrow { color: var(--turquoise); }
.journey .eyebrow::before { background: var(--turquoise); }
.journey .section-title { color: #fff; }
.journey-head { position: relative; z-index: 1; max-width: 720px; margin-bottom: 3rem; }
.journey-head .section-lede { color: rgba(255,255,255,0.7); }

/* Journey 2-column layout */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.journey-stops { min-width: 0; }
.journey-return {
  margin-top: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-style: italic;
}

/* Desktop map panel */
.journey-map-panel {
  position: sticky;
  top: 100px;
}
.journey-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 540px;
  border: 1px solid rgba(255,255,255,0.1);
}
.journey-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Illustrated journey map ── */
.jmap {
  position: relative;
  width: 100%;
  height: 100%;
}
.jmap-svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}
.jmap-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.jmap-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: all;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: transform 0.2s;
}
.jmap-pin:hover,
.jmap-pin.active { transform: translate(-50%, -100%) scale(1.2); z-index: 10; }
.jmap-pin-inner {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #2dd4bf;
  border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #0a1e30;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  transition: background 0.2s;
}
.jmap-pin.active .jmap-pin-inner { background: #fff; color: #0a1e30; }

/* Tooltip */
.jmap-tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 70px;
  width: 200px;
  background: #0d2137;
  border: 1px solid rgba(45,212,191,0.4);
  border-radius: 12px;
  padding: 12px 14px 14px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.jmap-tooltip.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.94);
}
.jmap-tooltip-close {
  position: absolute; top: 7px; right: 9px;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: #fff; font-size: 14px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.jmap-tooltip-num {
  display: inline-block;
  background: #2dd4bf; color: #0a1e30;
  font-size: 9px; font-weight: 700;
  border-radius: 3px; padding: 2px 6px;
  margin-bottom: 5px;
}
.jmap-tooltip-name {
  color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px;
}
.jmap-tooltip-meta {
  color: #2dd4bf; font-size: 0.75rem; margin-bottom: 8px;
}
.jmap-tooltip-link {
  color: rgba(255,255,255,0.7); font-size: 0.75rem;
  text-decoration: none; transition: color 0.2s;
}
.jmap-tooltip-link:hover { color: #2dd4bf; }
.journey-map-cta {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--turquoise);
  border: 1px solid rgba(45,212,191,0.4);
  border-radius: 100px;
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}
.journey-map-cta:hover {
  background: rgba(45,212,191,0.1);
  border-color: rgba(45,212,191,0.7);
}
.journey-map-cta svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Mobile map button (hidden on desktop) */
.journey-map-btn--mobile {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.35);
  border-radius: 100px;
  padding: 0.75rem 1.4rem;
  color: var(--turquoise);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.journey-map-btn--mobile:hover { background: rgba(45,212,191,0.18); }
.journey-map-btn--mobile svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Tablet: shrink map column */
@media (max-width: 1100px) {
  .journey-grid { grid-template-columns: 1fr 340px; gap: 2.5rem; }
  .journey-map-wrap { height: 460px; }
}

/* Mobile/tablet: stack, hide map panel, show mobile button */
@media (max-width: 860px) {
  .journey-grid { grid-template-columns: 1fr; gap: 0; }
  .journey-map-panel { display: none; }
  .journey-map-btn--mobile { display: inline-flex; }
}

.stops { position: relative; z-index: 1; }
.stop {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.4s var(--ease);
}
.stop:hover { padding-left: 1rem; }
.stop-num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--turquoise);
  font-weight: 600;
  line-height: 1;
  opacity: 0.85;
}
.stop-body h3 { color: #fff; font-size: 1.4rem; display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.stop-time {
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: rgba(52,198,198,0.18); color: var(--turquoise);
  padding: 0.25rem 0.7rem; border-radius: 100px;
}
.stop-body p { color: rgba(255,255,255,0.72); margin-top: 0.4rem; font-size: 0.98rem; max-width: 56ch; }

/* ============================================
   Tour cards / pricing
   ============================================ */
.tours-sec { padding: clamp(5rem, 10vw, 8rem) 0; }
.tours-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; display: flex; flex-direction: column; align-items: center; }
.tours-head .section-lede { margin-inline: auto; }
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card.featured { border: 2px solid var(--azure); }
.tour-card.featured::before {
  content: attr(data-badge);
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
  background: var(--azure); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 100px;
}
.tour-media { aspect-ratio: 4/3; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tour-card:hover .tour-media img { transform: scale(1.08); }
.tour-content { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.tour-content h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.tour-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; flex: 1; }
.tour-meta { display: flex; gap: 1.2rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.tour-meta .m { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--navy); font-weight: 500; }
.tour-meta svg { width: 17px; height: 17px; stroke: var(--azure); }
.tour-price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.3rem; }
.tour-price .from { font-size: 0.8rem; color: var(--muted); }
.tour-price .amt { font-family: var(--display); font-size: 2.1rem; font-weight: 600; color: var(--navy); }
.tour-price .per { font-size: 0.85rem; color: var(--muted); }
.tour-card .btn { width: 100%; justify-content: center; }

/* Season note */
.season-note {
  margin-top: 3rem; text-align: center;
  background: var(--sand); border-radius: var(--radius);
  padding: 1.3rem 1.8rem; font-size: 0.9rem; color: var(--navy-soft);
  display: inline-flex; gap: 0.7rem; align-items: center; justify-content: center;
}
.season-wrap { text-align: center; }

/* ============================================
   Destinations gallery
   ============================================ */
.dest-sec { padding: clamp(5rem, 10vw, 8rem) 0; background: linear-gradient(180deg, var(--foam), var(--sand)); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.dest-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; display: block; text-decoration: none;
}
.dest-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dest-item:hover img { transform: scale(1.1); }
.dest-item::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,78,0.8), transparent 55%);
}
.dest-item .label {
  position: absolute; bottom: 1.1rem; left: 1.2rem; z-index: 2;
  color: #fff;
}
.dest-item .label h4 { color: #fff; font-size: 1.2rem; }
.dest-item .label span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.dest-item.tall { grid-row: span 2; }
.dest-item.wide { grid-column: span 2; }

/* "go" arrow that appears on hover */
.dest-go {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 0; transform: translate(-6px, 6px) scale(0.9);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s;
}
.dest-go svg { width: 18px; height: 18px; color: #fff; }
.dest-item:hover .dest-go { opacity: 1; transform: translate(0,0) scale(1); background: var(--azure); }
.dest-item:focus-visible { outline: 3px solid var(--azure); outline-offset: 3px; }


/* ============================================
   CTA band
   ============================================ */
.cta-band {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; overflow: hidden;
  color: #fff; text-align: center;
}
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(rgba(11,45,78,0.82), rgba(14,123,176,0.7)); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 48ch; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-logo-img {
  height: 90px !important;
  width: auto;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 12px 16px;
}
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-col h5 {
  color: #fff; font-family: var(--body); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.2rem;
}
.footer-col a, .footer-col li { font-size: 0.92rem; margin-bottom: 0.7rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--azure); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--azure); flex-shrink: 0; margin-top: 3px; }
.foot-meeting-links { display: flex; flex-direction: column; gap: 0.35rem; }
.foot-meeting-links a { display: flex; align-items: flex-start; gap: 0.35rem; margin-bottom: 0 !important; }
.foot-meeting-links a::before { content: "📍"; font-size: 0.75rem; flex-shrink: 0; }

/* ── Footer official registration bar ── */
.footer-info-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0 0.85rem;
}
.footer-info-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  align-items: center;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
  column-gap: 0;
}
.footer-info-inner span {
  padding-right: 1rem;
}
.footer-info-inner span:not(:last-child)::after {
  content: '·';
  padding-left: 1rem;
  color: rgba(255,255,255,0.18);
}
.footer-info-inner strong { color: rgba(255,255,255,0.52); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
  font-size: 0.84rem;
}
.footer-legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color 0.2s; white-space: nowrap; text-decoration: none; }
.footer-legal-links a:hover { color: var(--turquoise); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--azure); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* ============================================
   Floating WhatsApp
   ============================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   Reveal animation
   ============================================ */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================
   Page hero (inner pages)
   ============================================ */
.page-hero {
  min-height: 52vh; display: flex; align-items: flex-end;
  color: #fff; position: relative; overflow: hidden;
  padding-bottom: 3rem;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(rgba(11,45,78,0.4), rgba(11,45,78,0.85)); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 0.5rem; }
.page-hero .crumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); display: flex; gap: 0.5rem; align-items: center; }
.page-hero .crumb a:hover { color: var(--turquoise); }

/* ============================================
   FAQ
   ============================================ */
.faq-sec { padding: clamp(5rem, 10vw, 8rem) 0; }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--navy);
}
.faq-q .plus { flex-shrink: 0; width: 28px; height: 28px; position: relative; transition: transform 0.4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after {
  content:""; position: absolute; background: var(--azure); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .plus::before { width: 16px; height: 2.5px; }
.faq-q .plus::after { width: 2.5px; height: 16px; transition: transform 0.4s var(--ease); }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding-bottom: 1.5rem; color: var(--muted); font-size: 0.98rem; max-width: 64ch; }

/* ============================================
   Contact
   ============================================ */
.contact-sec { padding: clamp(5rem, 10vw, 8rem) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-info .ci-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-info .ci-item .ic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--azure), var(--turquoise)); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ci-item .ic svg { width: 24px; height: 24px; stroke: #fff; }
.contact-info .ci-item h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-info .ci-item p, .contact-info .ci-item a { color: var(--muted); font-size: 0.95rem; }
.contact-info .ci-item a:hover { color: var(--azure); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--body); font-size: 0.95rem; color: var(--ink); background: var(--foam);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--azure); box-shadow: 0 0 0 3px rgba(27,156,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-media { order: -1; }
  .intro-media .badge { left: 0; }
}
@media (max-width: 860px) {
  /* Tighten the header row so the toggle never pushes off-screen */
  .nav { gap: 0.8rem; }

  /* Header holds both the backdrop and the drawer; keep it a high context */
  .site-header { z-index: 1050; }

  /* Backdrop behind the drawer (now a child of header, low z within it) */
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(10,26,42,0.55);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 1;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }

  /* The slide-in drawer (above the backdrop within the header context) */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 360px);
    height: 100%;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.8rem 2rem;
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    box-shadow: -20px 0 60px rgba(11,45,78,0.4);
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active { color: var(--turquoise); }

  /* Book Now button at bottom of mobile drawer */
  .nav-book-now {
    display: block !important;
    margin-top: 1.5rem;
    padding: 0.95rem 1.5rem !important;
    background: var(--turquoise);
    color: var(--navy) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-align: center;
    border-radius: 10px;
    border-bottom: none !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-book-now:hover,
  .nav-book-now:active {
    background: #22c9b5 !important;
    color: var(--navy) !important;
    transform: scale(0.97);
  }

  /* Hamburger above the drawer so it stays clickable to close */
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .nav-toggle.open span { background: #fff; }

  .nav-right { gap: 0.6rem; }

  .hero-facts { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer-legal-links { justify-content: center; }
  .footer-info-inner { justify-content: center; text-align: center; flex-direction: column; gap: 0.15rem; }
  .footer-info-inner span { padding-right: 0; }
  .footer-info-inner span:not(:last-child)::after { display: none; }

  /* Lock body scroll when the menu is open */
  body.nav-open { overflow: hidden; }
}

/* nav-book-now: visible only inside mobile drawer */
.nav-book-now { display: none; }
@media (max-width: 860px) {
  .nav-book-now { display: block; }
}

/* Small phones: tighten the header so the logo is never squished */
@media (max-width: 480px) {
  .brand img { height: 46px; }
  .scrolled .brand img { height: 40px; }
  .nav-right { gap: 0.45rem; }
  .nav-right .btn-primary { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
  .lang-switch button { padding: 0.25rem 0.35rem; font-size: 0.8rem; }
}
@media (max-width: 380px) {
  /* On very small screens move the language switch into the drawer */
  .nav-right .lang-switch { display: none; }
  .nav-links .lang-switch-mobile { display: flex; }
}

/* In-drawer language switcher (hidden unless inside the open mobile drawer on small screens) */
.lang-switch-mobile { display: none; gap: 0.5rem; padding: 1.4rem 0 0; }
.lang-switch-mobile button {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-weight: 600; font-size: 0.9rem; padding: 0.7rem 0; border-radius: 10px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.lang-switch-mobile button.active { background: var(--azure); border-color: var(--azure); }
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dest-item.wide { grid-column: span 1; }
  .stop { grid-template-columns: 56px 1fr; gap: 1rem; }
  .stop-num { font-size: 2rem; }

  /* Hero: single button — fit content, not full width */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn { width: auto; display: inline-flex; text-align: center; justify-content: center; }
  .hero-content { padding-top: 5rem; }

  /* Tour grid full width */
  .tour-grid { max-width: 100%; }

  /* Intro section badge repositioned */
  .intro-media .badge { left: 0; bottom: -14px; padding: 0.9rem 1.1rem; }
  .intro-media .badge .num { font-size: 1.9rem; }

  /* CTA band buttons stack */
  .cta-band .hero-actions { flex-direction: column; align-items: center; }
  .cta-band .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Float WA smaller on phones */
  .float-wa { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
  .float-wa svg { width: 26px; height: 26px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.98rem; }
  .container { padding-inline: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   DESTINATION DETAIL PAGES (single)
   ============================================ */
.dd-hero {
  position: relative; min-height: 72vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.dd-hero-bg { position: absolute; inset: 0; z-index: 0; }
.dd-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.dd-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,78,0.92) 0%, rgba(11,45,78,0.45) 45%, rgba(11,45,78,0.25) 100%);
}
.dd-hero .container { position: relative; z-index: 1; padding-bottom: clamp(2.5rem,6vw,4.5rem); padding-top: 7rem; }
.dd-crumb { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.dd-crumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.dd-crumb a:hover { color: #fff; }
.dd-kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--turquoise);
  border: 1px solid rgba(52,198,198,0.5); border-radius: 100px; padding: 0.35rem 0.9rem; margin-bottom: 1.1rem;
}
.dd-hero h1 { font-size: clamp(2.4rem,6vw,4.2rem); line-height: 1.02; margin-bottom: 0.8rem; color: #fff; }
.dd-hero .dd-sub { font-size: clamp(1rem,2.2vw,1.3rem); color: rgba(255,255,255,0.92); max-width: 640px; font-family: var(--display); font-style: italic; }
.dd-hero-meta { display: flex; gap: 1.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.dd-hero-meta .m { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: rgba(255,255,255,0.95); }
.dd-hero-meta .m svg { width: 20px; height: 20px; color: var(--turquoise); flex-shrink: 0; }

/* body */
.dd-body { padding: clamp(3.5rem,7vw,5.5rem) 0; }
.dd-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem,5vw,4rem); align-items: start; }
.dd-lede { font-size: clamp(1.15rem,2.4vw,1.4rem); line-height: 1.6; color: var(--navy); font-family: var(--display); margin-bottom: 2.5rem; }
.dd-section { margin-bottom: 2.2rem; }
.dd-section h2 { font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: 0.8rem; color: var(--navy); }
.dd-section p { color: #3a4a57; line-height: 1.75; font-size: 1.02rem; }

/* sticky facts card */
.dd-aside { position: sticky; top: 90px; }
.dd-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.dd-card-head { background: var(--navy); color: #fff; padding: 1.1rem 1.4rem; }
.dd-card-head h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.dd-card-head span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.dd-facts { list-style: none; margin: 0; padding: 0.5rem 1.4rem 1rem; }
.dd-facts li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.dd-facts li:last-child { border-bottom: none; }
.dd-facts .k { color: var(--muted); flex-shrink: 0; }
.dd-facts .v { color: var(--navy); font-weight: 600; text-align: right; }
.dd-card-cta { padding: 1.2rem 1.4rem 1.4rem; }
.dd-card-cta .btn { width: 100%; justify-content: center; text-align: center; }

/* gallery */
.dd-gallery { padding: 0 0 clamp(3.5rem,7vw,5.5rem); }
.dd-gallery h2 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 1.5rem; color: var(--navy); text-align: center; }
.dd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.dd-grid a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.dd-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dd-grid a:hover img { transform: scale(1.08); }
.dd-grid a.span2 { grid-column: span 2; aspect-ratio: 16/9; }

/* nav between stops */
.dd-stepnav { border-top: 1px solid var(--line); padding: clamp(2.5rem,5vw,3.5rem) 0; }
.dd-stepnav .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.dd-stepnav a { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 600; color: var(--navy); text-decoration: none; padding: 0.9rem 1.4rem; border: 1.5px solid var(--line); border-radius: 100px; transition: border-color 0.25s, color 0.25s, transform 0.25s; }
.dd-stepnav a:hover { border-color: var(--azure); color: var(--azure-deep); transform: translateY(-2px); }
.dd-stepnav a svg { width: 18px; height: 18px; }

/* lightbox */
.dd-lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(8,20,33,0.94); display: none; align-items: center; justify-content: center; padding: 2rem; }
.dd-lightbox.open { display: flex; }
.dd-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.dd-lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; border: none; background: rgba(255,255,255,0.12); color: #fff; border-radius: 50%; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; transition: background 0.2s; }
.dd-lightbox .lb-close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 920px) {
  .dd-layout { grid-template-columns: 1fr; }
  .dd-aside { position: static; }
  .dd-card { max-width: 480px; }
}
@media (max-width: 600px) {
  .dd-grid a.span2 { grid-column: span 1; aspect-ratio: 4/3; }
  .dd-hero-meta { gap: 1rem; }
}

/* ============================================
   CONTACT FORM — actions & status
   ============================================ */
.form-actions { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.form-status {
  display: none; margin: 0.4rem 0 0.2rem; padding: 0.8rem 1rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(31,170,107,0.12); color: #157a4d; border: 1px solid rgba(31,170,107,0.3); }
.form-status.error   { background: rgba(226,72,58,0.1);  color: #c0392b; border: 1px solid rgba(226,72,58,0.3); }
.form-status.sending { background: rgba(27,156,216,0.1); color: var(--azure-deep); border: 1px solid rgba(27,156,216,0.3); }
@media (max-width: 520px) {
  .form-actions { flex-direction: column; }
}

/* ============================================
   GOOGLE REVIEWS SECTION (Trustindex)
   ============================================ */
.reviews-sec { padding: clamp(3.5rem,7vw,5.5rem) 0; background: var(--sand, #F3ECDD); }
.reviews-sec .reviews-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem,4vw,3rem); }
.reviews-sec .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; }
.reviews-sec .gicon { display: inline-flex; vertical-align: middle; }
.reviews-sec h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin: 0.6rem 0 0.8rem; color: var(--navy); }
.reviews-sec .reviews-sub { color: var(--muted); font-size: 1.02rem; }
/* Placeholder shown until the Trustindex code is pasted in */
.reviews-embed { max-width: 1100px; margin: 0 auto; min-height: 60px; }
.reviews-placeholder {
  max-width: 620px; margin: 0 auto; text-align: center;
  border: 2px dashed #c9b99a; border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; color: #8a7a5c; background: rgba(255,255,255,0.4);
}
.reviews-placeholder strong { color: var(--navy); display: block; margin-bottom: 0.4rem; }
.reviews-placeholder code { background: rgba(11,45,78,0.07); padding: 0.15rem 0.45rem; border-radius: 5px; font-size: 0.85rem; }
.reviews-cta { text-align: center; margin-top: clamp(1.6rem,3vw,2.2rem); }
.reviews-cta .btn-google {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #fff; color: #3c4043; border: 1px solid #dadce0;
  padding: 0.85rem 1.6rem; border-radius: 100px; font-weight: 600; text-decoration: none;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s;
}
.reviews-cta .btn-google:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Payment Methods (footer) ── */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.footer-payments-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-payments-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: default;
}
.pay-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.45);
}
.pay-badge svg {
  width: 44px;
  height: 28px;
  display: block;
}
@media (max-width: 600px) {
  .footer-payments { gap: 0.7rem; }
  .pay-badge svg { width: 38px; height: 24px; }
  .footer-payments-label { width: 100%; }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  padding: 1.2rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}
.cookie-banner a { color: var(--turquoise); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--turquoise);
  color: var(--navy);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cookie-btn-accept:hover { background: #22c9b5; transform: scale(0.97); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.2rem; gap: 0.9rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
