/* ================================================================
   COLUMBUS VACANZE — Foglio di stile principale
   Modifica qui per aggiornare tutti i template
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a1a1a; background: #fff; }

:root {
  --navy: #233458;
  --taupe: #6F6258;
  --white: #ffffff;
  --light: #f5f3f0;
}

/* ── OVERRIDE DIVI CONTAINER ── */
#main-content,
#et-main-area,
#page-container,
.et_full_width_page #main-content,
.et_full_width_page #et-main-area,
.page-template #main-content,
.page-template .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}
/* Rimuove il padding interno di Divi che crea la strip laterale */
.et_full_width_page .et_pb_post_content,
.et_full_width_page .entry-content > *,
.page-template .entry-content > * {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── HEADER / NAV ── */
/* Nasconde l'header di Divi Theme Builder (sostituito dal nostro) */
header.et-l--header { display: none !important; }

/* ── NAV BASE ── */
#columbus-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 10%;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
#columbus-nav.scrolled {
  background: #233458;
  padding: 44px 10%;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* ── LOGO ── */
.nav-logo img {
  height: 43px;
  display: block;
}

/* ── LINKS ── */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0; padding: 0;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-link:hover { opacity: 1; }
.nav-disabled { cursor: default; }

/* ── FRECCIA DROPDOWN ── */
.nav-arrow {
  width: 10px; height: 10px;
  transition: transform 0.25s;
}
.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* ── DROPDOWN ── */
.has-dropdown { position: relative; }
.nav-dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #233458;
  min-width: 220px;
  padding: 16px 0 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 24px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* ── CTA ── */
.nav-cta {
  background: white;
  color: #233458;
  padding: 11px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE OVERLAY ── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #233458;
  z-index: 999;
  padding: 80px 10% 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s, transform 0.3s;
}
.nav-mobile-overlay.open {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 10%;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-mobile-close svg { width: 28px; height: 28px; }

.nav-mobile-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.nav-mobile-links > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.nav-mobile-link,
.nav-mobile-label {
  display: block;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-mobile-label {
  margin-bottom: 12px;
  opacity: 0.7;
  font-size: 11px;
}
.nav-mobile-sub {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-mobile-sub li a {
  display: block;
  padding: 8px 0 8px 12px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  border-left: 2px solid rgba(255,255,255,0.15);
  transition: color 0.15s, border-color 0.15s;
}
.nav-mobile-sub li a:hover { color: white; border-color: white; }
.nav-mobile-cta {
  display: inline-block;
  margin-top: 8px;
  background: white;
  color: #233458;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay { display: block; }
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  display: flex; align-items: flex-end;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}
.hero--dest { height: 70vh; min-height: 480px; }

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  /* per div con background-image */
  background-size: cover; background-position: center; background-repeat: no-repeat;
  /* per <video> e <img> */
  object-fit: cover; object-position: center;
}
.hero--full .hero-bg { transition: transform 0.1s linear; }
/* Assicura che il <video> copra l'intera hero senza bande laterali */
video.hero-bg {
  min-width: 100%; min-height: 100%;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(35,52,88,0.92) 0%,
    rgba(35,52,88,0.45) 45%,
    rgba(35,52,88,0.1) 100%
  );
}
.hero-overlay--dest {
  background: linear-gradient(
    to top,
    rgba(35,52,88,0.90) 0%,
    rgba(35,52,88,0.40) 50%,
    rgba(35,52,88,0.10) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 10% 88px;
}
.hero-content--dest { padding: 0 10% 72px; }
.hero-eyebrow {
  color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero h1 {
  color: white; font-size: clamp(48px, 7vw, 90px); font-weight: 700;
  line-height: 1.0; margin-bottom: 24px; max-width: 700px;
}
.hero h1 em { font-style: normal; font-weight: 300; }
.hero--dest h1 { font-size: clamp(42px, 6vw, 80px); margin-bottom: 0; }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 20px; font-weight: 300;
  line-height: 1.75; margin-bottom: 44px; max-width: 480px;
}

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; right: 10%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px; height: 48px; background: rgba(255,255,255,0.25);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.8; }
}

/* ── TIPOGRAFIA COMUNE ── */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  color: var(--navy); line-height: 1.15; max-width: 420px;
}

/* ── BUTTONS ── */
.btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  background: white; color: var(--navy);
  padding: 16px 36px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.btn-white .arrow { font-size: 18px; }

