/* ==========================================================================
   CAIAZZO PARCHEGGIO LUNGA SOSTA POZZUOLI — main.css
   Stile dark + giallo oro + cream chiaro (palette ispirata Valetex)
   ========================================================================== */

:root {
  /* Colors - palette Dark + Gold */
  --dark: #0e1525;
  --dark-2: #1a2233;
  --dark-3: #232c40;
  --dark-soft: rgba(14, 21, 37, 0.08);
  --sea: #0e3a5f;          /* mantenuto per coerenza logo blu navy */
  --sea-deep: #082943;     /* dark navy logo */
  --sea-light: #1d5a85;
  --sea-soft: rgba(14, 58, 95, 0.08);

  --yellow: #2872e4;
  --yellow-light: #4a90f0;
  --yellow-deep: #1a5fc2;
  --yellow-soft: rgba(40, 114, 228, 0.12);

  --cream: #fbf8f3;
  --cream-warm: #f4ede1;
  --cream-deep: #e8dcc4;

  --terracotta: #c8633a;   /* mantenuto come accento secondario */
  --terracotta-deep: #a44d28;
  --terracotta-soft: rgba(200, 99, 58, 0.1);
  --gold: #d4a04a;
  --gold-deep: #b8862d;

  --ink: #15171a;
  --muted: #6b6b6b;
  --muted-light: #9a9a9a;
  --line: rgba(14, 21, 37, 0.1);
  --line-strong: rgba(14, 21, 37, 0.2);
  --white: #ffffff;

  --shadow-sm: 0 4px 12px rgba(14, 21, 37, 0.06);
  --shadow-md: 0 12px 32px -8px rgba(14, 21, 37, 0.15);
  --shadow-lg: 0 24px 60px -20px rgba(14, 21, 37, 0.3);
  --shadow-yellow: 0 12px 30px -8px rgba(40, 114, 228, 0.45);

  /* Alias semantico — usabile nei nuovi snippet */
  --accent: #2872e4;
  --accent-light: #4a90f0;
  --accent-deep: #1a5fc2;

  /* Typography */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --pad: clamp(1.2rem, 4vw, 2.4rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--yellow); color: var(--dark); }

