.transfer-form {
  width: 100%;
  max-width: 520px;
  background: rgba(14, 14, 16, 0.88);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(198, 163, 90, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 28px 26px 24px;
  color: #f7f5f0;
}

.transfer-form-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: none;
  margin-bottom: 18px;
  color: #f7f5f0;
  border-bottom: 1px solid rgba(198, 163, 90, 0.35);
  padding-bottom: 12px;
}

.tf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 12px;
}

.tf-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.transfer-form label,
.tf-full {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #c8c4bc;
  margin-bottom: 0;
  min-width: 0;
}

.tf-label-title {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.tf-row-3 .tf-label-title {
  font-size: 0.70rem;
  letter-spacing: 0.3px;
  text-align: center;
}

.tf-full {
  margin-bottom: 12px;
}

.transfer-form input,
.transfer-form textarea {
  width: 100%;
  margin-top: auto;
  border: none;
  background: #f7f5f0;
  color: #141416;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0;
  box-sizing: border-box;
}

.transfer-form input:focus,
.transfer-form textarea:focus {
  outline: 1px solid #c6a35a;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.tf-privacy {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.82rem;
  color: #d8d4cc;
  margin: 6px 0 14px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  width: -webkit-fit-content;
  width: fit-content;
}

.transfer-form .tf-privacy input,
.tf-privacy input[type="checkbox"] {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  accent-color: #c6a35a;
  cursor: pointer;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.tf-privacy span {
  display: inline-block;
  font-size: 0.82rem;
  color: #d8d4cc;
  white-space: nowrap;
  line-height: 1;
}

.tf-privacy a {
  color: #c6a35a;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.tf-privacy a:hover {
  color: #e5c378;
}

.tf-error {
  color: #e8c27a;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.tf-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #c6a35a, #a67c3c);
  color: #0b0b0c;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tf-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(198, 163, 90, 0.35);
}

.tf-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.transfer-form-success {
  padding: 24px 0 8px;
  color: #f7f5f0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .transfer-form {
    max-width: 100%;
    padding: 16px 14px 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    border-radius: 8px;
  }

  .transfer-form-title {
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    text-align: center;
  }

  .tf-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .tf-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }

  .transfer-form label,
  .tf-full {
    gap: 3px;
    font-size: 0.65rem;
    letter-spacing: 0.4px;
  }

  .tf-full {
    margin-bottom: 8px;
  }

  .transfer-form input,
  .transfer-form textarea {
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .transfer-form textarea {
    height: 44px;
    min-height: 44px;
  }

  .tf-privacy {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 4px 0 10px !important;
    width: -webkit-fit-content !important;
    width: fit-content !important;
  }

  .transfer-form .tf-privacy input,
  .tf-privacy input[type="checkbox"] {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .tf-privacy span {
    font-size: 0.74rem !important;
    white-space: nowrap !important;
  }

  .tf-submit {
    padding: 11px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 480px) {
  .transfer-form {
    padding: 13px 10px 12px;
  }

  .transfer-form-title {
    font-size: 0.98rem;
    margin-bottom: 8px;
    padding-bottom: 5px;
  }

  .tf-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
  }

  .tf-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }

  .transfer-form input,
  .transfer-form textarea {
    padding: 6px 7px;
    font-size: 0.78rem;
  }

  .transfer-form textarea {
    height: 44px;
    min-height: 44px;
  }

  .tf-submit {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .tf-privacy {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 3px 0 8px !important;
    width: -webkit-fit-content !important;
    width: fit-content !important;
  }

  .transfer-form .tf-privacy input,
  .tf-privacy input[type="checkbox"] {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .tf-privacy span {
    font-size: 0.70rem !important;
    white-space: nowrap !important;
  }
}

/* Evidenziazione dorata quando si seleziona una tratta dai viaggi più scelti */
.highlight-prefilled {
  border-color: #c6a35a !important;
  box-shadow: 0 0 14px rgba(198, 163, 90, 0.6) !important;
  animation: pulseGold 1s ease-in-out;
}

@keyframes pulseGold {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ===== STILI PAGINE ===== */
/* Stili condivisi per tutte le pagine del sito (ChiSiamo, Team, Corsi, Blog, Informazioni) */

/* ===== LAYOUT BASE ===== */
/* Container principale di tutte le pagine */
.page-container {
  min-height: 100vh;
  padding-top: 80px;
  background: #0b0b0c;
  color: #f7f5f0;
}

.luxury-page {
  padding: 140px 5% 90px;
}

.luxury-kicker {
  color: #c6a35a;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.luxury-lead {
  max-width: 720px;
  color: #c8c4bc;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0 0 40px;
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.luxury-card {
  background: #141416;
  border: 1px solid rgba(198, 163, 90, 0.22);
  padding: 28px 24px;
}

.luxury-card h2 {
  font-size: 1.2rem;
  color: #f7f5f0;
  margin-bottom: 10px;
}

.luxury-card p,
.luxury-card a {
  color: #c8c4bc;
  line-height: 1.6;
  text-decoration: none;
}

.luxury-card a:hover {
  color: #c6a35a;
}

.tariffe-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tariffe-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr auto;
  grid-gap: 16px;
  gap: 16px;
  align-items: center;
  background: #141416;
  border: 1px solid rgba(198, 163, 90, 0.22);
  padding: 20px 22px;
}

.tariffe-row h2 {
  font-size: 1.05rem;
  margin: 0;
}

.tariffe-row p {
  margin: 0;
  color: #c8c4bc;
}

.tariffe-row span {
  color: #c6a35a;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.luxury-cta {
  display: inline-block;
  background: linear-gradient(135deg, #c6a35a, #a67c3c);
  color: #0b0b0c;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
}

@media (max-width: 768px) {
  .tariffe-row {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO SECTION ===== */
/* Sezione hero in cima ad ogni pagina con gradiente scuro */
.page-hero {
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Overlay con blur e gradiente */
.page-hero::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 0;
  /* Forza visibilità immediata del background */
  opacity: 1 !important;
  animation: none !important;
}

/* Overlay scuro per leggibilità */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(198, 163, 90, 0.05) 0%, transparent 50%),
    rgba(0, 0, 0, 0.65);
  z-index: 1;
  /* Forza visibilità immediata dell'overlay */
  opacity: 1 !important;
  animation: none !important;
}

/* Contenuto centrato dell'hero */
.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Titolo principale con gradiente oro */
.page-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #C6A35A, #C6A35A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sottotitolo dell'hero */
.page-subtitle {
  font-size: 1.5rem;
  color: #ccc;
  font-weight: 300;
  letter-spacing: 2px;
}

/* ===== CONTENUTO PRINCIPALE ===== */
/* Area contenuto sotto l'hero */
.page-content {
  padding: 100px 5%;
  background: #0a0a0a;
}

/* ===== CONTAINERS IMMAGINI ===== */
/* Container per immagine principale Chi Siamo */
.chi-siamo-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  overflow: hidden;
  border: 2px solid rgba(198, 163, 90, 0.3);
  border-radius: 8px;
}

/* Immagine principale responsive con hover */
.chi-siamo-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.chi-siamo-main-image:hover {
  transform: scale(1.02);
}

/* Container immagine tabella orari */
.schedule-image-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid rgba(198, 163, 90, 0.3);
  border-radius: 8px;
}

/* Immagine orari responsive */
.schedule-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Container immagine regolamento */
.rules-image-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border: 2px solid rgba(198, 163, 90, 0.3);
  border-radius: 8px;
}

/* Immagine regolamento responsive */
.rules-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Media query per mobile - mantieni dimensione più grande */
@media (max-width: 768px) {
  .rules-image-container {
    max-width: 100%;
  }
}

/* ===== STILI TESTO ===== */
/* Testo informativo pagamenti */
.payment-info {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

/* Dettaglio rate */
.rate-detail {
  color: #C6A35A;
  font-size: 0.95rem;
  text-align: center;
  margin-top: -10px;
  font-weight: 600;
}

/* Sezione informazioni centrata */
.info-section-centered {
  text-align: center;
}

.info-section-centered h2 {
  text-align: center;
  margin-bottom: 40px;
}

.info-section-centered .rules-list {
  max-width: 1000px;
  margin: 0 auto;
}

.info-section-centered .rules-list h3 {
  text-align: center;
}

.info-section-centered .pricing-cards {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section-centered .schedule-image-container {
  margin: 0 auto;
}

/* Media query specifica per TABLET - iPad incluso (768px - 1080px) - SEZIONE ABBONAMENTI */
@media (min-width: 768px) and (max-width: 1080px) {
  /* Riduce dimensioni hero abbonamenti */
  .page-hero {
    min-height: 300px;
    height: 40vh;
  }
  
  .page-title {
    font-size: 2.8rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  /* Riduce padding contenuto abbonamenti */
  .page-content {
    padding: 60px 4%;
  }
  
  /* Riduce dimensioni sezione info abbonamenti */
  .info-section h2 {
    font-size: 2rem;
  }
  
  .info-section .section-description {
    font-size: 0.95rem;
  }
  
  /* CORREGGE layout pricing-cards per evitare overflow su tablet */
  .pricing-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .price-card {
    padding: 30px 25px;
    margin: 0;
  }
  
  .price-card h3 {
    font-size: 1.6rem;
  }
  
  .price-card .price {
    font-size: 2.5rem;
  }
  
  .price-card .price span {
    font-size: 1.1rem;
  }
  
  .price-card .payment-info {
    font-size: 0.9rem;
  }
  
  .price-card .rate-detail {
    font-size: 0.85rem;
  }
  
  /* Riduce dimensioni info abbonamenti */
  .pricing-info {
    margin-top: 40px;
    padding: 0 20px;
  }
  
  .pricing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .info-list {
    font-size: 0.9rem;
  }
  
  .info-list li {
    padding: 12px 15px;
    margin-bottom: 12px;
  }
  
  .info-list strong {
    font-size: 0.95rem;
  }
}

/* Media query specifico per TABLET in LANDSCAPE (orizzontale) - OTTIMIZZATO */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  /* RIDUCE hero in landscape per ottimizzare spazio verticale */
  .page-hero {
    min-height: 250px !important;
    height: 35vh !important;
  }
  
  .page-title {
    font-size: 2.4rem !important;
    margin-bottom: 15px !important;
  }
  
  .page-subtitle {
    font-size: 1rem !important;
  }
  
  /* RIDUCE padding contenuto per evitare overflow in landscape */
  .page-content {
    padding: 40px 3% !important;
  }
  
  /* OTTIMIZZA sezione info abbonamenti in landscape */
  .info-section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
  }
  
  .info-section .section-description {
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
  }
  
  /* RIDUCE ulteriormente pricing-cards in landscape */
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    padding: 0 15px !important;
    max-width: 100% !important;
  }
  
  .price-card {
    padding: 20px 15px !important;
  }
  
  .price-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }
  
  .price-card .price {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }
  
  .price-card .price span {
    font-size: 0.9rem !important;
  }
  
  .price-card .payment-info {
    font-size: 0.8rem !important;
    margin-top: 8px !important;
  }
  
  .price-card .rate-detail {
    font-size: 0.75rem !important;
  }
  
  /* RIDUCE pricing-info in landscape */
  .pricing-info {
    margin-top: 30px !important;
    padding: 0 15px !important;
  }
  
  .pricing-info h3 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
  }
  
  .info-list {
    font-size: 0.85rem !important;
  }
  
  .info-list li {
    padding: 10px 12px !important;
    margin-bottom: 8px !important;
  }
  
  .info-list strong {
    font-size: 0.85rem !important;
  }
}