.btn-navy {
  display: inline-block; background: var(--navy); color: white;
  padding: 18px 44px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-navy:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-outline-navy {
  display: inline-block; border: 2px solid var(--navy); color: var(--navy);
  padding: 14px 32px; margin-top: 28px;
  font-size: 11px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ── HOMEPAGE: DESTINAZIONI ── */
.destinations { background: var(--light); }
.dest-header {
  padding: 80px 10% 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.dest-header .view-all {
  font-size: 12px; font-weight: 600; color: var(--navy);
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--navy); padding-bottom: 2px;
  white-space: nowrap;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 340px);
  gap: 3px;
  padding: 0 10% 80px;
}
.dest-card:nth-child(1) { grid-column: 1 / 3; }
.dest-card:nth-child(2) { grid-column: 3 / 4; }
.dest-card:nth-child(3) { grid-column: 1 / 2; }
.dest-card:nth-child(4) { grid-column: 2 / 4; }
.dest-card:nth-child(5) { grid-column: 1 / 3; }
.dest-card:nth-child(6) { grid-column: 3 / 4; }
.dest-card {
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(35,52,88,0.75) 0%, rgba(35,52,88,0.0) 55%);
  transition: opacity 0.3s;
}
.dest-card:hover .dest-card-overlay { opacity: 0.9; }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px;
}
.dest-region {
  font-size: 10px; color: rgba(255,255,255,0.65); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 5px;
}
.dest-name {
  font-size: 20px; color: white; font-weight: 700; line-height: 1.2;
}

/* ── HOMEPAGE: ABOUT ── */
.about {
  padding: 100px 50px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
  max-width: 60%; margin: 0 auto;
}
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-image-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 60%; aspect-ratio: 1; background: var(--navy); z-index: -1;
}
.about-text .section-title { margin-bottom: 28px; }
.about-text p {
  color: #666; font-size: 15px; line-height: 1.85; font-weight: 300; margin-bottom: 16px;
}

/* ── HOMEPAGE: WHY ── */
.why { background: var(--navy); padding: 80px 10%; }
.why .section-label { color: rgba(255,255,255,0.45); }
.why .section-title { color: white; margin-bottom: 56px; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1);
}
.why-item { background: var(--navy); padding: 40px 32px; transition: background 0.3s; }
.why-item:hover { background: rgba(255,255,255,0.05); }
.why-num { font-size: 12px; color: var(--taupe); font-weight: 600; letter-spacing: 0.15em; margin-bottom: 20px; }
.why-item h3 { color: white; font-size: 18px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.75; font-weight: 300; }

/* ── HOMEPAGE: CTA BAND ── */
.cta-band { padding: 100px 10%; text-align: center; background: #fff; }
.cta-band .section-label { text-align: center; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: var(--navy);
  margin: 12px auto 20px; max-width: 600px; line-height: 1.15;
}
.cta-band p {
  color: #888; font-size: 15px; font-weight: 300; max-width: 440px;
  margin: 0 auto 44px; line-height: 1.75;
}

/* ── ANCHOR NAV (pagine destinazione) ── */
.anchor-nav {
  background: var(--navy);
  display: flex;
  overflow-x: auto; scrollbar-width: none;
  position: relative;
  z-index: 90;
}
.anchor-nav.is-fixed {
  position: fixed !important;
  top: 131px;
  left: 0; right: 0;
  width: 100%;
}
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav a {
  flex: 1; min-width: max-content; text-align: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 28px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.anchor-nav a:hover { color: white; border-bottom-color: rgba(255,255,255,0.4); }
.anchor-nav a.active { color: white; border-bottom-color: white; }

/* ── SEZIONE DESTINAZIONE (pagine single-zone: caraibi, USA, ecc.) ── */
.intro {
  padding: 88px 10% !important;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
  background: #fff;
}
.intro-text p {
  font-size: 16px; font-weight: 300; color: #444; line-height: 1.85; margin-bottom: 20px;
}
.intro-text p:last-child { margin-bottom: 0; }

.viaggi {
  padding: 88px 10% !important;
  background: var(--light);
}

.closing {
  padding: 88px 10% !important;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
  background: #fff;
}
.closing-text p {
  font-size: 16px; font-weight: 300; color: #444; line-height: 1.85; margin-bottom: 28px;
}
.closing-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── SEZIONE DESTINAZIONE (pagine multi-zona: Africa) ── */
.dest-section { padding: 88px 0; }
.dest-section:nth-child(odd) { background: #fff; }
.dest-section:nth-child(even) { background: var(--light); }
.dest-intro {
  padding: 0 10% 64px !important;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.dest-intro-label { padding-top: 6px; }
.dest-name-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 700;
  color: var(--navy); line-height: 1.1; margin-top: 10px;
}
.dest-intro-text p {
  font-size: 16px; font-weight: 300; color: #444; line-height: 1.85;
  margin-bottom: 20px;
}
.dest-intro-text p:last-child { margin-bottom: 0; }

/* ── SLIDER ── */
.slider-wrap,
.viaggi-wrap { padding: 0 10% !important; }
.slider-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px;
}
.slider-header .section-title {
  font-size: clamp(18px, 2.2vw, 26px); max-width: none; margin-top: 8px;
}
.slider-controls { display: flex; gap: 6px; }
.slider-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--navy); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--navy); }
.slider-btn:hover svg { stroke: white; }
.slider-btn svg {
  width: 16px; height: 16px;
  stroke: var(--navy); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.slider-track {
  display: flex; gap: 3px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab;
}
.slider-track:active { cursor: grabbing; }
.slider-track::-webkit-scrollbar { display: none; }
.viaggio-card {
  flex: 0 0 calc(33.333% - 2px); scroll-snap-align: start;
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--navy);
}
.viaggio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.85;
}
.viaggio-card:hover img { transform: scale(1.06); opacity: 0.7; }
.viaggio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(35,52,88,0.88) 0%, rgba(35,52,88,0.3) 50%, rgba(35,52,88,0.0) 100%);
}
.viaggio-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px;
}
.viaggio-num {
  font-size: 10px; color: rgba(255,255,255,0.7); font-weight: 600;
  letter-spacing: 0.2em; margin-bottom: 8px;
}
.viaggio-name { font-size: 15px; color: white; font-weight: 700; line-height: 1.4; margin-bottom: 0; }

