.hero {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #0b0b0c;
  overflow: hidden;
  padding: 110px 5% 48px !important;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-image,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 12, 0.58);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  grid-gap: 48px;
  gap: 48px;
  align-items: center;
}

.hero-booking {
  min-width: 0;
}

.hero-text {
  max-width: 520px;
  justify-self: end;
  text-align: center;
}

.hero-kicker {
  color: #c6a35a;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 1px;
  text-transform: none;
  color: #f7f5f0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 4px 28px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
  color: #c6a35a;
  display: block;
  -webkit-text-fill-color: #c6a35a;
  background: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: #f0ece1;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-cta-wrapper {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #E5C378 0%, #C6A35A 50%, #A67C3C 100%);
  color: #0b0b0c !important;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: none;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(198, 163, 90, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-call-btn svg {
  color: #0b0b0c;
  flex-shrink: 0;
}

.hero-call-btn:hover {
  background: linear-gradient(135deg, #F0D598 0%, #E5C378 50%, #C6A35A 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 163, 90, 0.65);
  color: #0b0b0c !important;
}

.btn-primary,
.btn-secondary {
  padding: 18px 45px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #c6a35a, #a67c3c);
  color: #0b0b0c;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(198, 163, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #c6a35a;
  border: 2px solid #c6a35a;
}

.btn-secondary:hover {
  background: #c6a35a;
  color: #0b0b0c;
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-text {
    justify-self: center;
    text-align: center;
    order: -1;
    margin: 0 auto;
    max-width: 540px;
  }

  .hero-cta-wrapper {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 95px 4% 28px !important;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 4.8vw, 1.85rem);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-cta-wrapper {
    margin-top: 14px;
  }

  .hero-call-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    gap: 8px;
  }

  .hero-call-btn svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 88px 3% 20px !important;
  }

  .hero-title {
    font-size: 1.45rem;
    letter-spacing: 0.2px;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-call-btn {
    padding: 9px 20px;
    font-size: 0.86rem;
  }
}

/* ===== CHAUFFEUR OVERVIEW (FOTO 2 STYLE) ===== */

.chauffeur-overview-section {
  background: #0b0c0f;
  padding: 40px 5% 90px;
  position: relative;
  overflow: visible;
}

/* ===== BOX ORO DEI 3 PILASTRI (FOTO 1) SOVRAPPOSTO - VERSIONE SOTTILE ===== */

.overview-gold-box-container {
  max-width: 940px;
  margin: 0 auto -24px;
  position: relative;
  z-index: 20;
}

/* Box Dorato sovrapposto - Altezza ridotta ed elegante */
.overview-gold-box {
  width: 100%;
  background: #c39d56;
  background: linear-gradient(135deg, #caa55d 0%, #b88f44 100%);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gold-box-content {
  padding: 5px 14px 5px;
  position: relative;
}

/* Linea orizzontale che connette le icone - nascosta per perfetto allineamento pulito */
.gold-connector-line {
  display: none;
}

.gold-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  gap: 16px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.gold-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gold-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2a2d34;
  border: 1.5px solid #c39d56;
  color: #c39d56;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.gold-pillar-item:hover .gold-icon-circle {
  transform: scale(1.08);
  background: #1e2025;
}

.gold-icon-circle svg {
  width: 11px;
  height: 11px;
}

.gold-pillar-title {
  font-size: 0.80rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  text-align: center;
  width: 100%;
}

.gold-pillar-text {
  font-size: 0.65rem;
  color: #262626;
  line-height: 1.25;
  margin: 0;
  font-weight: 400;
  text-align: center;
}


/* ===== PARTE INFERIORE: FOTO MINIVAN + CARD BIANCA ASSIEME ATTACCATI ===== */

.overview-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  grid-gap: 0;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
  border-radius: 16px;
  overflow: visible; /* Permette al badge TripAdvisor di sporgere per intero senza essere tagliato */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  background: #ffffff;
  position: relative;
}

/* Foto auto laterale unita alla sezione */
.overview-car-photo-card {
  position: relative;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  box-shadow: none;
  min-height: 100%;
  height: 100%;
}