/* Testo introduttivo centrato */
.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #C6A35A;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

/* ===== SEZIONE STORIA (CHI SIAMO) ===== */
/* Griglia storia con testo a sinistra e foto fondatore a destra */
.storia-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.storia-content h2 {
  font-size: 2.5rem;
  color: #C6A35A;
  margin-bottom: 25px;
}

.storia-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

/* Container immagine fondatore */
.storia-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(198, 163, 90, 0.3);
  transition: transform 0.4s ease;
}

.founder-image:hover {
  transform: scale(1.05);
}

/* ===== SEZIONE MISSIONE (CHI SIAMO) ===== */
/* Griglia missione con immagine a sinistra e testo a destra */
.missione-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* Container immagine palestra */
.missione-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chi-siamo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(198, 163, 90, 0.3);
  transition: transform 0.4s ease;
}

.chi-siamo-image:hover {
  transform: scale(1.05);
}

.missione-content h2 {
  font-size: 2.5rem;
  color: #C6A35A;
  margin-bottom: 25px;
}

.missione-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

/* ===== LISTA CARATTERISTICHE ===== */
/* Lista stilizzata delle caratteristiche della palestra */
.caratteristiche-list {
  list-style: none;
  padding: 0;
}

.caratteristiche-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(198, 163, 90, 0.05);
  border-left: 4px solid #C6A35A;
  color: #ccc;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.caratteristiche-list li:hover {
  background: rgba(198, 163, 90, 0.1);
  transform: translateX(10px);
}