/* ── CLOSING NOTE ── */
.closing-note {
  margin: 64px 10% 0 !important;
  background: var(--navy);
  padding: 44px 56px;
  display: flex; align-items: center; gap: 48px;
}
.closing-note-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.closing-note-icon svg { width: 26px; height: 26px; }
.closing-note-body { flex: 1; }
.closing-note-title { font-family: 'Poppins', sans-serif; font-size: 24px !important; font-weight: 700 !important; color: #fff; margin-bottom: 0; line-height: 1.25; }
.closing-note p:not(.closing-note-title) { font-size: 16px; font-weight: 400; color: #fff; line-height: 1.8; }
.closing-note-cta {
  flex-shrink: 0;
  display: inline-block; background: white; color: var(--navy);
  padding: 14px 32px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: opacity 0.2s; white-space: nowrap;
}
.closing-note-cta:hover { opacity: 0.85; }

/* ── GALLERY ── */
.gallery { padding: 88px 10%; }
.gallery-header { margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── FORM ── */
.form-section { background: var(--navy); padding: 88px 10%; }

/* Layout intro pagina preventivo */
.form-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 64px; align-items: start;
}
.form-intro-text p {
  color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 300; line-height: 1.8;
}
.form-intro-promises { display: flex; flex-direction: column; gap: 28px; }
.form-promise { display: flex; gap: 16px; align-items: flex-start; }
.form-promise-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-promise-icon svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-promise p {
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 300; line-height: 1.7;
}
.form-promise p strong { color: white; font-weight: 600; }
.form-section .section-label { color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.form-section .section-title { color: white; margin-bottom: 8px; font-size: clamp(24px, 3vw, 38px); max-width: none; }
.form-section .form-sub {
  color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 300;
  margin-bottom: 48px; line-height: 1.7;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 14px 16px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select {
  color: rgba(255,255,255,0.7); cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group select option { background: var(--navy); color: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-consents {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.form-check-label {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.6; cursor: pointer;
}
.form-check-label input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  accent-color: white; cursor: pointer; margin-top: 3px; padding: 0;
}
.form-footer {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.form-footer p {
  font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 300;
  max-width: 400px; line-height: 1.6;
}

/* ── PAGINA PREVENTIVO STANDALONE ── */
.preventivo-hero {
  background: var(--navy); padding: 120px 10% 80px;
  display: flex; align-items: flex-end; min-height: 40vh;
  position: relative; overflow: hidden;
}
.preventivo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=2000&fit=crop&q=80') center/cover;
  opacity: 0.25;
}
.preventivo-hero-content { position: relative; z-index: 1; }
.preventivo-hero .section-label { color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.preventivo-hero h1 {
  color: white; font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  line-height: 1.05; max-width: 640px;
}
.preventivo-hero h1 em { font-style: normal; font-weight: 300; }

/* ── FOOTER: gestito da Divi Theme Builder ── */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { padding: 0 5% 72px; }
  .hero-content--dest { padding: 0 5% 56px; }
  .dest-header { padding: 64px 5% 36px; }
  .dest-grid { padding: 0 5% 64px; grid-template-rows: 320px 260px; }
  .about { padding: 80px 5%; gap: 48px; }
  .why { padding: 64px 5%; }
  .cta-band { padding: 80px 5%; }
  .dest-intro { padding-left: 5%; padding-right: 5%; gap: 40px; }
  .slider-wrap { padding: 0 5%; }
  .closing-note { margin-left: 5%; margin-right: 5%; }
  .gallery, .form-section { padding: 64px 5%; }
  .preventivo-hero { padding: 100px 5% 64px; }
  .scroll-hint { right: 5%; }
}
@media (max-width: 768px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2px;
  }
  .dest-card { aspect-ratio: 3/4; }
  .dest-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .about { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .dest-intro { grid-template-columns: 1fr; gap: 24px; }
  .viaggio-card { flex: 0 0 calc(80% - 2px); }
  .closing-note { flex-direction: column; gap: 24px; padding: 32px; }
  .closing-note-cta { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-intro { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
@media (max-width: 480px) {
  .viaggio-card { flex: 0 0 calc(90% - 2px); }
}
