/* ============================================================
   THE WILDERNESS SOCIETY — Safari Africani
   style.css
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: #F8F9FC;
  color: #2C2C2C;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  /* Brand dal logo */
  --navy: #1B2F8A;
  --navy-dark: #112070;
  --charcoal: #3D3D3D;

  /* Superfici */
  --bg: #F8F9FC;
  --bg-alt: #EEF1F8;
  --white: #FFFFFF;

  /* Testo */
  --text-muted: #5C6070;
  --text-light: #8A8FA8;

  /* Bordi */
  --border: rgba(27,47,138,0.14);
  --border-light: rgba(27,47,138,0.08);

  /* Utility */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(27,47,138,0.10), 0 1px 6px rgba(27,47,138,0.06);
  --shadow-lg: 0 12px 48px rgba(27,47,138,0.14), 0 3px 12px rgba(27,47,138,0.08);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
}
h1 {
  font-size: clamp(2.2rem, 6vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: -2px;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1em;
  letter-spacing: -1px;
}
h3 {
  font-size: clamp(1.4rem, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: -0.5px;
}
h4 {
  font-size: clamp(1rem, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.5px;
}
p {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0px;
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(27,47,138,0.08);
  border: 1px solid rgba(27,47,138,0.18);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.section-sub { max-width: 560px; margin: 16px auto 0; }
.section-sub-lg { max-width: 620px; margin: 16px auto 0; }
.section-sub-sm { margin-top: 12px; }
.section-cta-wrap { text-align: center; margin-top: 44px; }
.cta-centered { justify-content: center; }
.em-navy { font-style: italic; color: var(--navy); }
.feat-label { color: var(--navy); }
.form-textarea { resize: vertical; }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.60s cubic-bezier(0.16,1,0.3,1), transform 0.60s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (max-width: 768px) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.22s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(27,47,138,0.35);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,47,138,0.42); }
.btn-pulse {
  font-size: 17px;
  animation: btnPulse 2.4s ease-in-out infinite;
}
.btn-pulse:hover { animation: none; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(27,47,138,0.35); }
  50%       { box-shadow: 0 4px 32px rgba(27,47,138,0.60), 0 0 0 7px rgba(27,47,138,0.10); }
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--navy);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-sm { padding: 13px 28px; font-size: 15px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 8px 24px;
  transition: all 0.30s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(27,47,138,0.10);
  padding: 6px 24px;
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo { display: flex; align-items: center; text-decoration: none; }
.navbar-logo img { width: 500px; height: 60px; object-fit: contain; object-position: left center; }
.navbar-logo .logo-color { display: none; }
.navbar-logo .logo-white { display: block; }
.navbar.scrolled .navbar-logo .logo-color { display: block; }
.navbar.scrolled .navbar-logo .logo-white { display: none; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-links a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.18s;
  letter-spacing: 0.01em;
}
.navbar.scrolled .navbar-links a {
  color: #1B2F8A;
}
.navbar-links a:hover { color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ffffff; border-radius: 2px; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: #1B2F8A; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 98;
  background: rgba(11,20,60,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 72px;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 28px;
  gap: 4px;
}
.mobile-menu a {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.18s;
  letter-spacing: 0.01em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #ffffff; }
.mobile-menu .btn-primary {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 88px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11,20,60,0.62) 0%, rgba(11,20,60,0.35) 50%, rgba(11,20,60,0.10) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.hero h1 { color: #ffffff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: rgba(255,255,255,0.80); }
.hero-sub {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  animation: scrollBlink 1.2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 14px; font-family: 'Lato', sans-serif; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff;
}
.scroll-line {
  width: 2px; height: 38px;
  background: linear-gradient(180deg, #ffffff, transparent);
}
@keyframes scrollBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy);
  padding: 18px 24px;
}
.trust-strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: rgba(255,255,255,0.90);
  font-family: 'Lato', sans-serif;
  font-size: 18px; font-weight: 600;
  min-width: 260px;
}
.trust-item svg { flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.20); }

/* ── VALUES ── */
.values { background: var(--bg); padding-top: 40px; padding-bottom: 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(27,47,138,0.07);
  border-left: 4px solid #1B2F8A;
}
.value-card h3 { margin-bottom: 0; color: #1B2F8A; }
.value-card p { font-size: 18px; line-height: 1.6; margin: 0; color: var(--text-muted); }
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 24px; }
}

/* ── PILLARS ── */
.pillars { background: var(--bg-alt); }
.pillars-header { text-align: center; margin-bottom: 52px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative; overflow: hidden;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
}
.pillar-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem; font-weight: 900;
  color: rgba(27,47,138,0.12);
  line-height: 1; margin-bottom: 14px;
}
.pillar-card h3 { color: var(--charcoal); margin-bottom: 10px; font-size: 1.3rem; }
.pillar-card p { font-size: 14px; }