.overview-car-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.car-photo-caption span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C6A35A;
  font-weight: 600;
}

.car-photo-caption h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 4px 0 0 0;
}

/* Scheda informativa bianca unita direttamente alla foto */
.overview-info-card {
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  padding: 55px 42px 36px;
  position: relative;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

/* ===== BADGE TRIPADVISOR APPESO AL BORDO IN ALTO A DESTRA NELLA BOX BIANCA CON DONDOLIO ===== */
.info-tripadvisor-hanging {
  position: absolute;
  top: 0; /* Appeso direttamente al bordo superiore della box bianca */
  right: 38px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0px;
  animation: pendulumSwing 3.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  pointer-events: auto;
}

/* Gancio / fermaglio di attacco al bordo superiore */
.info-tripadvisor-hanging::before {
  content: '';
  width: 14px;
  height: 6px;
  background: #c39d56;
  border-radius: 4px 4px 0 0;
  margin-bottom: -1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Immagine tripadvisor.webp ingrandita */
.dangling-tripadvisor-img {
  width: 155px; /* Dimensione aumentata */
  height: auto;
  aspect-ratio: 600 / 587;
  display: block;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.dangling-tripadvisor-img:hover {
  filter: brightness(1.06);
}

/* ANIMAZIONE DONDOLIO (PENDULUM SWING) */
@keyframes pendulumSwing {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(7deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Testo informativo */
.info-text-wrapper {
  padding-right: 0;
  text-align: center;
}

.info-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 auto 12px;
  line-height: 1.3;
  padding-right: 180px; /* Spazio dedicato per il badge ingrandito */
  text-align: center;
}

.info-paragraph {
  font-size: 0.84rem;
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0 auto 10px;
  max-width: 620px;
  text-align: center;
}

.info-paragraph strong {
  color: #1a1a1a;
}

/* Punti salienti del mezzo */
.info-vehicle-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px auto 20px;
  padding: 10px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #C6A35A;
  max-width: 440px;
  width: -webkit-fit-content;
  width: fit-content;
  align-items: flex-start;
  box-sizing: border-box;
}

.vh-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 9px !important;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2b2b2b;
  width: 100%;
}

.vh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C6A35A;
  box-shadow: 0 0 6px rgba(198, 163, 90, 0.4);
  flex-shrink: 0 !important;
  margin-top: 5px !important;
}

.vh-item span:not(.vh-dot) {
  text-align: left !important;
  line-height: 1.38;
  flex: 1 1;
}

/* Pulsanti di azione */
.info-actions-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-gold-prenota {
  display: inline-block;
  background: #111215;
  color: #C6A35A;
  border: 1.5px solid #C6A35A;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  text-align: center;
}

.btn-gold-prenota:hover {
  background: #C6A35A;
  color: #0b0c0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 163, 90, 0.35);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .overview-gold-box-container {
    max-width: 95%;
    margin: 0 auto -20px;
    z-index: 25;
  }

  .overview-bottom-grid {
    grid-template-columns: 1fr;
    max-width: 95%;
  }

  .overview-car-photo-card {
    min-height: 280px;
    height: 280px;
    border-radius: 16px 16px 0 0;
  }

  .overview-info-card {
    padding: 55px 35px 30px;
    border-radius: 0 0 16px 16px;
  }
}