/* ===== GRIGLIA CONTENUTO ===== */
/* Layout a due colonne per contenuto principale e sidebar */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 60px;
  gap: 60px;
}

.content-main h2 {
  font-size: 2rem;
  margin: 40px 0 20px 0;
  color: #C6A35A;
}

.content-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
}

/* Griglia valori aziendali */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  gap: 30px;
  margin: 40px 0;
}

.value-card {
  padding: 30px;
  background: rgba(198, 163, 90, 0.05);
  border: 1px solid rgba(198, 163, 90, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(198, 163, 90, 0.1);
}

.value-card h3 {
  color: #C6A35A;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: #999;
  font-size: 1rem;
  margin: 0;
}

/* ===== SIDEBAR ===== */
/* Sidebar sticky con info rapide e certificazioni */
.content-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: -webkit-fit-content;
  height: fit-content;
}

.sidebar-card {
  background: rgba(198, 163, 90, 0.05);
  border: 1px solid rgba(198, 163, 90, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
}

.sidebar-card h3 {
  color: #C6A35A;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card li {
  padding: 10px 0;
  color: #ccc;
  border-bottom: 1px solid rgba(198, 163, 90, 0.1);
}

.sidebar-card li:last-child {
  border-bottom: none;
}

/* ===== GRIGLIA TEAM ===== */
/* Griglia responsive per card membri del team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 40px;
  gap: 40px;
  margin-bottom: 80px;
}

/* Card singolo membro del team */
.team-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid rgba(198, 163, 90, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: #C6A35A;
  box-shadow: 0 10px 40px rgba(198, 163, 90, 0.3);
}

.team-photo {
  height: 450px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-member-photo {
  transform: scale(1.05);
}

/* Placeholder circolare per foto membro (fallback) */
.photo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(198, 163, 90, 0.1);
  border: 3px solid #C6A35A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-initial {
  font-size: 4rem;
  font-weight: 800;
  color: #C6A35A;
}

/* Sezione informazioni membro */
.team-info {
  padding: 30px;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.team-role {
  color: #C6A35A;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team-details {
  margin: 20px 0;
}

.team-details p {
  font-size: 0.95rem;
  color: #999;
  margin: 10px 0;
}

/* Pulsante per contattare il trainer */
.contact-trainer {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #C6A35A;
  border: 2px solid #C6A35A;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  border-radius: 8px;
}

.contact-trainer:hover {
  background: #C6A35A;
  color: #000;
}

/* ===== SEZIONI CATEGORIE CORSI ===== */
/* Sezione per ogni categoria di corso (Fitness, Ginnastica, ecc.) */
.category-section {
  margin-bottom: 80px;
}

.category-title {
  font-size: 2.5rem;
  color: #C6A35A;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C6A35A, transparent);
}

/* ===== GRIGLIA CORSI ===== */
/* Griglia responsive per card corsi */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 40px;
  gap: 40px;
  margin-bottom: 40px;
}

/* Card singolo corso */
.course-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid rgba(198, 163, 90, 0.2);
  border-radius: 12px;
  padding: 35px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.course-card:hover,
.course-card:active {
  transform: translateY(-5px);
  border-color: #C6A35A;
  box-shadow: 0 10px 30px rgba(198, 163, 90, 0.3);
  background: linear-gradient(135deg, rgba(198, 163, 90, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.course-header h3 {
  font-size: 1.8rem;
  color: #C6A35A;
}

.course-level {
  font-size: 0.8rem;
  color: #fff;
  background: rgba(198, 163, 90, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
}

/* Descrizione del corso */
.course-description {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Dettagli del corso (durata, livello, ecc.) */
.course-details {
  margin: 20px 0;
}

.detail-item {
  color: #999;
  margin: 10px 0;
  font-size: 0.95rem;
}

.detail-item strong {
  color: #C6A35A;
}

/* Benefici del corso */
.course-benefits {
  margin: 25px 0;
}

.course-benefits strong {
  color: #C6A35A;
  font-size: 0.95rem;
}

.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.benefit-tag {
  background: rgba(198, 163, 90, 0.1);
  color: #C6A35A;
  padding: 8px 15px;
  font-size: 0.85rem;
  border: 1px solid rgba(198, 163, 90, 0.3);
}

/* Pulsante azione corso */
.course-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #C6A35A, #C6A35A);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.course-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(198, 163, 90, 0.4);
}

/* ===== PAGINA INFORMAZIONI ===== */
/* Griglia sezioni informative */
.info-grid {
  display: grid;
  grid-gap: 60px;
  gap: 60px;
  width: 100%;
  max-width: 100%;
}

.info-section {
  background: rgba(198, 163, 90, 0.02);
  border: 1px solid rgba(198, 163, 90, 0.2);
  padding: 50px;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.info-section-centered {
  text-align: center;
}

.info-section h2 {
  font-size: 2.5rem;
  color: #C6A35A;
  margin-bottom: 40px;
}

/* Tabella orari di apertura */
.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(198, 163, 90, 0.05);
  border: 1px solid rgba(198, 163, 90, 0.1);
}

.schedule-row.highlight {
  background: rgba(198, 163, 90, 0.1);
  border-color: rgba(198, 163, 90, 0.3);
}

.day {
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
}

.time {
  color: #C6A35A;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== CARD PREZZI ===== */
/* Griglia card abbonamenti */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

/* Card singolo abbonamento */
.price-card {
  background: rgba(198, 163, 90, 0.05);
  border: 1px solid rgba(198, 163, 90, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  min-width: 0;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-card h3 {
  font-size: 1.8rem;
  color: #C6A35A;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}

.price span {
  font-size: 1.2rem;
  color: #999;
}

.payment-info {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 15px;
}

.price-card ul {
  list-style: none;
  padding: 0;
}

.price-card li {
  padding: 12px 0;
  color: #ccc;
  border-bottom: 1px solid rgba(198, 163, 90, 0.1);
}

/* Mobile responsive per card prezzi */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .price-card {
    padding: 30px 20px;
  }
  
  .price-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .price-card {
    padding: 35px 25px;
  }
  
  .price-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .pricing-cards {
    gap: 15px;
  }
  
  .price-card {
    padding: 30px 20px;
  }
  
  .price-card h3 {
    font-size: 1.4rem;
  }
  
  .payment-info {
    font-size: 0.9rem;
  }
}

/* Informazioni sulla location */
.location-info h3 {
  color: #C6A35A;
  margin: 30px 0 15px 0;
  font-size: 1.3rem;
}

.location-info p {
  color: #ccc;
  line-height: 1.8;
}

/* ===== LISTA REGOLE ===== */
/* Sezione regolamento palestra */
.rules-list h3 {
  color: #C6A35A;
  margin: 30px 0 20px 0;
}

.rules-list ul {
  list-style: none;
  padding: 0;
}

.rules-list li {
  padding: 12px 0 12px 30px;
  color: #ccc;
  position: relative;
  line-height: 1.6;
}

.rules-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C6A35A;
  font-size: 1.2rem;
}

/* Lista FAQ (Domande Frequenti) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  padding: 25px;
  background: rgba(198, 163, 90, 0.05);
  border-left: 3px solid #C6A35A;
}

.faq-item h4 {
  color: #C6A35A;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #ccc;
  line-height: 1.7;
}

/* ===== DETTAGLI CONTATTO ===== */
/* Informazioni di contatto */
.contact-details p {
  color: #ccc;
  margin: 15px 0;
  font-size: 1.1rem;
}

/* Container per la mappa Google Maps embedded */
.map-container {
  margin-top: 40px;
  width: 100%;
}

.map-container h3 {
  color: #C6A35A;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 2px solid rgba(198, 163, 90, 0.3);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(198, 163, 90, 0.2);
}

/* Link social media nella pagina info */
.social-links-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links-info a {
  color: #C6A35A;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links-info a:hover {
  color: #C6A35A;
}

/* ===== SEZIONI CTA ===== */
/* Call to action per prenotazione e orari */
.cta-section,
.schedule-info {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(198, 163, 90, 0.05), transparent);
  border: 2px solid rgba(198, 163, 90, 0.2);
  margin-top: 80px;
  border-radius: 12px;
}

.cta-section h2,
.schedule-info h2 {
  font-size: 2.5rem;
  color: #C6A35A;
  margin-bottom: 20px;
}

.cta-section p,
.schedule-info p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Pulsante CTA grande */
.cta-button-large {
  background: linear-gradient(135deg, #C6A35A, #C6A35A);
  color: #000;
  border: none;
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 8px;
}

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

/* ===== MEDIA QUERIES RESPONSIVE ===== */
/* Stili per tablet (1024px e inferiori) */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .price-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

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

/* Stili per mobile (768px e inferiori) */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .page-content {
    padding: 60px 5%;
  }

  .storia-section,
  .missione-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .storia-content h2,
  .missione-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .storia-content p,
  .missione-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .founder-image,
  .chi-siamo-image {
    width: 100%;
    max-width: none;
  }

  .content-main h2 {
    font-size: 1.6rem;
  }

  .content-main p {
    font-size: 0.9rem;
  }

  .caratteristiche-list li {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .sidebar-card h3 {
    font-size: 1rem;
  }

  .sidebar-card li {
    font-size: 0.85rem;
  }

  /* Team cards responsive */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-photo {
    height: 350px;
  }

  .team-info {
    padding: 25px 20px;
  }

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

  .info-section {
    padding: 30px 20px;
  }
}

/* ===== MODAL IMMAGINI ===== */
/* Immagini cliccabili per ingrandimento */
.clickable-image {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.clickable-image:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Link per download immagine */
.download-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #C6A35A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: #C6A35A;
  text-decoration: underline;
}

/* Overlay scuro del modal */
.image-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.95);
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
}

/* Contenitore immagine nel modal */
.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: zoomIn 0.3s ease;
  padding: 20px;
  z-index: 100000;
  margin: auto;
}

/* Immagine ingrandita nel modal */
.modal-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(198, 163, 90, 0.3);
  border: 2px solid rgba(198, 163, 90, 0.5);
}

/* Bottone chiusura modal */
.modal-close-btn {
  position: absolute;
  top: -35px;
  right: 0;
  background: rgba(198, 163, 90, 0.9);
  color: #000;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 100001;
}

.modal-close-btn:hover {
  background: #FFF;
  transform: rotate(90deg);
}

/* Bottone download nel modal */
.modal-download-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #C6A35A, #C6A35A);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(198, 163, 90, 0.5);
}

/* ===== ANIMAZIONI MODAL ===== */
/* Animazione dissolvenza */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animazione zoom con dissolvenza */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stili modal per mobile */
@media (max-width: 768px) {
  .image-modal-overlay {
    padding: 0 !important;
    overflow: auto !important;
    position: fixed !important;
    touch-action: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  .image-modal-content {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    margin: auto;
    position: relative;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    position: absolute;
    z-index: 100002;
  }

  .modal-image {
    max-height: calc(90vh - 140px);
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .modal-download-btn {
    padding: 14px 28px;
    font-size: 1rem;
    position: relative;
    bottom: 0;
  }
}

/* ===== STILI PAGINA ABBONAMENTI ===== */
/* Descrizione sezione abbonamenti */
.section-description {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Header card abbonamento */
.price-card .card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Badge sulla card */
.card-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(198, 163, 90, 0.2);
  color: #C6A35A;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-badge.popular {
  background: #C6A35A;
  color: #000;
}

/* Lista caratteristiche abbonamento */
.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  color: #ccc;
  font-size: 1rem;
  border-bottom: 1px solid rgba(198, 163, 90, 0.1);
}

/* Card featured rimosso - non più utilizzato */

/* Sezione informazioni prezzi */
.pricing-info {
  max-width: 1000px;
  margin: 80px auto 60px;
  padding: 40px;
  background: rgba(198, 163, 90, 0.03);
  border: 1px solid rgba(198, 163, 90, 0.2);
  border-radius: 12px;
}

.pricing-info h3 {
  color: #C6A35A;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 20px 0;
  color: #ccc;
  line-height: 1.8;
  border-bottom: 1px solid rgba(198, 163, 90, 0.1);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: #C6A35A;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Sezione CTA */
.cta-section {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(198, 163, 90, 0.05), transparent);
  border: 2px solid rgba(198, 163, 90, 0.3);
  border-radius: 16px;
}

.cta-section h3 {
  color: #C6A35A;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: linear-gradient(135deg, #C6A35A, #C6A35A);
  color: #000;
  border: none;
}

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

.cta-button.secondary {
  background: transparent;
  color: #C6A35A;
  border: 2px solid #C6A35A;
}

.cta-button.secondary:hover {
  background: #C6A35A;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive per pagina abbonamenti */
@media (max-width: 768px) {
  .page-content {
    padding: 50px 3%;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }
  
  .info-grid {
    gap: 40px;
  }
  
  .info-section {
    padding: 30px 20px;
    overflow-x: hidden;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .info-section-centered {
    text-align: center;
  }

  .pricing-info {
    margin: 60px 20px 40px;
    padding: 30px 20px;
  }

  .pricing-info h3 {
    font-size: 1.5rem;
  }

  .info-list li {
    padding: 15px 0;
    font-size: 0.95rem;
  }

  .cta-section {
    margin: 40px 20px 0;
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .cta-section h3 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
  
  .cta-button-large {
    font-size: 0.95rem;
    padding: 16px 35px;
  }
}

@media (max-width: 480px) {
  .page-content {
    padding: 40px 3%;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .info-grid {
    gap: 30px;
  }
  
  .info-section {
    padding: 25px 15px;
    border-radius: 8px;
  }
  
  .info-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 0.95rem;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 0.95rem;
    padding: 0 15px;
    margin-bottom: 35px;
  }
  
  .pricing-info {
    margin: 50px 15px 30px;
    padding: 25px 15px;
  }

  .pricing-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .info-list li {
    padding: 12px 0;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .info-list strong {
    font-size: 1rem;
  }

  .cta-section {
    margin: 35px 15px 0;
    padding: 35px 15px;
  }

  .cta-section h2 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 12px;
    word-wrap: break-word;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .cta-button-large {
    font-size: 0.85rem;
    padding: 14px 30px;
    width: 100%;
  }
}

.zoom-on-hover { transition: transform 0.35s ease; }
@media (hover: hover) { .zoom-on-hover:hover { transform: scale(1.05); } }
.zoom-on-hover-small { transition: transform 0.35s ease; }
@media (hover: hover) { .zoom-on-hover-small:hover { transform: scale(1.03); } }

/* ===== STILI PAGINA INFO & CONTATTI (LAYOUT MINIMAL A 2 COLONNE) ===== */

.contatti-page {
  padding: 130px 5% 90px;
  background: #0b0b0c;
  color: #f7f5f0;
  min-height: 100vh;
}

.contatti-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contatti-header {
  margin: 0 auto 52px;
  text-align: center;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contatti-kicker {
  display: inline-block;
  color: #C6A35A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(198, 163, 90, 0.4);
  padding-bottom: 4px;
  text-align: center;
}

.contatti-title {
  font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

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

.contatti-lead {
  font-size: 0.88rem;
  color: #a8a8b0;
  line-height: 1.65;
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* ===== LAYOUT A DUE COLONNE (INFO A SINISTRA, FAQ A DESTRA) ===== */
.contatti-two-columns {
  display: grid;
  grid-template-columns: 390px 1fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: start;
}

/* COLONNA SINISTRA: INFO MINIMAL CON ICONE */
.contatti-info-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.info-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(198, 163, 90, 0.1);
  border: 1px solid rgba(198, 163, 90, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A35A;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon-wrapper.wa-icon {
  background: rgba(198, 163, 90, 0.1);
  border: 1px solid rgba(198, 163, 90, 0.28);
  color: #C6A35A;
}

.info-icon-wrapper svg {
  width: 17px;
  height: 17px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #C6A35A;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 3px;
}

.info-subnote {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 5px;
}

/* Numeri WhatsApp cliccabili */
.info-wa-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f7f5f0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.info-wa-link svg {
  color: #C6A35A;
  flex-shrink: 0;
}

.info-wa-link:hover {
  color: #C6A35A;
  transform: translateX(3px);
}

.wa-badge-tag {
  font-size: 0.60rem;
  color: #C6A35A;
  background: rgba(198, 163, 90, 0.12);
  border: 1px solid rgba(198, 163, 90, 0.28);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.info-wa-link:hover .wa-badge-tag {
  background: #C6A35A;
  color: #0b0b0c;
}

.info-email-link {
  color: #f7f5f0;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease;
  word-break: break-all;
}

.info-email-link:hover {
  color: #C6A35A;
}

.info-address-text {
  color: #f7f5f0;
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
}

.info-piva-text {
  color: #E5C378;
  font-weight: 700;
  font-size: 0.80rem;
  margin-top: 3px;
}

/* Icone Social Minimal a sinistra */
.info-social-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
}

.info-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(198, 163, 90, 0.08);
  border: 1px solid rgba(198, 163, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A35A;
  text-decoration: none;
  transition: all 0.25s ease;
}

.info-social-btn svg {
  width: 14px;
  height: 14px;
}

.info-social-btn:hover {
  background: #C6A35A;
  color: #0b0b0c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 163, 90, 0.35);
}

/* ===== COLONNA DESTRA: FAQ ===== */
.contatti-faq-right {
  background: #111217;
  border: 1px solid rgba(198, 163, 90, 0.16);
  border-radius: 14px;
  padding: 32px 30px;
}

.faq-right-header {
  margin-bottom: 24px;
}

.faq-right-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #C6A35A;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

.faq-right-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
}

.faq-right-subtitle {
  font-size: 0.92rem;
  color: #a8a8ad;
  margin: 0;
}

.faq-minimal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-minimal-item {
  background: #161822;
  border: 1px solid rgba(198, 163, 90, 0.16);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-minimal-item:hover {
  border-color: rgba(198, 163, 90, 0.45);
  background: #191c29;
}

.faq-minimal-item.active {
  border-color: #C6A35A;
  background: #1a1e2d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.faq-minimal-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 14px;
}

.faq-minimal-question h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-minimal-item.active .faq-minimal-question h3 {
  color: #C6A35A;
}

.faq-minimal-icon {
  font-size: 1.3rem;
  font-weight: 600;
  color: #C6A35A;
  line-height: 1;
  flex-shrink: 0;
}

.faq-minimal-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-minimal-item.active .faq-minimal-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-minimal-answer p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contatti-two-columns {
    grid-template-columns: 340px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .contatti-page {
    padding-top: 110px;
  }

  .contatti-two-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contatti-info-left {
    padding-right: 0;
  }

  .contatti-title {
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
  }

  .contatti-faq-right {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .contatti-page {
    padding: 100px 4% 60px;
  }

  .contatti-header {
    margin-bottom: 36px;
  }

  .contatti-kicker {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .contatti-lead {
    font-size: 0.84rem;
    line-height: 1.6;
    padding: 0 4px;
  }

  .info-item {
    gap: 12px;
  }

  .info-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }

  .info-icon-wrapper svg {
    width: 15px;
    height: 15px;
  }

  .info-wa-link {
    font-size: 0.84rem;
    flex-wrap: wrap;
  }

  .faq-right-title {
    font-size: 1.45rem;
  }

  .faq-minimal-question {
    padding: 15px 16px;
  }

  .faq-minimal-question h3 {
    font-size: 0.92rem;
  }
}

/* ===== STILI PAGINE DESTINAZIONI DEDICATE (ROUTETEMPLATE) ===== */

.destination-page {
  min-height: 100vh;
  background: #0b0b0c;
  color: #f7f5f0;
  padding-top: 88px;
  overflow-x: hidden;
}

/* ===================================================
   1. HERO BANNER PANORAMICO DELLA CITTÀ
   =================================================== */

.dest-hero-banner {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0e0f14;
}

.dest-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.60) saturate(1.15);
  transform: scale(1.02);
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.45) 0%,
    rgba(11, 11, 12, 0.72) 55%,
    #0b0b0c 100%
  );
  pointer-events: none;
}

.dest-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 36px;
  text-align: center;
}

.dest-hero-title {
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.22;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.dest-hero-title .highlight {
  color: #E5C378;
  display: inline;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 24px rgba(229, 195, 120, 0.45);
}

.dest-hero-subtitle {
  font-size: clamp(0.98rem, 2vw, 1.18rem);
  color: #f8fafc;
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  font-weight: 400;
}

.dest-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-dest-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #C6A35A 0%, #e2be72 100%);
  color: #0b0b0c;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 14px rgba(198, 163, 90, 0.35);
  min-height: 42px;
  box-sizing: border-box;
}

.btn-dest-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4b267 0%, #f3d999 100%);
  box-shadow: 0 6px 18px rgba(198, 163, 90, 0.45);
  color: #000000;
}

.btn-dest-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1.2px solid rgba(37, 211, 102, 0.6);
  color: #25D366;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.22s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-height: 42px;
  box-sizing: border-box;
}

.btn-dest-whatsapp svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-dest-whatsapp:hover {
  background: #25D366;
  color: #0b0b0c;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-dest-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(20, 22, 30, 0.85);
  border: 1.2px solid rgba(198, 163, 90, 0.45);
  color: #E5C378;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.22s ease;
  min-height: 42px;
  box-sizing: border-box;
}

.btn-dest-call svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-dest-call:hover {
  background: rgba(198, 163, 90, 0.2);
  color: #ffffff;
  border-color: #E5C378;
  transform: translateY(-2px);
}

/* ===================================================
   2. SEZIONE DETTAGLI: FOTO CON DESCRIZIONE SOTTO (GRID CARD)
   =================================================== */

.dest-stops-section {
  padding: 65px 3% 85px;
  background: linear-gradient(180deg, #0b0b0c 0%, #121318 50%, #0b0b0c 100%);
  position: relative;
}

.dest-stops-container {
  max-width: 1440px;
  margin: 0 auto;
}

.dest-section-header {
  text-align: center;
  margin-bottom: 44px;
}

.dest-section-header .dest-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #E5C378;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dest-section-header .dest-section-title {
  margin: 0 0 14px 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.dest-stops-count-badge {
  display: inline-block;
  background: rgba(198, 163, 90, 0.12);
  border: 1px solid rgba(198, 163, 90, 0.4);
  color: #E5C378;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Griglia Tappe/Attrazioni: 4 foto su una riga con dimensioni generose; se 5+, le successive vanno sotto centrate */
.dest-stops-horizontal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.dest-stop-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 15px);
  width: calc(25% - 15px);
  max-width: calc(25% - 15px);
  background: #13151d;
  border: 1.2px solid rgba(198, 163, 90, 0.32);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.dest-stop-card:hover {
  transform: translateY(-4px);
  border-color: #E5C378;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 20px rgba(198, 163, 90, 0.18);
}

.dest-stop-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #14151a;
}

.dest-stop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.dest-stop-card:hover .dest-stop-img {
  transform: scale(1.05);
}

.dest-stop-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 22, 0.7) 0%, transparent 45%);
  pointer-events: none;
}

.dest-stop-num-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 12, 15, 0.88);
  border: 1.2px solid rgba(198, 163, 90, 0.55);
  color: #E5C378;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.dest-stop-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.dest-stop-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.dest-stop-card:hover .dest-stop-name {
  color: #E5C378;
}

