:root {
  --navy: #0b2a4a;
  --navy-deep: #061a30;
  --primary: #1b3a6b;
  --secondary: #2a6eb5;
  --secondary-soft: #5a9ad6;
  --soft: #f5f7fa;
  --soft-2: #eef2f7;
  --gold: #f0c419;
  --gold-deep: #c9a30f;
  --amber: #f59e0b;
  --amber-deep: #c8800b;
  --green: #10b981;
  --green-deep: #0d8a64;
  --green-dark: #0e5a3c;
  --ink: #1e1e1e;
  --muted: #4b5563;
  --line: rgba(11, 42, 74, .10);
  --shadow-sm: 0 8px 22px rgba(11, 42, 74, .06);
  --shadow: 0 26px 70px rgba(11, 42, 74, .14);
  --shadow-lg: 0 40px 110px rgba(11, 42, 74, .22);
  --radius-lg: 18px;
  --radius-md: 12px;
  --easing-luxe: cubic-bezier(.2, .8, .2, 1);
  --easing-snap: cubic-bezier(.4, 0, .2, 1);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.font-display {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.01em;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(78px, 8.5vw, 130px);
}

.section-fade {
  position: relative;
}

.section-fade::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(11,42,74,.12), transparent);
}

/* ============== SCROLL PROGRESS ============== */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: rgba(11, 42, 74, .06);
  pointer-events: none;
}

.scroll-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--green), var(--amber));
  background-size: 200% 100%;
  box-shadow: 0 0 14px rgba(42, 110, 181, .5);
  transition: width .08s linear;
  animation: progressShift 6s linear infinite;
}

@keyframes progressShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ============== NAVIGATION ============== */
.glass-nav {
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(11, 42, 74, .06);
  box-shadow: 0 10px 40px rgba(11, 42, 74, .06);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: padding .35s var(--easing-luxe), box-shadow .35s ease, background .35s ease;
}

.glass-nav.is-condensed {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(11, 42, 74, .10);
}

.glass-nav.is-condensed nav {
  height: 64px;
}

.brand-mark img {
  transition: transform .5s var(--easing-luxe);
}

.brand-mark:hover img {
  transform: scale(1.04) rotate(-1deg);
}

.nav-link {
  position: relative;
  padding: .35rem 0;
  transition: color .25s ease;
}

.nav-link::after {
  position: absolute;
  inset: auto 0 -4px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--secondary), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--easing-luxe);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .55rem 2.2rem .55rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.select-wrap select:hover {
  border-color: rgba(42, 110, 181, .35);
}

.select-wrap select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(42, 110, 181, .14);
}

.select-chevron {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
  transition: transform .3s var(--easing-luxe);
}

.select-wrap select:focus ~ .select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.select-wrap-dark select {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.select-wrap-dark select:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.select-wrap-dark select:focus {
  border-color: rgba(255, 255, 255, .4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}

.select-wrap-dark .select-chevron {
  color: rgba(255, 255, 255, .75);
}

/* Make the dropdown option list readable on every browser */
.select-wrap select option {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.select-wrap-dark select option {
  background: var(--navy);
  color: #fff;
}

/* ============== BUTTONS ============== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.25rem;
  border-radius: 999px;
  padding: .95rem 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .005em;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s var(--easing-luxe), box-shadow .35s ease, background .3s ease, border-color .3s ease, color .3s ease;
  will-change: transform;
}

.btn-lg {
  min-height: 3.6rem;
  padding: 1.05rem 1.8rem;
  font-size: 1.02rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--easing-luxe);
}

.btn:hover .btn-icon {
  transform: translateX(-2px) rotate(-6deg) scale(1.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 18px 36px -8px rgba(16, 185, 129, .42), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  box-shadow: 0 24px 56px -10px rgba(16, 185, 129, .52), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 22px 52px -10px rgba(255, 255, 255, .35);
  transform: translateY(-3px);
}

.btn-shimmer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--easing-luxe);
}

.btn-shimmer:hover::before {
  transform: translateX(120%);
}

/* ============== HERO ============== */
.hero {
  min-height: 96svh;
  background-image:
    linear-gradient(115deg, rgba(5, 22, 42, .92) 0%, rgba(7, 31, 56, .72) 42%, rgba(7, 31, 56, .18) 100%),
    url("../assets/images/Tropea-Italy-1-1024x683.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 70%;
  height: 80%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(16, 185, 129, .26), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .8; }
  50%     { transform: translate(-20px, 30px) scale(1.1); opacity: 1; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  padding: .55rem 1rem .55rem .85rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .25);
  animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .55); }
  60%     { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-title {
  display: block;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--easing-luxe), opacity .6s ease;
}

.hero-title.is-revealed .hero-word {
  transform: translateY(0);
  opacity: 1;
}

.hero-title.is-revealed .hero-word:nth-child(1) { transition-delay: .05s; }
.hero-title.is-revealed .hero-word:nth-child(2) { transition-delay: .12s; }
.hero-title.is-revealed .hero-word:nth-child(3) { transition-delay: .19s; }
.hero-title.is-revealed .hero-word:nth-child(4) { transition-delay: .26s; }
.hero-title.is-revealed .hero-word:nth-child(5) { transition-delay: .33s; }
.hero-title.is-revealed .hero-word:nth-child(6) { transition-delay: .40s; }

.hero-accent em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold) 0%, #fde68a 50%, var(--amber) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  to { background-position: -200% center; }
}