@media (max-width: 850px) {
  /* Box oro sopra la foto della macchina con sovrapposizione ed altezza ridotta */
  .overview-gold-box-container {
    max-width: 96%;
    margin: 0 auto -28px;
    position: relative;
    z-index: 25;
  }

  .overview-gold-box {
    width: 100%;
    border-radius: 8px;
  }

  .gold-box-content {
    padding: 5px 6px 5px;
  }

  .gold-connector-line {
    display: none;
  }

  /* Mantiene le 3 colonne con altezza molto sottile */
  .gold-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .gold-icon-circle {
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
  }

  .gold-icon-circle svg {
    width: 9px;
    height: 9px;
  }

  .gold-pillar-title {
    font-size: 0.68rem;
    min-height: 20px;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gold-pillar-text {
    font-size: 0.54rem;
    line-height: 1.2;
  }

  .overview-car-photo-card {
    min-height: 250px;
    height: 260px;
  }

  .info-text-wrapper {
    padding-right: 0;
  }

  .info-title {
    font-size: 1.18rem;
    padding-right: 0 !important;
    text-align: center;
  }

  .info-paragraph {
    font-size: 0.78rem;
    line-height: 1.48;
    text-align: center;
  }

  /* 3) Togli per la versione mobile fino alla larghezza 850 immagine di tripadvisor */
  .info-tripadvisor-hanging {
    display: none !important;
  }

  /* 4) Ovunque in qualsiasi versione richiedi un preventivo deve essere centrale */
  .info-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .btn-gold-prenota {
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.82rem;
  }
}

@media (max-width: 576px) {
  .chauffeur-overview-section {
    padding: 28px 3% 50px;
  }

  .overview-gold-box-container {
    max-width: 98%;
    margin: 0 auto -22px;
    z-index: 25;
  }

  .gold-box-content {
    padding: 4px 4px 4px;
  }

  .gold-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .gold-icon-circle {
    width: 16px;
    height: 16px;
    margin-bottom: 1px;
  }

  .gold-icon-circle svg {
    width: 8px;
    height: 8px;
  }

  .gold-pillar-title {
    font-size: 0.64rem;
    min-height: 18px;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gold-pillar-text {
    font-size: 0.49rem;
    line-height: 1.18;
  }

  .overview-car-photo-card {
    min-height: 220px;
    height: 230px;
  }

  .car-photo-caption {
    padding: 10px 12px;
  }

  .car-photo-caption h4 {
    font-size: 0.95rem;
  }

  .overview-info-card {
    padding: 18px 12px 16px;
  }

  .info-title {
    font-size: 1.12rem;
    padding-right: 0 !important;
    text-align: center;
    margin-bottom: 8px;
  }

  .info-paragraph {
    font-size: 0.76rem;
    line-height: 1.42;
    margin-bottom: 8px;
  }

  .info-vehicle-highlights {
    padding: 8px 12px;
    gap: 6px;
    margin: 12px auto 14px;
    max-width: 95%;
  }

  .vh-item {
    font-size: 0.74rem;
    gap: 7px !important;
  }

  .vh-dot {
    margin-top: 4px !important;
  }

  .info-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .btn-gold-prenota {
    width: 100%;
    max-width: 240px;
    padding: 8px 16px;
    font-size: 0.80rem;
    margin: 0 auto;
    text-align: center;
  }
}

/* ===== WHY US COMPARISON CSS ===== */

.why-us-section {
  background: #090a0d;
  padding: 100px 5%;
  position: relative;
}

.why-us-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.why-us-kicker {
  color: #C6A35A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-us-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.why-us-title .highlight {
  background: linear-gradient(135deg, #C6A35A, #E5C378);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us-subtitle {
  font-size: 1.05rem;
  color: #a5a5a8;
  line-height: 1.7;
  font-weight: 300;
}

.why-us-main-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  grid-gap: 26px;
  gap: 26px;
  align-items: stretch;
  max-width: 1420px;
  margin: 0 auto;
}

.why-us-lateral-col {
  width: 100%;
  max-width: 460px;
  height: 100%;
  display: flex;
}

.why-us-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(198, 163, 90, 0.32);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
}

.why-us-lateral-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.why-us-image-wrapper:hover .why-us-lateral-img {
  transform: scale(1.03);
}

.why-us-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px 12px;
  background: linear-gradient(to top, rgba(9, 10, 13, 0.95) 0%, rgba(9, 10, 13, 0.65) 65%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.why-us-image-caption .badge-luxury {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #C6A35A;
  margin-bottom: 3px;
}

.why-us-image-caption h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.2px;
}

.comparison-table-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}