.dest-stop-desc {
  font-size: 0.94rem;
  color: #f8fafc;
  line-height: 1.55;
  margin: 0;
  flex: 1 1;
  font-weight: 400;
}

/* Box vantaggi NCC compatto posizionato sotto la griglia delle card */
.dest-advantage-box {
  background: rgba(20, 22, 30, 0.85);
  border: 1.2px solid rgba(198, 163, 90, 0.35);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
  box-sizing: border-box;
}

.dest-adv-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C6A35A;
  color: #0b0b0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-adv-icon svg {
  width: 20px;
  height: 20px;
}

.dest-adv-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #E5C378;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.dest-adv-text p {
  font-size: 0.92rem;
  color: #f1f5f9;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ===================================================
   3. SEZIONE PRENOTAZIONE E ALTERNATIVE DIRETTE
   =================================================== */

.dest-booking-section {
  padding: 70px 4% 90px;
  background: #090a0d;
  border-top: 1px solid rgba(198, 163, 90, 0.15);
}

.dest-booking-container {
  max-width: 1240px;
  margin: 0 auto;
}

.dest-booking-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}

.dest-booking-header h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #E5C378;
  margin: 0 0 12px 0;
}

.dest-booking-header p {
  font-size: 0.98rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0;
}

.dest-booking-wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Contatti diretti (icona, numero e sotto Messaggio / Chiama) SOTTO il Form */
.dest-under-form-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  padding-top: 12px;
}