/* ====== HELPERS ========================================================= */
.serif { font-family: var(--f-display); font-weight: 500; }
.italic { font-style: italic; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--sea-deep);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}
.section-title em {
  font-style: italic;
  color: var(--yellow-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.55;
}
.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ====== BUTTONS ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.3s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--yellow);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--yellow-light);
  box-shadow: var(--shadow-yellow);
  color: var(--white);
}
.btn--sea {
  background: var(--sea-deep);
  color: var(--cream);
}
.btn--sea:hover {
  background: var(--sea);
  box-shadow: 0 8px 24px rgba(14, 58, 95, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--sea-deep);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--sea-deep);
  background: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--sea-deep);
}
.btn--gold:hover {
  background: var(--gold-deep);
  color: var(--white);
}
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ===== BONIFICO ===== */
.btn--bonifico {
  background: var(--sea-deep);
  color: var(--cream);
}
.btn--bonifico:hover { background: #0a3a5c; color: #fff; }
.bonifico-box {
  text-align: left;
  background: var(--cream-warm, #fff8f0);
  border: 1px solid #d9c7a8;
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  margin: 1.2rem 0;
}
.bonifico-box__title { margin: 0 0 .5rem; color: var(--sea-deep); font-size: 1.05rem; }
.bonifico-box__lead { margin: 0 0 .9rem; font-size: .95rem; line-height: 1.5; }
.bonifico-box__rows { display: flex; flex-direction: column; gap: .5rem; }
.bonifico-box__row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .55rem .75rem; background: #fff; border-radius: 8px; border: 1px solid var(--line, #eee);
}
.bonifico-box__row span:first-child { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; }
.bonifico-box__row strong { font-family: monospace; font-size: 1rem; text-align: right; word-break: break-all; }
.bonifico-box__note { margin: .9rem 0 0; font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* Pulsanti copia */
.bonifico-copy {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--sea-deep, #082943);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
}
.bonifico-copy:hover { background: #0a3a5c; }
.bonifico-copy-all { margin-top: .9rem; }

/* Blocco istruzioni bonifico (homepage, sotto l'intro) */
.bonifico-info {
  margin-top: 1.4rem;
  background: var(--cream-warm, #fff8f0);
  border: 1px solid #d9c7a8;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.bonifico-info__head { display: flex; align-items: center; gap: .5rem; color: var(--sea-deep); font-size: 1.02rem; margin-bottom: .5rem; }
.bonifico-info__icon { font-size: 1.2rem; }
.bonifico-info__lead { margin: 0 0 .9rem; font-size: .9rem; line-height: 1.55; color: var(--ink, #333); }
.bonifico-info__rows { display: flex; flex-direction: column; gap: .5rem; }
.bonifico-info__row {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem .75rem; background: #fff; border-radius: 8px; border: 1px solid var(--line, #eee);
}
.bonifico-info__row > span:first-child { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; min-width: 92px; }
.bonifico-info__row strong, .bonifico-info__row > span:nth-child(2) { font-family: monospace; font-size: .95rem; word-break: break-all; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.87rem; }
.btn--block { width: 100%; }
.btn__arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ====== NAV ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.is-scrolled {
  padding: 0.6rem 0;
  background: var(--cream);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(14, 21, 37, 0.06);
}
/* Quando la nav è trasparente sopra l'hero scuro: testi chiari */
.nav:not(.is-scrolled) .nav__links a,
.nav:not(.is-scrolled) .nav__tel,
.nav:not(.is-scrolled) .nav__name { color: var(--cream); }
.nav:not(.is-scrolled) .nav__links a:hover,
.nav:not(.is-scrolled) .nav__tel:hover { color: var(--yellow); }
.nav:not(.is-scrolled) .nav__logo { filter: brightness(0) invert(1); opacity: 0.95; }
.nav:not(.is-scrolled) .nav-toggle__bar { background: var(--cream); }

/* Body offset perché la nav adesso è fixed (non occupa più spazio) */
body { padding-top: 0; /* l'hero stesso ha già padding sufficiente per non finire sotto */ }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav__logo {
  height: 52px;
  width: auto;
  display: block;
}
.nav__brand:hover .nav__logo { opacity: 0.85; }
.nav__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--sea-deep);
  line-height: 1.1;
}
.nav__name small {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--yellow-deep); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sea-deep);
  font-size: 0.92rem;
  font-weight: 600;
}
.nav__tel:hover { color: var(--yellow-deep); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--sea-deep);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== HERO (dark + foto background, ispirato Valetex) ============== */
.hero {
  position: relative;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 10vw, 7rem);
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../../images/parcheggio-esterno.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.4) contrast(1.1);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 90% 0%, rgba(245, 181, 0, 0.18), transparent 60%),
    radial-gradient(40% 35% at 0% 100%, rgba(245, 181, 0, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(14, 21, 37, 0.85), rgba(14, 21, 37, 0.95));
  z-index: -1;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { max-width: 640px; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.hero__title em {
  font-style: italic;
  color: var(--yellow);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero .eyebrow {
  color: var(--yellow);
}
.hero .eyebrow::before {
  background: var(--yellow);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(251, 248, 243, 0.78);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero__subtitle strong { color: var(--yellow-light); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.hero .btn--ghost {
  border-color: rgba(251, 248, 243, 0.3);
  color: var(--cream);
}
.hero .btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.hero__signals {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero__signals li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__signals .icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--yellow);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--yellow);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
}
.hero__badge span:first-child {
  width: 30px; height: 30px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-bottom {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  border-left: 4px solid var(--yellow);
}
.hero__badge-bottom-num {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.hero__badge-bottom-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ====== REVEAL ANIMATIONS ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ====== BOOKING FORM =================================================== */
.booking {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.booking__intro { padding-top: 1rem; }
.booking__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.booking__title em { color: var(--yellow-deep); font-style: italic; }
.booking__lead {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.booking__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking__points li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.booking__points strong {
  display: block;
  color: var(--sea-deep);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.booking__points span {
  color: var(--muted);
  font-size: 0.93rem;
}
.booking__points .dot {
  flex: none;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 0 4px var(--yellow-soft);
}

.booking__form {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sea);
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.field input::placeholder { color: var(--muted-light); }

.veicolo-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.veicolo-opt {
  cursor: pointer;
  position: relative;
}
.veicolo-opt input { position: absolute; opacity: 0; pointer-events: none; }
.veicolo-opt__box {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sea-deep);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.veicolo-opt__box .ico {
  font-size: 1.4rem;
  grid-row: 1 / span 2;
  align-self: center;
}
.veicolo-opt__title {
  grid-column: 2;
  grid-row: 1;
  line-height: 1.1;
}
.veicolo-opt__hint {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
  letter-spacing: 0.02em;
}
.veicolo-opt input:checked + .veicolo-opt__box {
  border-color: var(--yellow);
  background: var(--yellow-soft);
}
.veicolo-opt:hover .veicolo-opt__box { transform: translateY(-1px); }

/* ----- PRICE SUMMARY ----- */
.price-summary {
  margin-top: 1.4rem;
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--yellow);
}
.price-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.price-summary__row:last-child { margin-bottom: 0; }
.price-summary__row .lbl {
  color: rgba(251, 248, 243, 0.65);
}
.price-summary__row.total {
  border-top: 1px dashed rgba(251, 248, 243, 0.25);
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  align-items: center;
}
.price-summary__row.total .val { color: var(--yellow); }
.price-summary__row.empty {
  color: rgba(251, 248, 243, 0.5);
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
  display: block;
}

/* ===== CONSEGNA AUTO (parcheggio / porto) ===== */
.consegna-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.consegna-opt {
  cursor: pointer;
  position: relative;
  display: block;
}
.consegna-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.consegna-opt__box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  min-height: 76px;
}
/* Indicatore radio personalizzato (pallino a sinistra) */
.consegna-opt__box::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--white);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.consegna-opt input:checked + .consegna-opt__box::before {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 45%, var(--white) 50%);
}
.consegna-opt__icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}
.consegna-opt__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.consegna-opt__body strong {
  font-size: 1.02rem;
  color: var(--sea-deep);
  font-weight: 600;
  line-height: 1.25;
}
.consegna-opt__body small {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.consegna-opt input:checked + .consegna-opt__box {
  border-color: var(--accent);
  background: rgba(40, 114, 228, 0.06);
  box-shadow: 0 4px 14px rgba(40, 114, 228, 0.12);
}
.consegna-opt:hover .consegna-opt__box { transform: translateY(-1px); }

/* ===== SELETTORE FASCIA ORARIA ===== */
.fascia-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fascia-opt {
  cursor: pointer;
  position: relative;
  display: block;
}
.fascia-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.fascia-opt__box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 64px;
}
.fascia-opt__box::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: var(--white);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.fascia-opt input:checked + .fascia-opt__box::before {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 45%, var(--white) 50%);
}
.fascia-opt__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.fascia-opt__body strong {
  font-size: 1rem;
  color: var(--sea-deep);
  font-weight: 600;
  line-height: 1.25;
}
.fascia-opt__body small {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.4;
}
.fascia-opt__price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
}
.fascia-opt input:checked + .fascia-opt__box {
  border-color: var(--accent);
  background: rgba(40, 114, 228, 0.06);
  box-shadow: 0 4px 14px rgba(40, 114, 228, 0.12);
}
.fascia-opt:hover .fascia-opt__box { transform: translateY(-1px); }

/* ===== SELETTORE ORARIO (mobile-friendly, grande) ===== */
.select-time {
  width: 100%;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  font-family: var(--f-body);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  color: var(--sea-deep);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path fill='%23082943' d='M7 9L0 0h14z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 14px 9px;
  padding-right: 3rem;
  cursor: pointer;
  min-height: 56px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-weight: 600;
}
.select-time:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(40, 114, 228, 0.15);
}
.select-time:invalid { color: var(--muted); font-weight: 400; }
.field .hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-style: italic;
}