.comparison-table {
  background: #12141a;
  border: 1px solid rgba(198, 163, 90, 0.22);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.table-header-row {
  display: grid;
  grid-template-columns: 175px 1fr;
  background: rgba(20, 22, 30, 0.96);
  border-bottom: 1.5px solid rgba(198, 163, 90, 0.3);
  padding: 10px 22px;
  align-items: center;
}

.table-header-row .col-feature {
  font-size: 0.74rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.table-header-row .col-ncc {
  display: flex;
  align-items: center;
}

.table-header-row .col-ncc .name {
  font-size: 0.94rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
}

.table-header-row .col-taxi {
  font-size: 0.88rem;
  font-weight: 600;
  color: #888;
}

.table-row {
  display: grid;
  grid-template-columns: 175px 1fr;
  padding: 8.5px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  flex-grow: 1;
  transition: background 0.2s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.col-feature {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e5e5ea;
  line-height: 1.35;
  padding-right: 12px;
}

.col-ncc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 16px;
}

.check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(198, 163, 90, 0.15);
  border: 1px solid #C6A35A;
  color: #C6A35A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 10px;
  height: 10px;
}

.col-ncc p {
  font-size: 0.79rem;
  color: #f1f1f5;
  line-height: 1.38;
  margin: 0;
  font-weight: 400;
}

.col-taxi {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cross-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #555;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cross-icon svg {
  width: 10px;
  height: 10px;
}

.col-taxi p {
  font-size: 0.77rem;
  color: #929299;
  line-height: 1.38;
  margin: 0;
  font-weight: 300;
}

.mobile-col-tag {
  display: none;
}

.why-us-mobile-card {
  display: none;
}

/* Responsive */
@media (max-width: 1260px) {
  .why-us-main-layout {
    grid-template-columns: 440px 1fr;
    gap: 28px;
  }

  .why-us-lateral-col {
    max-width: 440px;
  }
}

@media (max-width: 1080px) {
  .why-us-main-layout {
    grid-template-columns: 360px 1fr;
    gap: 22px;
  }

  .why-us-lateral-col {
    max-width: 360px;
  }
}

@media (max-width: 968px) {
  .why-us-main-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: initial;
  }

  .why-us-lateral-col {
    height: auto;
    max-width: 540px;
    margin: 0 auto;
  }

  .why-us-image-wrapper {
    height: auto;
    min-height: 0;
    min-height: initial;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 60px 4%;
  }

  .why-us-title {
    font-size: 2rem;
  }

  .why-us-lateral-col {
    max-width: 100%;
  }
}

/* Tabella visibile tutta completa fino a 755px e oltre */
@media (max-width: 900px) {
  .comparison-table {
    min-width: 0;
    width: 100%;
  }

  .table-header-row,
  .table-row {
    grid-template-columns: 110px 1fr;
    padding: 7px 10px;
  }

  .table-header-row .col-feature {
    font-size: 0.68rem;
    letter-spacing: 0.6px;
  }

  .table-header-row .col-ncc .name {
    font-size: 0.84rem;
  }

  .table-header-row .col-taxi {
    font-size: 0.78rem;
  }

  .col-feature {
    font-size: 0.73rem;
    padding-right: 6px;
  }

  .col-ncc {
    gap: 6px;
    padding-right: 8px;
  }

  .col-taxi {
    gap: 6px;
  }

  .col-ncc p {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .col-taxi p {
    font-size: 0.70rem;
    line-height: 1.28;
  }

  .check-icon,
  .cross-icon {
    width: 14px;
    height: 14px;
  }

  .check-icon svg,
  .cross-icon svg {
    width: 8px;
    height: 8px;
  }
}

/* 1) Versione Mobile (<= 680px): Caratteristiche Principali NCC con pallini dorati (Foto 1) */
@media (max-width: 680px) {
  .why-us-section {
    padding: 50px 3%;
  }

  .comparison-table-wrapper {
    display: none !important;
  }

  .why-us-mobile-card {
    display: block !important;
    background: #0f1115;
    border: 1px solid rgba(198, 163, 90, 0.35);
    border-radius: 14px;
    padding: 20px 15px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-ncc-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-align: left;
    letter-spacing: 0.3px;
    border-bottom: 1.5px solid rgba(198, 163, 90, 0.25);
    padding-bottom: 12px;
  }

  .mobile-ncc-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-ncc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .mobile-ncc-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #C6A35A;
    color: #C6A35A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(198, 163, 90, 0.12);
  }

  .mobile-ncc-bullet svg {
    width: 10px;
    height: 10px;
  }

  .mobile-ncc-text {
    font-size: 0.81rem;
    color: #f1f1f5;
    line-height: 1.45;
    margin: 0;
    text-align: left;
  }
}