.dest-direct-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 6px 12px;
  transition: all 0.22s ease;
  cursor: pointer;
}

.dest-contact-header {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.dest-contact-header svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.dest-direct-contact:hover .dest-contact-header svg {
  transform: scale(1.15);
}

.dest-contact-num {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.dest-contact-sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.dest-direct-contact.whatsapp:hover .dest-contact-num,
.dest-direct-contact.whatsapp:hover .dest-contact-sub {
  color: #25D366;
}

.dest-direct-contact.phone:hover .dest-contact-num,
.dest-direct-contact.phone:hover .dest-contact-sub {
  color: #E5C378;
}

/* ===================================================
   RESPONSIVE: IPAD & TABLET (768px - 1024px)
   =================================================== */

@media (max-width: 1024px) {
  .destination-page {
    padding-top: 80px;
  }

  .dest-hero-banner {
    min-height: 290px;
  }

  .dest-hero-actions {
    gap: 10px;
  }

  .btn-dest-primary,
  .btn-dest-whatsapp,
  .btn-dest-call {
    padding: 9px 18px !important;
    font-size: 0.78rem !important;
  }

  .dest-stops-container {
    max-width: 860px;
    padding: 0 20px;
  }

  .dest-stops-horizontal-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 20px !important;
    gap: 20px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .dest-stop-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dest-stop-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: calc(50% - 10px) !important;
    justify-self: center;
  }

  .dest-booking-wrapper {
    max-width: 620px;
    margin: 0 auto;
  }
}

/* ===================================================
   RESPONSIVE: SMARTPHONE (< 768px)
   =================================================== */

@media (max-width: 768px) {
  .destination-page {
    padding-top: 75px;
  }

  .dest-hero-banner {
    min-height: 250px;
  }

  .dest-hero-container {
    padding: 30px 16px 22px;
  }

  .dest-hero-title {
    font-size: 1.55rem;
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .dest-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 8px;
  }

  .btn-dest-primary,
  .btn-dest-whatsapp,
  .btn-dest-call {
    width: 100%;
    padding: 10px 16px !important;
    font-size: 0.78rem !important;
    border-radius: 26px !important;
    min-height: 44px;
  }

  .dest-stops-section {
    padding: 38px 16px 48px;
  }

  .dest-section-header {
    margin-bottom: 24px;
  }

  .dest-stops-horizontal-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    max-width: 100% !important;
  }

  .dest-stop-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px;
  }

  .dest-stop-card:last-child:nth-child(odd) {
    max-width: 100% !important;
  }

  .dest-stop-body {
    padding: 16px 18px 20px;
  }

  .dest-stop-name {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .dest-stop-desc {
    font-size: 0.90rem;
    line-height: 1.52;
  }

  .dest-advantage-box {
    margin-top: 24px;
    padding: 14px 16px;
    gap: 12px;
  }

  .dest-booking-section {
    padding: 40px 16px 50px;
  }

  .dest-booking-wrapper {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .dest-under-form-contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px !important;
    width: 100% !important;
  }

  .dest-direct-contact .dest-contact-num {
    font-size: 1rem !important;
  }

  .dest-direct-contact .dest-contact-sub {
    font-size: 0.78rem !important;
  }
}