/* ===== SCHERMATA DI SUCCESSO POST-PRENOTAZIONE ===== */
.booking-success {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 1.8rem 2rem;
  text-align: center;
  border-top: 4px solid #1e7d32;
  animation: stepFadeIn 0.4s ease-out;
}
.booking-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2cb04a, #1e7d32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(30, 125, 50, 0.35);
}
.booking-success__title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--sea-deep);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.booking-success__id {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}
.booking-success__id strong {
  font-family: 'Menlo','Monaco',monospace;
  font-size: 1.05rem;
  color: var(--sea-deep);
  background: var(--cream-warm);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}
.booking-success__msg {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 1.8rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.booking-success__msg strong { color: var(--sea-deep); }
.booking-success__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 320px;
  margin: 0 auto;
}
.booking-success__actions .btn { width: 100%; }

@media (max-width: 560px) {
  .booking-success { padding: 2rem 1.2rem 1.5rem; }
  .booking-success__title { font-size: 1.4rem; }
  .booking-success__icon { width: 70px; height: 70px; font-size: 2.1rem; }
}


.btn-maps-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  grid-column: 2 / 3;  /* nella stessa colonna del form (desktop) */
  margin-top: 0.5rem;
  padding: 1.05rem 1.4rem;
  background: #1e6e34;
  color: #fff;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(30, 110, 52, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
}
.btn-maps-direct:hover {
  background: #185a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(30, 110, 52, 0.45);
  color: #fff;
}
.btn-maps-direct:active { transform: translateY(0); }