/* ===== SEZIONE TRATTE PIÙ SCELTE, ESCURSIONI E TOUR ===== */

.top-transfers-section {
  /* Tonalità nero grafite/antracite (#16171a): neutra, differenziata e prestigiosa */
  background: linear-gradient(180deg, #151619 0%, #18191d 50%, #131417 100%);
  padding: 95px 5% 105px;
  position: relative;
  border-top: 1px solid rgba(198, 163, 90, 0.25);
  border-bottom: 1px solid rgba(198, 163, 90, 0.18);
  overflow: hidden;
}

/* Linea dorata superiore con sfumatura elegante */
.top-transfers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C6A35A 50%, transparent 100%);
  z-index: 1;
}

.top-transfers-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header principale della sezione */
.top-transfers-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.top-transfers-kicker {
  color: #C6A35A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.top-transfers-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.top-transfers-title .highlight {
  background: linear-gradient(135deg, #C6A35A, #E5C378);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-transfers-subtitle {
  font-size: 1.02rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Sottosezioni (Città, Escursioni, Tour) */
.top-transfers-block {
  margin-bottom: 50px;
}

.top-transfers-block:last-child {
  margin-bottom: 0;
}

.subsection-header {
  margin-bottom: 24px;
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.subsection-kicker {
  color: #C6A35A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Wrapper del carosello */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

/* Traccia di scorrimento orizzontale */
.top-transfers-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto; /* Fluido e privo di scatti grazie all'animazione RAF */
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 18px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
  will-change: scroll-position;
  contain: layout;
}

.top-transfers-scroll-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Singola Card */
.top-transfer-card {
  flex: 0 0 280px;
  max-width: 280px;
  background: #0d0e12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  cursor: pointer;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}

.top-transfer-card:hover {
  transform: translateY(-6px) translateZ(0);
  background: #121318;
  border-color: #C6A35A;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 20px rgba(198, 163, 90, 0.22);
}

/* Box Immagine sopra il testo */
.card-image-box {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #18191f;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.4s ease;
  will-change: transform;
}

.top-transfer-card:hover .card-photo {
  transform: scale(1.08) translateZ(0);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 14, 18, 0.75) 0%, transparent 60%);
  pointer-events: none;
}


/* Corpo della card */
.card-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.transfer-card-city {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.top-transfer-card:hover .transfer-card-city {
  color: #e5c378;
}

.transfer-card-desc {
  font-size: 0.82rem;
  color: #9e9ea7;
  line-height: 1.5;
  margin: 0 0 16px 0;
  font-weight: 400;
  flex-grow: 1;
}

/* Azione al click */
.card-click-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #C6A35A;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  transition: all 0.25s ease;
}

.action-arrow {
  font-size: 0.88rem;
  transition: transform 0.25s ease;
}

.top-transfer-card:hover .action-arrow {
  transform: translateY(-2px);
}

/* Frecce di navigazione centrate sotto le card */
.top-transfers-nav-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 14px auto 0;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14151a;
  border: 1.5px solid rgba(198, 163, 90, 0.38);
  color: #C6A35A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-arrow-btn:hover {
  background: #C6A35A;
  color: #0b0c0f;
  border-color: #C6A35A;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(198, 163, 90, 0.45);
}

.carousel-arrow-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 850px) {
  /* 2) Fino alla versione di larghezza 850 togli le frecce */
  .top-transfers-nav-arrows {
    display: none !important;
  }

  .action-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .top-transfers-section {
    padding: 70px 5% 80px;
  }

  .top-transfers-title {
    font-size: 1.9rem;
  }

  .top-transfers-subtitle {
    font-size: 0.94rem;
  }

  .top-transfers-header {
    margin-bottom: 35px;
  }

  .subsection-title {
    font-size: 1.28rem;
  }

  .top-transfer-card {
    flex: 0 0 250px;
    max-width: 250px;
  }

  .card-image-box {
    height: 150px;
  }
}