/* ===================================================
   RESPONSIVE: PICCOLI SMARTPHONE (<= 480px)
   =================================================== */

@media (max-width: 480px) {
  .dest-hero-banner {
    min-height: 220px;
  }

  .dest-hero-container {
    padding: 24px 12px 18px;
  }

  .dest-hero-title {
    font-size: 1.38rem;
    margin-bottom: 12px;
  }

  .dest-hero-actions {
    gap: 7px;
  }

  .btn-dest-primary,
  .btn-dest-whatsapp,
  .btn-dest-call {
    padding: 9px 14px !important;
    font-size: 0.75rem !important;
  }

  .dest-stop-body {
    padding: 14px 16px 18px;
  }

  .dest-stop-name {
    font-size: 1.02rem;
  }

  .dest-under-form-contacts {
    gap: 20px !important;
  }
}

/* ===== TOUR DEDICATED PAGE CSS ===== */

.tour-page-root {
  min-height: 100vh;
  background: #0b0b0c;
  color: #f7f5f0;
  overflow-x: hidden;
}

/* ===================================================
   SEZIONI GENERALI TOUR & HEADER
   =================================================== */

.tour-section-header {
  margin-bottom: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-section-header .dest-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #E5C378;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tour-section-header .dest-section-title {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 800;
  color: #ffffff;
}

