/* ===================================================
   PHILIPSCARS — GLOBAL STYLESHEET
   Palette: #0a0a0a (black) · #d62b1f (red) · #fff
=================================================== */

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

:root {
  --red:        #d62b1f;
  --red-dark:   #a81f15;
  --red-glow:   rgba(214, 43, 31, .35);
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #222222;
  --gray:       #2a2a2a;
  --gray-2:     #3a3a3a;
  --muted:      #888888;
  --white:      #ffffff;
  --off-white:  #f0f0f0;
  --font:       'Inter', system-ui, sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --hh:         76px;
  --transition: .22s ease;
  --shadow-red: 0 0 40px rgba(214,43,31,.25);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 18px;
}
.tag::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
}

h1,h2,h3,h4 { line-height: 1.1; letter-spacing: -.02em; }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
}
.section-title span { color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-2);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-ghost:hover { background: var(--red); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: .95rem; }
.btn-sm { padding: 9px 18px; font-size: .78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── TOPBAR ── */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar a:hover { opacity: .8; }
.topbar i { margin-right: 4px; }

/* ── HEADER ── */
.logo__img {
  height: 40px;
  width: auto;
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  height: var(--hh);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.6); border-bottom-color: var(--red); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.logo__img { display: block; }
.logo::after {
  content: 'Noleggio e Vendita | Rent a Car Catania';
  display: block;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.footer__brand .logo::after { display: none; }
.logo__mark {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
  font-weight: 900;
}
.logo em { color: var(--red); font-style: normal; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 16px; right: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  margin-left: 12px;
  padding: 9px 20px;
}
.nav__link--cta:hover { background: var(--red-dark); }
.nav__link--cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ── SECTION BASE ── */
.section { padding: 110px 0; }
.section--sm { padding: 70px 0; }
.section--dark { background: var(--black-2); }
.section--darker { background: var(--black-3); }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .tag { justify-content: center; }
.section-header--center .tag::before { display: none; }

/* ── HERO (HOME) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  bottom: -30%;
  background:
    linear-gradient(105deg, rgba(10,10,10,1) 0%, rgba(10,10,10,.85) 50%, rgba(10,10,10,.5) 100%),
    url('img/car_1.jpg') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 28px 100px;
  max-width: 750px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214,43,31,.12);
  border: 1px solid rgba(214,43,31,.3);
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 7px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.hero__title span { color: var(--red); display: block; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero__stats {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat strong em { color: var(--red); font-style: normal; }
.stat span { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── RED STRIPE ── */
.stripe {
  background: var(--red);
  padding: 28px 0;
  overflow: hidden;
}
.stripe__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.stripe__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
}
.stripe__item i { font-size: 1rem; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES PREVIEW (HOME) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray);
  border: 2px solid var(--gray);
}
.service-box {
  background: var(--black-2);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;
  display: block;
}
.service-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-box:hover { background: var(--black-3); }
.service-box:hover::before { transform: scaleX(1); }
.service-box:hover .service-box__icon { color: var(--red); }

.service-box__num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  position: absolute;
  top: 20px; right: 28px;
  letter-spacing: -.04em;
}
.service-box__icon {
  font-size: 2.2rem;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.service-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.service-box p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.service-box__arrow {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
}

/* ── FLOTTA PREVIEW (HOME) ── */
.fleet-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── CAR CARD ── */
.car-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
}
.car-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.car-card__img {
  height: 200px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.car-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.car-card:hover .car-card__img img { transform: scale(1.06); }
.car-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.car-card__body { padding: 22px 22px 24px; }
.car-card__body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.car-card__sub { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.car-card__specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.car-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--muted);
}
.car-card__spec i { color: var(--red); font-size: .72rem; }
.car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car-card__price .from { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.car-card__price strong { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.car-card__price span { font-size: .78rem; color: var(--muted); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-visual {
  background:
    linear-gradient(to right, rgba(10,10,10,0) 0%, rgba(10,10,10,.8) 100%),
    url('img/car_2.jpg') center/cover no-repeat;
  min-height: 540px;
  position: relative;
}
.why-visual__badge {
  position: absolute;
  bottom: 40px; right: -24px;
  background: var(--red);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.why-visual__badge strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--white); }
.why-visual__badge span { font-size: .72rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .08em; }

.why-content {
  background: var(--black-2);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(214,43,31,.12);
  border: 1px solid rgba(214,43,31,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
}
.why-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'PRENOTA';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(0,0,0,.12);
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.cta-band p { color: rgba(255,255,255,.75); margin-top: 8px; font-size: .95rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* vendita usato variant */
.cta-band--usato::before { content: 'USATO'; }
.cta-band--usato .tag--light { color: rgba(255,255,255,.6); margin-bottom: 12px; }
.cta-band--usato .tag--light::before { background: rgba(255,255,255,.4); }
.cta-band h2 span { color: rgba(255,255,255,.55); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--black-2);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: .06;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=60') center/cover no-repeat;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.0;
}
.page-hero__title span { color: var(--red); }
.page-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb i { font-size: .6rem; }

/* ── SERVIZI PAGE ── */
.servizio-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color var(--transition);
}
.servizio-block:hover { border-color: rgba(214,43,31,.4); }
.servizio-block--reverse { direction: rtl; }
.servizio-block--reverse > * { direction: ltr; }

.servizio-block__visual {
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(214,43,31,.25);
  position: relative;
  overflow: hidden;
}
.servizio-block__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}
.servizio-block__visual .icon-big {
  position: absolute;
  font-size: 10rem;
  color: rgba(214,43,31,.08);
}

.servizio-block__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-2);
}
.servizio-block__content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.servizio-block__content h2 span { color: var(--red); }
.servizio-block__content p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 20px; }
.servizio-block__content .features-list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.servizio-block__content .features-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.75);
}
.servizio-block__content .features-list i { color: var(--red); font-size: .75rem; }

