/* Naples Transfer visual system */
:root {
  --ink: #17212b;
  --muted: #617080;
  --line: #dbe2ea;
  --soft: #f4f7f9;
  --surface: #ffffff;
  --navy: #102f4a;
  --navy-2: #0b2238;
  --teal: #0f7484;
  --teal-dark: #0b5965;
  --gold: #d8a33e;
  --green: #1fa463;
  --shadow: 0 14px 34px rgba(16, 47, 74, .10);
  --shadow-soft: 0 8px 22px rgba(16, 47, 74, .07);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

a {
  color: var(--teal);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 47, 74, .96);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.topbar,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.logo,
.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}

.logo-area span,
.logo .brand-text em {
  display: block;
  color: #cfeaf0;
  font-size: 12px;
  line-height: 1.25;
  text-transform: none;
  font-style: normal;
  font-weight: 600;
}

.logo .brand-text {
  display: block;
  min-width: 0;
}

.logo .brand-text strong {
  display: block;
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

nav a {
  color: #eaf5f7;
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  background: rgba(255, 255, 255, .10);
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.language-switch a {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.language-switch a.active {
  background: #fff;
  color: var(--navy);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(31, 164, 99, .22);
}

.hero {
  padding: 52px 0 44px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy) 54%, var(--teal-dark));
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 34px;
  align-items: start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  margin-bottom: 16px;
  border: 1px solid rgba(216, 163, 62, .55);
  border-radius: 999px;
  color: #ffe1a3;
  background: rgba(216, 163, 62, .12);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .90);
  font-size: 17px;
}

.hero-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

section:not(.hero) .hero-box {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

section:not(.hero) .hero-box p {
  color: var(--muted);
}

.hero-box ul {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding-left: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1c2730;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.hero-card-wrapper {
  display: grid;
  gap: 14px;
}

.hero-card-image {
  display: block;
  width: min(100%, 320px);
  max-height: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
}

.hero-card h2 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 22px;
}

.hero-card p,
.hero-card .hero-small,
.hero-card .hero-small.alt {
  color: var(--muted);
}

.hero-card strong {
  color: var(--ink);
}

.hero-card a {
  color: var(--teal);
}

.hero-small {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-small.alt {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 10px;
}

.booking-steps div {
  min-height: 70px;
  padding: 10px;
  border: 1px solid #e3e9ef;
  border-radius: var(--radius);
  background: #f8fafc;
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.booking-steps strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
}

.form-note {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff8e9;
  color: #5e4930;
  font-size: 13px;
  font-weight: 700;
}

.hero-form {
  display: block;
  margin-top: 14px;
}

.hero-form label {
  display: block;
  margin: 10px 0 5px;
  color: #334252;
  font-size: 12px;
  font-weight: 800;
}

.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #cbd4dd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.hero-form textarea {
  min-height: 76px;
  resize: vertical;
}

.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus {
  outline: 3px solid rgba(15, 116, 132, .18);
  border-color: var(--teal);
}

.hero-form button {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.hero-form button:hover {
  background: var(--teal-dark);
}

section {
  padding: 44px 0;
}

section:nth-of-type(even) {
  background: #fff;
}

.section-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
}

.cards + .cards {
  margin-top: 16px;
}

.card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gold);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}

.card a {
  color: var(--navy);
  text-decoration: none;
}

.card a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.meeting-item {
  min-height: 160px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfc);
}

.meeting-item:last-child {
  border-right: 0;
}