.tour-section-header .stops-count-badge {
  display: inline-block;
  background: rgba(198, 163, 90, 0.14);
  color: #E5C378;
  font-size: 0.80rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(198, 163, 90, 0.4);
  margin-top: 8px;
}

/* ===================================================
   1. TAPPE DEL TOUR (ORIZZONTALI SU DESKTOP & IPAD)
   =================================================== */

.tour-stops-section {
  padding: 65px 3% 85px;
  background: #0b0b0c;
  position: relative;
}

.tour-stops-container {
  max-width: 1440px;
  margin: 0 auto;
}

/* Griglia Tappe: 4 tappe su una riga; se 5+, le successive vanno sotto centrate */
.tour-stops-horizontal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.tour-stop-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 15px);
  width: calc(25% - 15px);
  max-width: calc(25% - 15px);
  box-sizing: border-box;
  background: #13151d;
  border: 1.2px solid rgba(198, 163, 90, 0.32);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}

.tour-stop-card:hover {
  transform: translateY(-4px);
  border-color: #E5C378;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 20px rgba(198, 163, 90, 0.18);
}

.tour-stop-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #14151a;
}

.tour-stop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.tour-stop-card:hover .tour-stop-img {
  transform: scale(1.05);
}

.tour-stop-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 22, 0.7) 0%, transparent 45%);
  pointer-events: none;
}