@media (max-width: 560px) {
  .consegna-opt__box { padding: 0.9rem 1rem; min-height: 70px; }
  .consegna-opt__body strong { font-size: 1rem; }
  .consegna-opt__icon { font-size: 1.7rem; }
  .btn-maps-direct { font-size: 1rem; padding: 1rem 1.2rem; }
}


.form-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  gap: 0.4rem;
  position: relative;
}
.form-stepper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.form-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s;
}
.form-stepper__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all 0.25s;
}
.form-stepper__lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.form-stepper__item.is-active .form-stepper__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(40, 114, 228, 0.35);
}
.form-stepper__item.is-active .form-stepper__lbl { color: var(--sea-deep); }
.form-stepper__item.is-done .form-stepper__num {
  background: #1e7d32;
  border-color: #1e7d32;
  color: var(--white);
}
.form-stepper__item.is-done .form-stepper__num::before { content: "✓"; }
.form-stepper__item.is-done .form-stepper__num { font-size: 0; }
.form-stepper__item.is-done .form-stepper__num::before { font-size: 0.95rem; }

/* ===== WIZARD: STEP CONTENTS ===== */
.form-step { display: none; }
.form-step.is-active { display: block; animation: stepFadeIn 0.3s ease-out; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-step-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form-step-nav .btn { flex: 1; min-width: 140px; }

.step-head {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.step-head__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--sea-deep);
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.step-head__title small {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.step-head__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== STEP 2: SERVIZI LIST ===== */
.servizi-banner {
  background: linear-gradient(135deg, rgba(40, 114, 228, 0.08), rgba(40, 114, 228, 0.02));
  border: 1px solid rgba(40, 114, 228, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.servizi-banner strong { color: var(--sea-deep); }
.servizio-warning {
  background: rgba(200, 99, 58, 0.08);
  border: 1px solid rgba(200, 99, 58, 0.3);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--terracotta-deep);
  line-height: 1.45;
}
.servizio-warning strong { color: var(--terracotta-deep); }

.servizi-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.servizio-card {
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.servizio-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(40, 114, 228, 0.15);
}
.servizio-card__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  align-items: center;
}
.servizio-card__main input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.servizio-card__hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--sea-deep);
  margin-bottom: 0.15rem;
}
.servizio-card__icon { font-size: 1.3rem; }
.servizio-card__body small {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  display: block;
}
.servizio-card__extra {
  padding: 0.8rem 1.1rem 1rem;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.servizio-card__extra .field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sea-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}
.servizio-card__extra input[type="number"] {
  width: 100px;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--white);
}
.dest-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.dest-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.dest-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(40, 114, 228, 0.06);
  font-weight: 600;
  color: var(--sea-deep);
}
.dest-opt input { accent-color: var(--accent); }

.servizio-disclaimer {
  margin-top: 0.6rem;
  padding: 0.9rem 1.1rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.servizio-disclaimer--big {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(40, 114, 228, 0.06), rgba(40, 114, 228, 0.01));
}
.servizio-disclaimer strong { color: var(--sea-deep); }

/* ===== STEP 3: RECAP BOX ===== */
.recap-box {
  background: var(--cream-warm);
  border-radius: var(--r-md);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.4rem;
  border-left: 4px solid var(--accent);
}
.recap-box__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  margin: 0 0 0.8rem;
  color: var(--sea-deep);
  font-weight: 600;
}
.recap-box__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(14, 21, 37, 0.06);
  font-size: 0.93rem;
}
.recap-box__row:last-of-type { border-bottom: none; }
.recap-box__row .lbl { color: var(--muted); }
.recap-box__row .val { color: var(--sea-deep); font-weight: 600; text-align: right; }