.meeting-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.meeting-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.routes-group {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.routes-group h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.routes-group small {
  color: var(--muted);
  font-size: 14px;
}

.table-wrapper {
  width: 100%;
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 520px;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
}

th,
td {
  padding: 12px 13px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef6f8;
  color: var(--navy);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

footer {
  margin-top: 0;
  padding: 28px 0;
  background: var(--navy-2);
  color: #c4d0db;
  font-size: 14px;
}

footer p {
  margin: 6px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.wa-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.pwa-install-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(92vw, 430px);
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .98);
  color: #1f2933;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pwa-install-banner[hidden] {
  display: none;
}

.pwa-install-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .topbar,
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .logo,
  .logo-area,
  nav {
    justify-content: center;
  }

  .btn-whatsapp {
    align-self: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  nav {
    gap: 2px;
  }

  nav a {
    padding: 7px 6px;
    font-size: 13px;
  }

  .hero {
    padding: 34px 0 30px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-actions,
  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .booking-steps,
  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .meeting-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .meeting-item:last-child {
    border-bottom: 0;
  }

  section {
    padding: 34px 0;
  }
}
.pwa-install-banner.is-visible {
  bottom: 92px;
  z-index: 9999;
}

@media (max-width: 640px) {
  .pwa-install-banner.is-visible {
    bottom: 126px;
  }
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 12px;
  margin-right: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.nav-whatsapp {
  display: none;
}

@media (max-width: 1180px) {
  .topbar,
  .header-inner {
    position: relative;
    min-height: 64px;
    gap: 10px;
  }

  .logo,
  .logo-area {
    flex: 1 1 auto;
    max-width: calc(100% - 92px);
  }

  .logo .brand-text strong,
  .logo-area strong {
    font-size: 13px;
    line-height: 1.15;
  }

  .logo-area span,
  .logo .brand-text em {
    font-size: 11px;
    line-height: 1.2;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .topbar > .btn-whatsapp,
  .header-inner > .btn-whatsapp {
    display: none;
  }

  nav,
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: rgba(16, 47, 74, .98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
  }

  body.nav-open nav,
  body.nav-open .main-nav {
    display: flex;
  }

  nav a,
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 15px;
  }

  .nav-whatsapp {
    display: flex;
    margin-top: 6px;
    background: var(--green);
    color: #fff;
    justify-content: center;
  }
}

/* Hamburger icon refinement */
.menu-toggle {
  width: 44px;
  min-width: 44px;
  height: 40px;
  padding: 0;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle::before {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 1180px) {
  .menu-toggle {
    margin-left: auto;
    order: 8;
  }
}

/* Align mobile hamburger with the brand line */
@media (max-width: 1180px) {
  .topbar,
  .header-inner {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .menu-toggle {
    align-self: flex-start;
    margin-top: 1px;
  }
}

/* Header brand cleanup */
header .logo-area span,
header .logo .brand-text em {
  display: none !important;
}

header .logo,
header .logo-area {
  max-width: none;
}

/* Final mobile header alignment */
@media (max-width: 1180px) {
  header .topbar,
  header .header-inner {
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  header .logo,
  header .logo-area {
    flex: 1 1 auto;
    justify-content: flex-start;
    max-width: calc(100% - 58px);
  }

  header .logo-img {
    flex: 0 0 42px;
  }

  header .brand-text,
  header .logo-area > div {
    min-width: 0;
  }

  header .brand-text strong,
  header .logo-area strong {
    display: block;
    line-height: 1;
  }

  header .menu-toggle {
    flex: 0 0 44px;
    align-self: center !important;
    margin-top: 0 !important;
    margin-left: auto;
  }
}

/* Mobile menu grouping */
.nav-group-label {
  display: none;
}

@media (max-width: 1180px) {
  .nav-group-label {
    display: block;
    margin: 8px 4px 4px;
    padding: 10px 8px 5px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: #bcd4dc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .nav-language {
    background: rgba(255, 255, 255, .06);
  }

  .nav-contact-label {
    margin-top: 10px;
  }
}

/* Google reviews callout */
#reviews { background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%); }
.google-reviews-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 34px; border: 1px solid rgba(14, 74, 128, .14); border-radius: 20px; background: #fff; box-shadow: 0 16px 40px rgba(14, 74, 128, .10); }
.google-reviews-copy { max-width: 700px; }
.google-reviews-copy .section-title { margin: 8px 0 12px; text-align: left; }
.google-reviews-copy p { margin: 0; }
.google-reviews-label { display: inline-block; color: #0e4a80; font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.google-reviews-actions { display: flex; flex: 0 0 auto; flex-direction: column; gap: 10px; min-width: 230px; }
.review-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 2px solid #0e4a80; border-radius: 999px; font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.review-button:hover, .review-button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(14, 74, 128, .18); }
.review-button-primary { color: #fff; background: #0e4a80; }
.review-button-secondary { color: #0e4a80; background: #fff; }
@media (max-width: 760px) { .google-reviews-panel { align-items: stretch; flex-direction: column; padding: 24px 20px; } .google-reviews-actions { width: 100%; min-width: 0; } }


/* Premium service imagery */
.service-gallery { padding: 26px 0 10px; background: #f7f9fb; }
.service-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 12px; }
.service-visual { display: flex; overflow: hidden; flex-direction: column; margin: 0; border: 1px solid rgba(14, 74, 128, .12); border-radius: 18px; background: #fff; box-shadow: 0 14px 34px rgba(14, 39, 64, .11); }
.service-visual img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.service-visual figcaption { flex: 1; padding: 12px 13px 14px; color: #17324d; font-size: .82rem; font-weight: 750; line-height: 1.35; }

@media (min-width: 761px) and (max-width: 1100px) {
  .service-gallery-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(32vw, 280px);
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .service-visual { scroll-snap-align: start; }
}
@media (max-width: 760px) {
  .service-gallery { padding: 14px 0 4px; }
  .service-gallery-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 310px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .service-visual { border-radius: 12px; scroll-snap-align: start; }
  .service-visual img { height: 145px; aspect-ratio: auto; object-fit: cover; }
  .service-visual figcaption { padding: 9px 11px 10px; font-size: .80rem; line-height: 1.3; }
}

/* Conversion offer: visible promise without fictitious discounts or urgency. */
.conversion-offer { padding: 14px 0 30px; background: #f4f7fa; }
.conversion-offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; border: 1px solid rgba(201, 151, 46, .38); border-radius: 14px; background: #fff; box-shadow: 0 12px 28px rgba(11, 18, 32, .07); }
.conversion-offer-copy { display: grid; gap: 6px; max-width: 780px; }
.conversion-offer-copy strong { color: #0b1220; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.25; }
.conversion-offer-copy span { color: #4f5d6b; line-height: 1.55; }
.conversion-offer-action { flex: 0 0 auto; text-align: center; white-space: normal; }
@media (max-width: 760px) {
  .conversion-offer { padding: 8px 0 24px; }
  .conversion-offer-inner { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
  .conversion-offer-action { display: block; width: 100%; }
}


/* Header layout v113: multilingual desktop and reachable mobile WhatsApp. */
header .brand-text strong,
header .logo-area strong {
  white-space: nowrap;
}

@media (min-width: 1181px) {
  header .topbar,
  header .header-inner {
    width: min(1540px, calc(100% - 32px));
    gap: 12px;
  }

  header .logo,
  header .logo-area {
    flex: 0 0 auto;
  }

  header .main-nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
    gap: 1px;
  }

  header .main-nav a {
    padding: 8px 6px;
    font-size: clamp(12px, .82vw, 14px);
    white-space: nowrap;
  }

  header .main-nav .nav-language {
    padding-inline: 5px;
  }

  header .topbar > .btn-whatsapp,
  header .header-inner > .btn-whatsapp {
    flex: 0 0 auto;
  }
}

@media (max-width: 1180px) {
  body.nav-open {
    overflow: hidden;
  }

  nav,
  .main-nav {
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  body.nav-open nav,
  body.nav-open .main-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .main-nav > a:not(.nav-language):not(.nav-whatsapp),
  .main-nav > .nav-group-label,
  .main-nav > .nav-whatsapp {
    grid-column: 1 / -1;
  }

  nav a,
  .main-nav a {
    min-height: 40px;
    padding: 8px 10px;
  }

  .main-nav .nav-language {
    grid-column: auto;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 8px 4px;
    text-align: center;
  }

  .main-nav .nav-contact-label {
    display: none;
  }

  .main-nav .nav-whatsapp {
    position: sticky;
    bottom: 0;
    z-index: 2;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    box-shadow: 0 -8px 18px rgba(16, 47, 74, .35), 0 8px 18px rgba(31, 164, 99, .24);
  }
}


/* Legal pages v114: consistent with the current Naples Transfer layout. */
.legal-page .hero {
  padding: 44px 0 34px;
}

.legal-page .hero-box {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-page .legal-content {
  padding: 38px 0 56px;
  background: linear-gradient(180deg, #f4f7f9 0%, #eef3f7 100%);
}

.legal-page .legal-layout {
  width: min(960px, calc(100% - 32px));
}

.legal-page .legal-section {
  margin-bottom: 16px;
  padding: 24px 26px;
  border-left: 4px solid rgba(216, 163, 62, .9);
  border-radius: 10px;
}

.legal-page .legal-section:last-child {
  margin-bottom: 0;
}

.legal-page .legal-section h2,
.legal-page .legal-section h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.3;
}

.legal-page .legal-section p {
  color: #34495b;
  line-height: 1.7;
}

.legal-page .legal-section p + p {
  margin-top: 9px;
}

@media (max-width: 640px) {
  .legal-page .hero {
    padding: 28px 0 24px;
  }

  .legal-page .legal-content {
    padding: 24px 0 38px;
  }

  .legal-page .legal-layout {
    width: min(100% - 24px, 960px);
  }

  .legal-page .legal-section {
    margin-bottom: 12px;
    padding: 18px 17px;
    border-left-width: 3px;
  }
}