.hero-photo-frame {
  position: relative;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 50px 90px -20px rgba(0, 0, 0, .45);
  animation: floaty 7s ease-in-out infinite;
}

.hero-photo-glow {
  position: absolute;
  inset: -20% -10% -10% -20%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(42, 110, 181, .45), transparent 70%);
  filter: blur(40px);
  animation: heroGlow 9s ease-in-out infinite reverse;
}

.hero-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: -1rem;
  display: inline-flex;
  flex-direction: column;
  gap: .15rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
  animation: floaty 6s ease-in-out infinite .8s;
}

.hero-photo-badge strong {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero-scroll-hint {
  position: absolute;
  inset: auto 0 28px;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-scroll-hint span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  position: relative;
}

.hero-scroll-hint span::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
  content: "";
}

@keyframes scrollDot {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  70%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ============== SECTION HEADERS ============== */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker-line {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary));
  border-radius: 2px;
}

.section-kicker .kicker-line:last-child {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.kicker-line-light {
  background: linear-gradient(90deg, transparent, rgba(167, 243, 208, .9)) !important;
}

.section-title {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.015em;
}

.title-accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--secondary) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.partner-accent {
  font-style: italic;
  background: linear-gradient(120deg, #fde68a 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============== TRUST BAND ============== */
.trust-band {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 185, 129, .25), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(245, 158, 11, .14), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--primary));
  overflow: hidden;
}

.trust-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .005em;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .25), rgba(16, 185, 129, .08));
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--green);
  flex-shrink: 0;
  position: relative;
}

.trust-icon::after {
  position: absolute;
  inset: -4px;
  content: "";
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, .25);
  opacity: 0;
  transform: scale(.8);
  transition: transform .5s var(--easing-luxe), opacity .5s ease;
}

.trust-item:hover .trust-icon::after {
  opacity: 1;
  transform: scale(1);
}

/* ============== PREMIUM CARD ============== */
.premium-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--easing-luxe), box-shadow .5s ease, border-color .5s ease;
  overflow: hidden;
  isolation: isolate;
}

.premium-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--secondary), var(--green), var(--amber));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--easing-luxe);
  animation: borderShift 8s linear infinite;
  z-index: 2;
}

.premium-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(42, 110, 181, .08), transparent 40%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.premium-card:hover {
  border-color: rgba(42, 110, 181, .28);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.premium-card:hover::after {
  opacity: 1;
}

@keyframes borderShift {
  to { background-position: 200% 0; }
}

/* tilt card: subtle 3D motion handled via JS */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1100px;
  transition: transform .35s var(--easing-luxe), box-shadow .35s ease, border-color .35s ease;
}

/* ============== BADGES ============== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .48rem .78rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.badge-green {
  color: #045d40;
  background: linear-gradient(135deg, rgba(16, 185, 129, .18), rgba(16, 185, 129, .08));
  border: 1px solid rgba(16, 185, 129, .25);
}

.badge-yellow {
  color: #6b4400;
  background: linear-gradient(135deg, rgba(240, 196, 25, .22), rgba(240, 196, 25, .08));
  border: 1px solid rgba(240, 196, 25, .3);
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
  animation: dotPulse 2s ease-in-out infinite;
}

.badge-pulse-yellow {
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, .6);
  animation-name: dotPulseAmber;
}

@keyframes dotPulseAmber {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .55); }
  60%     { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

/* ============== IMAGE WRAP & SHINE ============== */
.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-lift {
  transition: transform 1s var(--easing-luxe), filter .8s ease;
  will-change: transform;
}

.image-wrap:hover .image-lift {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.07);
}

.card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--easing-luxe);
}

.premium-card:hover .card-shine {
  transform: translateX(120%);
}

/* ============== FEATURE LIST ============== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.65rem;
}

.feature-list li::before {
  position: absolute;
  inset: .25rem auto auto 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  content: "✓";
  box-shadow: 0 4px 10px rgba(16, 185, 129, .3);
}

/* ============== STEPS ============== */
.steps-grid {
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid::before {
    position: absolute;
    top: 90px;
    left: 14%;
    right: 14%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(42, 110, 181, .25), rgba(16, 185, 129, .25), transparent);
    z-index: 0;
  }
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(42, 110, 181, .25), rgba(16, 185, 129, .25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-top: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(42, 110, 181, .12), rgba(16, 185, 129, .12));
  color: var(--secondary);
  border: 1px solid rgba(42, 110, 181, .16);
  transition: transform .5s var(--easing-luxe);
}

