/*
Theme Name: Pompeii & Coast Travel
Theme URI: https://pompeiiandcoasttravel.it
Author: M.A.C. S.r.l.
Author URI: https://macsolution.it
Description: Tema custom per Pompeii & Coast Travel - Private Driver Napoli, Sorrento, Amalfi
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: pompeii-coast
*/

/* ============================================================
   VARIABILI CSS
   ============================================================ */
:root {
  --dark:      #0D2B4E;
  --dark2:     #0A2240;
  --dark3:     #0E3158;
  --teal:      #1A7A8A;
  --teal-light:#1d8fa0;
  --terra:     #C4622D;
  --terra-light:#d96e35;
  --gold:      #E8C84A;
  --white:     #FFFDF5;
  --gray:      #7AAAB8;
  --gray-light:#aab8cc;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
  --transition: 0.3s ease;
  --shadow:     0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--terra); }
::selection { background: var(--terra); color: var(--white); }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 0.88rem; line-height: 1.9; color: rgba(255,253,245,0.65); }

em { font-style: italic; color: var(--gold); }
strong { font-weight: 500; color: var(--white); }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--terra);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.85rem;
  color: rgba(255,253,245,0.6);
  line-height: 1.9;
  max-width: 520px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-terra { color: var(--terra); }
.text-teal { color: var(--teal); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terra-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,253,245,0.3);
}
.btn-secondary:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--terra);
  color: var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 24px 0;
}

.site-header.scrolled {
  background: rgba(13,43,78,0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,122,138,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-decoration: none;
  line-height: 1.2;
}

.site-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,253,245,0.7);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 400;
}

.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--terra); }

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 0.65rem !important;
}

.nav-cta:hover {
  background: var(--terra-light);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,43,78,0.96) 0%,
    rgba(13,43,78,0.65) 50%,
    rgba(13,43,78,0.88) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,122,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,138,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 40px;
  margin-top: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white);
  background: rgba(196,98,45,0.2);
  border-left: 3px solid var(--terra);
  padding: 8px 16px;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  animation: fadeUp 0.8s 0.3s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255,253,245,0.65);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: fadeUp 0.8s 1.2s both;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--terra);
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 60px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(196,98,45,0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  animation: fadeIn 1s 1.4s both;
}

.hero-badge strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--terra);
  line-height: 1;
}

.hero-badge small {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--terra);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SERVIZI
   ============================================================ */
.servizi {
  background: var(--dark);
}

.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.servizio-card {
  background: var(--dark3);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,122,138,0.06);
  transition: background var(--transition);
}

.servizio-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--terra);
  transition: width 0.4s;
}

.servizio-card:hover { background: #0f2040; }
.servizio-card:hover::before { width: 100%; }

.servizio-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196,98,45,0.06);
  line-height: 1;
}

.servizio-icon { font-size: 1.8rem; margin-bottom: 20px; display: block; }

.servizio-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}

.servizio-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   FLOTTA
   ============================================================ */
.flotta {
  background: var(--dark2);
}

.flotta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.flotta-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.flotta-tab {
  background: transparent;
  border: 1px solid rgba(26,122,138,0.2);
  color: var(--gray);
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.flotta-tab:hover,
.flotta-tab.active {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

.flotta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark3);
  border: 1px solid rgba(26,122,138,0.1);
  min-height: 420px;
}

.flotta-img {
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.flotta-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.8) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s;
}

.flotta-card:hover .flotta-img img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

.flotta-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flotta-category {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}

.flotta-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
}

.flotta-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.flotta-spec {
  border-left: 1px solid rgba(196,98,45,0.25);
  padding-left: 12px;
}

.flotta-spec-val {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--terra);
}

.flotta-spec-key {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

.flotta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.flotta-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray);
}

.flotta-features li::before {
  content: '—';
  color: var(--terra);
}

/* ============================================================
   CAMPANIA SECTION
   ============================================================ */
.campania {
  background: var(--dark);
}

.campania-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.campania-intro .section-label {
  justify-content: center;
}
.campania-intro .section-label::before { display: none; }

.campania-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.campania-tab {
  background: transparent;
  border: 1px solid rgba(26,122,138,0.2);
  color: var(--gray);
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.campania-tab:hover,
.campania-tab.active {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

.campania-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  display: none;
}

.campania-panel.active { display: grid; }

.campania-images {
  position: relative;
  height: 480px;
}

.campania-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 78%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.campania-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  border: 4px solid var(--dark);
}

.campania-badge {
  position: absolute;
  top: 42%;
  left: 58%;
  background: var(--terra);
  color: var(--white);
  padding: 14px 18px;
  text-align: center;
  z-index: 2;
}

.campania-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
}