/* Riga evidenziata (es. orario arrivo) */
.recap-box__row--highlight {
  background: rgba(40, 114, 228, 0.06);
  margin: 0 -1.4rem;
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
  border-left: 3px solid var(--accent);
}
.recap-box__row--highlight .lbl {
  color: var(--sea-deep);
  font-weight: 600;
}
.recap-box__row--highlight .val {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--f-display);
}

/* Servizio in recap: aggiunge sub-nota sotto (es. "da preventivare") */
.recap-box__row--service .val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.recap-service-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
  font-style: italic;
  letter-spacing: 0.01em;
}

.recap-box__row--total {
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--accent) !important;
  font-size: 1.1rem;
}
.recap-box__row--total .val {
  color: var(--accent);
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.recap-box__total-note {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(200, 99, 58, 0.08);
  border-left: 3px solid var(--terracotta);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.5;
  text-align: left;
}
.recap-box__total-note strong { color: var(--terracotta-deep); }
.recap-box__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
  font-style: italic;
  text-align: center;
}

@media (max-width: 560px) {
  .form-stepper__lbl { font-size: 0.7rem; }
  .form-step-nav .btn { min-width: 100%; }
  .dest-options { grid-template-columns: 1fr; }
  .recap-box__row { flex-direction: column; gap: 0.2rem; }
  .recap-box__row .val { text-align: left; }
}

.form-actions {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr 1fr;
}
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

/* ====== PREZZI SECTION ================================================ */
.prezzi {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--cream-warm);
}
.prezzi__tabs {
  display: inline-flex;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 4px;
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow-sm);
}
.prezzi__tabs-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.prezzi__tab {
  padding: 0.7rem 1.4rem;
  border: 0;
  background: transparent;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.prezzi__tab.is-active {
  background: var(--sea-deep);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.prezzi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.prezzo-col {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.prezzo-col__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.prezzo-col__icon {
  width: 56px;
  height: 56px;
  background: var(--sea-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.prezzo-col--suv .prezzo-col__icon { background: var(--yellow-soft); }
.prezzo-col__h {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--sea-deep);
  font-weight: 600;
}
.prezzo-col__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.prezzo-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.prezzo-col__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.prezzo-col__item:last-child { border-bottom: 0; padding-bottom: 0; }
.prezzo-col__item-lbl {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.prezzo-col__item-lbl small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.prezzo-col__item-price {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sea-deep);
}

.prezzi__note {
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.prezzi__note strong { color: var(--sea-deep); }

/* ====== COME FUNZIONA ================================================== */
.come {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--cream);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--yellow-deep);
  opacity: 0.2;
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
}
.step__icon {
  width: 64px;
  height: 64px;
  background: var(--sea-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
.step__title {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.step__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ====== GALLERIA ======================================================= */
.galleria {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--cream-warm);
}
.galleria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.galleria__item {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.galleria__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.galleria__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  display: block;
}
.galleria__item:hover img { transform: scale(1.03); }
.galleria__item-cap {
  padding: 1.1rem 1.3rem 1.3rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.galleria__item-cap strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sea-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.galleria__item-cap small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .galleria__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .galleria__grid { grid-template-columns: 1fr; }
}

/* ====== CONTATTI =================================================== */
.contatti {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--sea-deep);
  color: var(--cream);
}
.contatti h2 { color: var(--cream); }
.contatti .section-sub { color: rgba(245, 237, 224, 0.7); }
.contatti .eyebrow { color: var(--gold); }
.contatti .eyebrow::before { background: var(--gold); }

.contatti__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contatti__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contatto-card {
  background: rgba(245, 237, 224, 0.07);
  border: 1px solid rgba(245, 237, 224, 0.15);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.contatto-card:hover {
  background: rgba(245, 237, 224, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contatto-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--sea-deep);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contatto-card__lbl {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 0.3rem;
}
.contatto-card__val {
  font-weight: 600;
  font-size: 1rem;
  word-break: break-word;
}

.mappa {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 237, 224, 0.2);
  aspect-ratio: 4 / 5;
}
.mappa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(190deg) saturate(0.7);
}

/* ====== FOOTER ========================================================== */
.footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: rgba(245, 237, 224, 0.85);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer__brand img { height: 60px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.footer__brand-name small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__text {
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.6);
  margin-top: 0.5rem;
}
.footer__h {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer a {
  color: rgba(245, 237, 224, 0.7);
  font-size: 0.92rem;
}
.footer a:hover { color: var(--gold); }
.footer__legal {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.5);
}

/* ====== FLOATING ACTIONS (Ufficio, Cellulare, WhatsApp) =============== */
.fab-group {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, width 0.3s;
  position: relative;
  overflow: hidden;
}
.fab:hover {
  transform: translateY(-2px) scale(1.06);
}
.fab__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--dark);
  color: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-md);
}
.fab:hover .fab__tip,
.fab:focus-visible .fab__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* Ufficio (telefono fisso) — colore azzurro brand */
.fab--call {
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(40, 114, 228, 0.4);
}
.fab--call:hover { box-shadow: 0 12px 28px rgba(40, 114, 228, 0.55); }
/* Cellulare — blu navy scuro */
.fab--mobile {
  background: var(--sea-deep);
  box-shadow: 0 8px 22px rgba(8, 41, 67, 0.45);
}
.fab--mobile:hover { box-shadow: 0 12px 28px rgba(8, 41, 67, 0.6); }
/* WhatsApp — verde ufficiale */
.fab--wa {
  background: #25d366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}
.fab--wa:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55); }