.step-card:hover .step-icon {
  transform: rotate(-6deg) scale(1.05);
}

/* ============== FEATURE CARDS ============== */
.feature-card .feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(42, 110, 181, .1), rgba(16, 185, 129, .1));
  color: var(--secondary);
  border: 1px solid rgba(42, 110, 181, .14);
  transition: transform .5s var(--easing-luxe), background .5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(42, 110, 181, .18), rgba(16, 185, 129, .18));
}

/* ============== CTA PILL ============== */
.cta-pill {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.calendar-frame {
  position: relative;
}

.calendar-frame::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(42, 110, 181, .4), rgba(16, 185, 129, .4), rgba(245, 158, 11, .35));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .5s ease;
  animation: borderShift 8s linear infinite;
}

.calendar-frame:hover::before {
  opacity: 1;
}

/* ============== ROUTE TABLE ============== */
.route-table tr {
  transition: background .25s ease, transform .25s ease;
  position: relative;
}

.route-table tr:hover {
  background: linear-gradient(90deg, rgba(42, 110, 181, .06), rgba(16, 185, 129, .04));
}

.route-table th {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
}

.route-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--green));
  box-shadow: 0 0 0 4px rgba(42, 110, 181, .12);
  flex-shrink: 0;
}

/* ============== PARTNER ============== */
.partner-section {
  position: relative;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: transform .35s var(--easing-luxe), background .35s ease, border-color .35s ease;
}

.partner-list li:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  transform: translateX(6px);
}

.partner-bullet {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(240, 196, 25, .22), rgba(240, 196, 25, .06));
  color: #fde68a;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(240, 196, 25, .32);
  font-family: "Playfair Display", Georgia, serif;
}

/* ============== FAQ ============== */
.faq-item {
  transition: border-color .35s ease, box-shadow .35s ease;
}

.faq-item.is-open {
  border-color: rgba(42, 110, 181, .35);
  box-shadow: var(--shadow);
}

.faq-item.is-open::before {
  transform: scaleX(1);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--easing-luxe);
}

.faq-item.is-open .faq-panel {
  max-height: 320px;
}

.faq-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
  transition: transform .4s var(--easing-luxe);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--easing-luxe), transform .9s var(--easing-luxe);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* ============== FINAL CTA ============== */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--primary) 100%);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.final-cta-aura {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(16, 185, 129, .26), transparent 60%),
    radial-gradient(40% 50% at 80% 70%, rgba(245, 158, 11, .18), transparent 60%);
  filter: blur(10px);
  animation: auraFloat 14s ease-in-out infinite;
}

@keyframes auraFloat {
  0%, 100% { transform: translate(0, 0); }
  50%     { transform: translate(20px, -20px) scale(1.05); }
}

.final-accent {
  font-style: italic;
  background: linear-gradient(120deg, #fde68a, var(--gold), var(--amber));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 6s linear infinite;
}

/* ============== FOOTER ============== */
.site-footer {
  position: relative;
  background: #050f1c;
  overflow: hidden;
}

.footer-sheen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 10% 0%, rgba(42, 110, 181, .18), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(16, 185, 129, .12), transparent 60%);
  pointer-events: none;
}

.footer-link {
  position: relative;
  display: inline-block;
  transition: color .25s ease, transform .25s ease;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(3px);
}

/* ============== FLOAT WHATSAPP ============== */
.float-whatsapp {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 18px 44px rgba(16, 185, 129, .42);
  transition: transform .35s var(--easing-luxe), box-shadow .35s ease;
}

.float-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 28px 60px rgba(16, 185, 129, .55);
}

.float-whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: whatsappRing 2.4s ease-out infinite;
  pointer-events: none;
}

.float-whatsapp-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  content: "";
  animation: whatsappRing 2.4s ease-out infinite 1.2s;
}

@keyframes whatsappRing {
  0%   { transform: scale(1);   opacity: .65; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============== MOBILE MENU ============== */
.mobile-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .35s var(--easing-luxe);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ============== LEGAL ============== */
.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(70% 50% at 0% 0%, rgba(42, 110, 181, .08), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(16, 185, 129, .08), transparent 60%),
    var(--soft);
}

/* ============== ACCESSIBILITY ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .hero-word {
    opacity: 1;
    transform: none;
  }
}

/* ============== MOBILE ============== */
@media (max-width: 1023px) {
  .hero-photo-badge {
    left: 1rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 90svh;
    background-position: 62% center;
  }

  .section-pad {
    padding-block: 68px;
  }

  .btn {
    width: 100%;
  }

  .partner-list li {
    padding: 1rem;
  }

  .hero-eyebrow {
    font-size: .72rem;
  }
}