.campania-badge small {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.campania-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.campania-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: rgba(255,253,245,0.7);
  line-height: 1.6;
}

.campania-highlight-icon { color: var(--terra); flex-shrink: 0; }

/* ============================================================
   GALLERIA SLIDESHOW
   ============================================================ */
.slideshow-section { background: var(--dark3); overflow: hidden; }

.slideshow-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.slideshow-header a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}

.slideshow-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,78,0.7) 0%, transparent 50%);
}

.slide-caption {
  position: absolute;
  bottom: 28px;
  left: 40px;
}

.slide-caption-cat {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}

.slide-caption-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.slideshow-dots { display: flex; gap: 8px; }

.slideshow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,253,245,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slideshow-dot.active {
  background: var(--terra);
  width: 24px;
  border-radius: 3px;
}

.slideshow-nav { display: flex; gap: 8px; }

.slideshow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26,122,138,0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slideshow-btn:hover { border-color: var(--terra); color: var(--terra); }

.slideshow-progress { font-size: 0.68rem; color: var(--gray); }

/* ============================================================
   RECENSIONI
   ============================================================ */
.recensioni {
  background: var(--dark2);
  text-align: center;
}

.recensioni .section-label { justify-content: center; }
.recensioni .section-label::before { display: none; }

.recensioni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  text-align: left;
}

.recensione-card {
  background: var(--dark3);
  padding: 36px 32px;
  border: 1px solid rgba(26,122,138,0.06);
  transition: border-color var(--transition);
}

.recensione-card:hover { border-color: rgba(196,98,45,0.25); }

.recensione-stars {
  color: var(--terra);
  font-size: 0.8rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.recensione-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,253,245,0.8);
  margin-bottom: 22px;
}

.recensione-author strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.recensione-author span {
  font-size: 0.7rem;
  color: var(--gray);
}

/* ============================================================
   FORM CONTATTI
   ============================================================ */
.contatti {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contatti::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13,43,78,0.92) 0%, rgba(13,43,78,0.88) 100%);
}

.contatti-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contatti-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
  color: rgba(255,253,245,0.7);
}

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon { color: var(--terra); font-size: 1rem; margin-top: 2px; }

.contact-detail-text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}

.contact-detail-text span { font-size: 0.83rem; color: rgba(255,253,245,0.7); }

/* WordPress Contact Form 7 styling */
.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.wpcf7 .form-group { margin-bottom: 16px; }

.wpcf7 label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(26,122,138,0.25);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: var(--terra); }

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(122,170,184,0.4); }

.wpcf7 textarea { resize: vertical; min-height: 120px; }
.wpcf7 select option { background: var(--dark3); }

.wpcf7 input[type="submit"] {
  background: var(--terra);
  color: var(--white);
  border: none;
  padding: 16px;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover { background: var(--terra-light); }

.wpcf7-not-valid-tip { color: #e05555; font-size: 0.7rem; margin-top: 4px; }
.wpcf7-mail-sent-ok { color: #4ade80; font-size: 0.8rem; padding: 12px; border: 1px solid rgba(74,222,128,0.3); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #040c17;
  border-top: 1px solid rgba(26,122,138,0.1);
  padding: 60px 40px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.footer-about {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--gray); font-size: 0.78rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--terra); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 22px;
  font-size: 0.68rem;
  color: rgba(122,170,184,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: var(--terra); }

/* ============================================================
   ANIMAZIONI
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .flotta-card { grid-template-columns: 1fr; }
  .campania-panel { grid-template-columns: 1fr; }
  .campania-images { height: 280px; }
  .contatti-inner { grid-template-columns: 1fr; gap: 40px; }
  .recensioni-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-badge { display: none; }
  .hero-scroll { left: 20px; }
  .strip { padding: 16px 20px; gap: 20px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,43,78,0.98);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .main-nav.open a { font-size: 1.2rem; }
  .servizi-grid { grid-template-columns: 1fr; }
  .flotta-tabs { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wpcf7 .form-row { grid-template-columns: 1fr; }
  .slideshow-wrap { aspect-ratio: 4/3; }
  .slide-caption { left: 20px; bottom: 16px; }
  .slide-caption-text { font-size: 1.2rem; }
}

/* ============================================================
   WORDPRESS SPECIFICS
   ============================================================ */
.wp-block-image img { border-radius: 0; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

/* Elementor overrides */
.elementor-page .site-header { position: fixed !important; }
.gt-lang-switcher {
    display: flex;
    align-items: center;
}
.gt-lang-switcher select {
    background: transparent;
    border: 1px solid rgba(196,98,45,0.4);
    color: var(--white);
    padding: 6px 10px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    cursor: pointer;
    outline: none;
}