/* Mobile: leggermente più piccoli, sempre visibili, tooltip nascosto */
@media (max-width: 768px) {
  .fab-group { bottom: 0.9rem; right: 0.9rem; gap: 0.55rem; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
  .fab--wa svg { width: 24px; height: 24px; }
  .fab__tip { display: none; }
}

/* ====== TOAST NOTIFICHE ================================================= */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--sea-deep);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-size: 0.93rem;
  font-weight: 500;
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { background: #1e7d32; }
.toast.error { background: var(--terracotta-deep); }

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 16 / 12; max-width: 500px; margin: 0 auto; }
  .booking__grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn-maps-direct { grid-column: 1 / -1; }
  .contatti__grid { grid-template-columns: 1fr; gap: 2rem; }
  .mappa { aspect-ratio: 16 / 10; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 6rem var(--pad) 2rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    z-index: 110;
    gap: 0;
    align-items: stretch;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links li {
    width: 100%;
    border-bottom: 1px solid rgba(251, 248, 243, 0.1);
  }
  .nav__links a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.15rem;
    color: var(--cream) !important;
    font-weight: 500;
  }
  .nav__links a:hover { color: var(--accent) !important; }
  .nav__tel { display: none; }
  .nav-toggle { display: flex; z-index: 120; }
  /* Quando il menu mobile è aperto, il toggle (X) deve essere visibile sopra di esso */
  .nav__links.is-open ~ .nav-toggle .nav-toggle__bar,
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: var(--cream); }

  .form-row--2 { grid-template-columns: 1fr; }
  .veicolo-options { grid-template-columns: 1fr 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .prezzi__grid { grid-template-columns: 1fr; }
  .contatti__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
  .booking__form { padding: 1.4rem 1.2rem; }
  .contatti__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NUOVE SEZIONI STILE VALETEX-INSPIRED
   ========================================================================== */

/* ====== STATS / COUNTER (sezione numeri grandi) ============================ */
.stats {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 100% 50%, rgba(245, 181, 0, 0.1), transparent 60%);
  pointer-events: none;
}
.stats__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stats__head { text-align: center; margin-bottom: 3rem; }
.stats__head .eyebrow { justify-content: center; color: var(--yellow); }
.stats__head .eyebrow::before { background: var(--yellow); }
.stats__head h2 {
  color: var(--cream);
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stats__head h2 em { color: var(--yellow); font-style: italic; }
.stats__head p { color: rgba(251, 248, 243, 0.65); max-width: 540px; margin: 0 auto; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(251, 248, 243, 0.08);
  border-radius: var(--r-lg);
  background: rgba(251, 248, 243, 0.02);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: rgba(245, 181, 0, 0.06);
}
.stat-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.stat-card__num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-card__num small { font-size: 0.55em; font-weight: 600; color: var(--yellow-light); }
.stat-card__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(251, 248, 243, 0.8);
}