/* ── FLOTTA PAGE ── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.car-card[data-hidden] { display: none; }

/* ── CONTATTI PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.contact-info h2 span { color: var(--red); }
.contact-info > p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 44px; }

.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.info-item:hover { border-color: var(--red); }
.info-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(214,43,31,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--red);
}
.info-item h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: .95rem; font-weight: 600; color: var(--white); }
.info-item a:hover { color: var(--red); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted);
  transition: all var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── FORM ── */
.booking-form {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.booking-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.booking-form h3 span { color: var(--red); }
.booking-form > p { color: var(--muted); font-size: .85rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214,43,31,.15);
}
.form-group select option { background: var(--black-3); }
.form-group textarea { resize: vertical; }
.form__note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── MAPPA ── */
.map-section { position: relative; }
.map-section iframe { display: block; filter: grayscale(80%) invert(90%) contrast(1.1); }

/* ── FOOTER ── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer__brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; }
.footer__social { display: flex; gap: 8px; }

.footer__col h4 {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color var(--transition);
}
.footer__col a { color: var(--muted); transition: color var(--transition); }
.footer__col a:hover { color: var(--red); }
.footer__col i { color: var(--red); margin-top: 2px; flex-shrink: 0; font-size: .8rem; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: .76rem;
  color: rgba(255,255,255,.25);
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--red); }
.footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 4px;
}
.footer__lang-label { color: rgba(255,255,255,.3); margin-right: 4px; }

/* nav lang mobile (shown only on mobile) */
.nav__lang-mobile { display: none; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,.04); }

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── GHOST SECTION ── */
.ghost-section {
  position: relative;
  min-height: 520px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
/* subtle grid texture */
.ghost-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ghost-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 28px;
}
.ghost-section__content .tag--center {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 24px;
}
.ghost-section__content .tag--center::before { display: none; }
.ghost-section__title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(214,43,31,.15);
}
.ghost-section__title span { color: var(--red); display: block; }
.ghost-section__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── BOOKING DRAWER ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(4px);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--black-2);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.07);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
}
.drawer.open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.drawer__title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.drawer__title span { color: var(--red); }
.drawer__close {
  width: 38px; height: 38px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.drawer__close:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.drawer__vehicle-badge {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 16px 28px 0;
  padding: 12px 16px;
  background: rgba(214,43,31,.1);
  border: 1px solid rgba(214,43,31,.25);
  border-radius: var(--radius);
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}
.drawer__vehicle-badge.visible { display: flex; }
.drawer__vehicle-badge i { color: var(--red); }
.drawer__vehicle-badge strong { color: var(--white); }

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 28px;
}
.drawer__body::-webkit-scrollbar { width: 4px; }
.drawer__body::-webkit-scrollbar-track { background: transparent; }
.drawer__body::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 4px; }

.drawer__footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.drawer__footer .form__note { margin-top: 10px; }

/* ── ANIMATIONS ── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { min-height: 360px; }
  .why-visual__badge { right: 40px; bottom: -28px; }
  .why-content { padding: 48px 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .servizio-block { grid-template-columns: 1fr; }
  .servizio-block--reverse { direction: ltr; }
  .servizio-block__visual { min-height: 260px; }
  .servizio-block__content { padding: 44px 36px; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  .topbar { display: none; }
  .nav {
    position: fixed;
    top: var(--hh); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 24px 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,.8);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
    z-index: 1500;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 14px 16px; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.04); }
  .nav__link--cta { margin: 12px 0 0; text-align: center; }
  .burger { display: flex; }
  .logo__img { height: 26px; width: auto; max-width: 155px; object-fit: contain; object-position: left; }
  .hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero__content { padding-left: 20px; padding-right: 20px; }
  .hero__stats { gap: 20px; }
  .hero__stat-value { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .booking-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .nav__lang-mobile { display: block; }
  .section { padding: 72px 0; }
  .page-hero { padding: 80px 0 56px; }
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.lang-switcher__active { color: var(--white); opacity: .5; cursor: default; }
.lang-switcher__sep    { color: rgba(255,255,255,.3); }
.lang-switcher__link   { color: var(--white); text-decoration: none; transition: color var(--transition); }
.lang-switcher__link:hover { color: var(--red); }

/* ── HOVER FIX – link visibili su tutti i sfondi ── */
/* Link generici inline (es. info-item, contact-card, why-us) */
.contact-card a:not(.btn):hover,
.info-item a:not(.btn):hover,
.why-us__text a:not(.btn):hover,
.sidebar-contact a:hover { color: var(--red) !important; }

/* Footer logo hover non scompaia */
.footer__brand .logo:hover { opacity: .85; }

/* Topbar link – resta leggibile su rosso */
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--white); opacity: 1; text-decoration: underline; }

/* Nav link attivo non sparisce se background diventa più chiaro */
.nav__link:hover,
.nav__link.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav__link--cta:hover { background: var(--red-dark) !important; }

/* btn-ghost su sfondo rosso (CTA band inglese) → forza visibilità */
.cta-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* link-arrow nei contatti */
.link-arrow { color: var(--red); font-size: .85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.link-arrow:hover { color: var(--white); }