.tour-stop-num-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 12, 15, 0.88);
  border: 1.2px solid rgba(198, 163, 90, 0.55);
  color: #E5C378;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.tour-stop-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.tour-stop-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.tour-stop-card:hover .tour-stop-name {
  color: #E5C378;
}

.tour-stop-desc {
  font-size: 0.94rem;
  color: #f8fafc;
  line-height: 1.55;
  margin: 0;
  flex: 1 1;
  font-weight: 400;
}

/* ===================================================
   2. COSA INCLUDE IL SERVIZIO (PUNTI DORATI)
   =================================================== */

.tour-inclusions-section {
  padding: 55px 4% 70px;
  background: linear-gradient(180deg, #0b0b0c 0%, #121318 50%, #0b0b0c 100%);
  border-top: 1px solid rgba(198, 163, 90, 0.15);
  position: relative;
}

.tour-inclusions-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tour-inclusions-header-center {
  text-align: center;
  margin-bottom: 36px;
}

.tour-inclusions-header-center .dest-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #E5C378;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tour-inclusions-header-center .dest-section-title {
  color: #ffffff;
}

.tour-inclusions-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 18px 44px;
  gap: 18px 44px;
}

.tour-inclusions-bullet-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  color: #f1f5f9;
  line-height: 1.5;
  padding: 8px 0;
}

.tour-inclusions-bullet-list li strong {
  color: #E5C378;
  font-weight: 700;
}

.tour-bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5C378 0%, #C6A35A 100%);
  box-shadow: 0 0 10px rgba(229, 195, 120, 0.7);
  flex-shrink: 0;
}

/* ===================================================
   RESPONSIVE: IPAD & TABLET (768px - 1024px)
   =================================================== */

@media (max-width: 1024px) {
  .tour-stops-container {
    max-width: 860px;
    padding: 0 20px;
  }

  .tour-stops-horizontal-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 20px !important;
    gap: 20px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .tour-stop-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .tour-stop-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: calc(50% - 10px) !important;
    justify-self: center;
  }

  .tour-inclusions-bullet-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
  }

  .tour-stop-name {
    font-size: 1.10rem;
  }

  .tour-stop-desc {
    font-size: 0.92rem;
  }
}

/* ===================================================
   RESPONSIVE: MOBILE (< 768px)
   =================================================== */

@media (max-width: 768px) {
  .tour-stops-section,
  .tour-inclusions-section {
    padding: 38px 16px 48px;
  }

  .tour-section-header {
    margin-bottom: 24px;
  }

  /* Su mobile: disposizione a colonna singola per le tappe */
  .tour-stops-horizontal-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    max-width: 100% !important;
  }

  .tour-stop-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px;
  }

  .tour-stop-card:last-child:nth-child(odd) {
    max-width: 100% !important;
  }

  .tour-stop-img-wrap {
    aspect-ratio: 16 / 10;
  }

  .tour-stop-body {
    padding: 16px 18px 20px;
  }

  .tour-stop-name {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .tour-stop-desc {
    font-size: 0.90rem;
    line-height: 1.52;
  }

  /* Su mobile: lista con punti dorati a colonna singola */
  .tour-inclusions-bullet-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tour-inclusions-bullet-list li {
    font-size: 0.96rem;
    gap: 12px;
    padding: 4px 0;
  }
}

/* ===================================================
   RESPONSIVE: PICCOLI SMARTPHONE (<= 480px)
   =================================================== */

@media (max-width: 480px) {
  .tour-stop-body {
    padding: 14px 16px 18px;
  }

  .tour-stop-name {
    font-size: 1.02rem;
  }

  .tour-inclusions-bullet-list li {
    font-size: 0.92rem;
  }
}