/* ====== WHY US (perché sceglierci - card bold) ============================ */
.whyus {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream);
}
.whyus__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.whyus__head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.whyus__head .eyebrow { justify-content: center; }

.whyus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.whyus-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border-bottom: 4px solid var(--cream-deep);
}
.whyus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--yellow);
}
.whyus-card__num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: 0.15;
  line-height: 1;
}
.whyus-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 1.2rem;
  background: var(--dark);
  color: var(--yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.whyus-card__h {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.whyus-card__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ====== TESTIMONIALS ====================================================== */
.testimonials {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream-warm);
  position: relative;
}
.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.testimonials__head { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.testimonials__head .eyebrow { justify-content: center; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* === Carosello orizzontale a scorrimento automatico === */
.testimonials-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0 2rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonials-marquee__track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: testimonials-scroll 60s linear infinite;
  padding: 1rem 0.8rem;
}
.testimonials-marquee:hover .testimonials-marquee__track {
  animation-play-state: paused;
}
.testimonials-marquee .testimonial {
  flex: 0 0 360px;
  max-width: 360px;
}
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee__track { animation: none; }
}
@media (max-width: 560px) {
  .testimonials-marquee .testimonial { flex: 0 0 86vw; max-width: 86vw; }
  .testimonials-marquee__track { animation-duration: 45s; }
}
.testimonial {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--yellow);
}
.testimonial__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 0;
}
.testimonial__quote::before {
  content: "“";
  font-family: var(--f-display);
  font-size: 3.5rem;
  color: var(--yellow);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}
.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--yellow-deep);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 1.1rem;
}
.testimonial__name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.2;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ====== CTA BOX SCURO (prima del footer) ================================= */
.cta-dark {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--cream);
}
.cta-dark__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.cta-dark__box {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-dark__box::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 181, 0, 0.15), transparent 70%);
  z-index: -1;
}
.cta-dark__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.cta-dark__title em { color: var(--white); font-style: italic; }
.cta-dark__sub {
  color: rgba(251, 248, 243, 0.75);
  font-size: 1.05rem;
  max-width: 520px;
}
.cta-dark__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cta-dark .btn--primary {
  background: var(--yellow);
  color: var(--dark);
}
.cta-dark .btn--ghost {
  border-color: rgba(251, 248, 243, 0.3);
  color: var(--cream);
}
.cta-dark .btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 820px) {
  .cta-dark__box { grid-template-columns: 1fr; text-align: center; }
  .cta-dark__actions { justify-content: center; }
  .cta-dark__sub { margin: 0 auto; }
}

/* ====== FOOTER DARK PIÙ RICCO ============================================ */
.footer {
  background: var(--dark);
  color: rgba(251, 248, 243, 0.7);
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__brand img {
  height: 64px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  color: rgba(251, 248, 243, 0.65);
}
.footer__h {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a {
  color: rgba(251, 248, 243, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer ul a:hover { color: var(--yellow); padding-left: 4px; }

.footer__legal {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.4rem var(--pad) 0;
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(251, 248, 243, 0.45);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__legal a {
  color: rgba(251, 248, 243, 0.6);
  text-decoration: none;
  margin-left: 0.8rem;
}
.footer__legal a:hover { color: var(--yellow); }

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__legal { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   RESPONSIVE per nuove sezioni
   ========================================================================== */
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .whyus__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-card { padding: 1.5rem 0.8rem; }
  .stat-card__num { font-size: 2.2rem; }
  .whyus__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PADDING-TOP COMPENSAZIONE NAV FIXED su pagine senza hero
   ========================================================================== */
/* Quando la prima sezione NON è un hero scuro, lasciamo spazio per la nav */
.legal-page,
section.contatti:first-of-type,
body > main > section:first-child:not(.hero) {
  padding-top: clamp(6rem, 10vw, 8rem);
}
/* Coming-soon ha già il suo layout, non serve toccarla */

/* ====== DATETIME PAIR (data + select ora affiancati) ===================== */
.datetime-pair {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.5rem;
}
.datetime-pair input[type="date"],
.datetime-pair select {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.datetime-pair input[type="date"]:focus,
.datetime-pair select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.datetime-pair select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2315171a' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2rem;
}