/* ── WILD SCALE ── */
.wild-scale { background: var(--bg); }
.wild-scale-header { text-align: center; margin-bottom: 44px; }
.wild-scale-header h2 { margin-bottom: 12px; }
.wild-tabs {
  display: flex; gap: 8px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 44px;
}
.wild-tab {
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all 0.18s;
  background: var(--white); color: var(--text-muted);
  text-decoration: none; display: inline-block;
}
.wild-tab:hover { border-color: var(--navy); color: var(--navy); }
.wild-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.dest-item { scroll-margin-top: 100px; }

/* ── DESTINATION CARDS ── */
.dest-list { display: flex; flex-direction: column; }
.dest-item {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.dest-header {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
}
.dest-num {
  font-family: 'Lato', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: rgba(27,47,138,0.20);
  min-width: 48px; flex-shrink: 0;
}
.dest-info { flex: 1; }
.dest-name {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700; color: var(--charcoal);
}
.dest-tagline { font-size: 17px; color: var(--text-light); margin-top: 3px; font-family: 'Lato', sans-serif; }
.dest-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.wild-badge {
  padding: 5px 12px; border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: #1B2F8A; color: #ffffff; border: none;
}

.dest-body { display: block; padding: 0 28px 36px; }
.dest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 8px;
}
.dest-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius-sm); display: block;
}
.dest-features { display: flex; flex-direction: column; gap: 11px; }
.dest-feature {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 18px; color: var(--text-muted); line-height: 1.6;
  font-family: 'Lato', sans-serif;
}
.dest-feature-icon {
  width: 40px; height: 40px;
  background: #1B2F8A;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.dest-feature-icon svg { display: block; width: 20px; height: 20px; }
.dest-roadmap svg { vertical-align: middle; margin-right: 8px; flex-shrink: 0; position: relative; top: -1px; }

/* ── CAROUSEL ── */
.dest-carousel {
  position: relative;
  margin-top: 20px;
  user-select: none;
}
.cs-track-wrap {
  overflow: hidden;
  border-radius: 12px;
}
.cs-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.cs-slide {
  flex: 0 0 calc((100% - 18px) / 3);
  margin-right: 9px;
}
.cs-slide:last-child { margin-right: 0; }
.cs-slide img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.cs-slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.cs-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: #1B2F8A;
  border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,47,138,0.35);
  transition: background 0.18s, transform 0.18s;
  z-index: 2;
}
.cs-btn svg { width: 20px; height: 20px; }
.cs-btn:hover { background: #112070; transform: translateY(-50%) scale(1.08); }
.cs-btn:disabled { opacity: 0.3; pointer-events: none; }
.cs-prev { left: -18px; }
.cs-next { right: -18px; }
.cs-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 12px;
}
.cs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(27,47,138,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.18s, transform 0.18s;
}
.cs-dot.active { background: #1B2F8A; transform: scale(1.4); }

/* ── ZOOM INLINE ── */
.cs-zoom {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 500;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(27,47,138,0.28), 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.24s cubic-bezier(0.25,0.8,0.25,1), opacity 0.24s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cs-zoom.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cs-zoom-img {
  display: block;
  width: 70vw;
  max-width: 900px;
  min-width: 320px;
  height: auto;
  border-radius: 14px;
}
.cs-zoom-close {
  position: absolute; top: 10px; right: 10px;
  width: 42px; height: 42px; border-radius: 50%;
  background: #1B2F8A;
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,47,138,0.35);
  transition: background 0.18s, transform 0.18s;
  z-index: 1;
}
.cs-zoom-close svg { width: 18px; height: 18px; }
.cs-zoom-close:hover { background: #112070; transform: scale(1.08); }
@media (max-width: 768px) {
  .cs-zoom-img { width: 92vw; }
}

@media (max-width: 768px) {
  .cs-slide { flex: 0 0 calc((100% - 10px) / 2); margin-right: 10px; }
  .cs-slide:last-child { margin-right: 0; }
  .cs-prev { left: -10px; }
  .cs-next { right: -10px; }
  .cs-btn { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .cs-slide { flex: 0 0 100%; margin-right: 0; }
  .cs-btn { display: none; }
}
.dest-roadmap {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(27,47,138,0.05);
  border-left: 3px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Lato', sans-serif;
  font-size: 17px; color: #1B2F8A; line-height: 1.7;
}
.dest-roadmap strong { color: #1B2F8A; }

.dest-cta { margin-top: 24px; }

/* ── WHY US ── */
.why-us { background: var(--bg-alt); }
.why-us-header { text-align: center; margin-bottom: 52px; }
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.comparison-col { border-radius: var(--radius); padding: 36px 32px; }
.comparison-col.us {
  background: #1B2F8A;
  border: none;
  box-shadow: var(--shadow-lg);
}
.comparison-col.them {
  background: #ffffff;
  border: none;
  box-shadow: var(--shadow-lg);
}
.comparison-label {
  font-family: 'Lato', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.comparison-col.us .comparison-label { color: #ffffff; }
.comparison-col.them .comparison-label { color: #1B2F8A; }
.comparison-label::after {
  content: ''; flex: 1; height: 1px;
  background: currentColor; opacity: 0.35;
}
.comparison-list { display: flex; flex-direction: column; gap: 14px; }
.comparison-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-family: 'Lato', sans-serif;
  font-size: 18px; line-height: 1.6;
}
.comparison-col.us .comparison-list li { color: #ffffff; }
.comparison-col.them .comparison-list li { color: #1B2F8A; }
.comparison-col.us .check { color: #ffffff; }
.comparison-col.them .check { color: #1B2F8A; }
.check { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.testimonial-quote {
  font-size: 2.2rem; color: var(--navy);
  line-height: 0.8; opacity: 0.18;
  margin-bottom: 10px; font-family: Georgia, serif;
}
.testimonial-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px; line-height: 1.80;
  color: var(--text-muted); margin-bottom: 22px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 13px; flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-meta {
  font-family: 'Lato', sans-serif;
  font-size: 11px; color: var(--navy); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px;
}

/* ── CTA FINALE ── */
.cta-final {
  position: relative; overflow: hidden;
  padding: 100px 0; text-align: center;
}
#prenota { scroll-margin-top: 0; }
.cta-final-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #112070 0%, #1B2F8A 50%, #2A45B0 100%);
}
.cta-final-img-placeholder { position: absolute; inset: 0; }
.cta-final-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-final h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.cta-final p {
  color: rgba(255,255,255,0.80);
  font-size: 16px; line-height: 1.75; margin-bottom: 36px;
}

/* ── FORM SECTION ── */
.form-section { background: var(--bg-alt); }
.form-inner { max-width: 620px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 44px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 7px;
}
.form-input {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 14.5px; font-weight: 500;
  padding: 13px 16px; outline: none;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus { border-color: var(--navy); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-select {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 14.5px; font-weight: 500;
  padding: 13px 16px; outline: none;
  cursor: pointer;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  color-scheme: light;
}
.form-select.selected { color: var(--charcoal); }
.form-select:focus { border-color: var(--navy); }
.form-select option { background-color: #1B2F8A; color: #ffffff; }
.form-select option:first-child { color: rgba(255,255,255,0.5); }
.form-select option:checked { background-color: #112070; }

/* Checkbox privacy */
.form-checkbox-group { margin-top: 8px; }
.form-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-family: 'Lato', sans-serif;
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.form-checkbox-label input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  accent-color: #1B2F8A; cursor: pointer;
}
.form-checkbox-label a { color: var(--navy); text-decoration: none; font-weight: 700; }


.form-submit { width: 100%; justify-content: center; margin-top: 24px; font-size: 15px; padding: 16px; }
.form-note {
  text-align: center; margin-top: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 11.5px; color: var(--text-light);
}

/* ── FOOTER ── */
footer {
  background: #0D1844;
  color: rgba(255,255,255,0.50);
  padding: 56px 24px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.footer-brand { max-width: 260px; }
.footer-logo-img { width: 260px; height: auto; margin-bottom: 16px; opacity: 0.85; }

.footer-desc { font-family: 'Lato', sans-serif; font-size: 13px; line-height: 1.70; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.40); transition: color 0.18s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.80); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-family: 'Lato', sans-serif; font-size: 11.5px; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a {
  font-family: 'Lato', sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.28); transition: color 0.18s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.60); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 20px rgba(27,47,138,0.40);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 18px 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 14.5px; color: #fff; letter-spacing: 0.03em;
}

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1F7A4A; color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13.5px; font-weight: 700;
  padding: 13px 26px; border-radius: 8px;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: all 0.35s; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(31,122,74,0.38);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── GRAZIE PAGE ── */
.thank-you-page {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(145deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.thank-you-card {
  background: var(--white); border-radius: var(--radius);
  padding: 60px 48px; max-width: 540px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.thank-you-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; font-size: 32px;
}
.thank-you-card h1 { font-size: 1.9rem; margin-bottom: 14px; }
.thank-you-card p { font-size: 15px; line-height: 1.75; margin-bottom: 30px; }
.thank-you-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 96px 0 60px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(11,20,60,0.30) 0%, rgba(11,20,60,0.50) 55%, rgba(11,20,60,0.65) 100%);
  }
  .section { padding: 56px 0; }
  .dest-header { padding: 18px 20px; gap: 10px; }
  .dest-num { font-size: 1.4rem; min-width: 36px; }
  .dest-body { padding: 0 20px 26px; }
  .dest-grid { grid-template-columns: 1fr; gap: 18px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-col { padding: 26px 22px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 72px 0; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 44px 20px 22px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: block; }
  .hero-content { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { display: inline-flex; justify-content: center; }
  .dest-cta { text-align: center; }
  .dest-cta .btn { display: inline-flex; justify-content: center; }
  .trust-strip-inner { gap: 20px; flex-wrap: nowrap; }
  .trust-item { min-width: 0; font-size: 15px; }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .wild-tabs { gap: 6px; }
  .wild-tab { padding: 7px 14px; font-size: 12px; }
}
