/* ============================================
   CARAVELLO SRVC — CSS
   Font: Inter | Icons: Font Awesome
   Colors: Navy #1D2F5C | Red #CC1F1F | Gold #C9A84C
   ============================================ */

:root {
  --navy:       #1D2F5C;
  --navy-dark:  #0F1A36;
  --navy-mid:   #16254A;
  --red:        #CC1F1F;
  --red-dark:   #A81818;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --white:      #FFFFFF;
  --light:      #F5F7FA;
  --light-mid:  #E8ECF2;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --text:       #1A1A2E;

  --font: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.11);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);

  --radius:     12px;
  --radius-lg:  20px;
  --radius-full: 50px;

  --transition: 0.3s ease;
  --container:  1200px;
  --sp:         100px;
}

/* ============================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ============================================ UTILITIES */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: var(--sp) 0; }

.bg-navy { background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%); }
.bg-dark  { background: linear-gradient(160deg, #060d1c 0%, var(--navy-dark) 100%); }

.text-white { color: var(--white) !important; }
.light-text { color: rgba(255,255,255,0.65) !important; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[style*="--delay:1"] { transition-delay: 0.10s; }
.reveal[style*="--delay:2"] { transition-delay: 0.20s; }
.reveal[style*="--delay:3"] { transition-delay: 0.30s; }
.reveal[style*="--delay:4"] { transition-delay: 0.40s; }
.reveal[style*="--delay:5"] { transition-delay: 0.50s; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 16px;
  line-height: 1.15;
}
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto; }

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,31,31,0.09);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.tag-light { color: var(--gold); background: rgba(201,168,76,0.15); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204,31,31,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,31,31,0.45); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29,47,92,0.3);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,47,92,0.45); }

.btn-live {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124,58,237,0.45);
  animation: live-pulse 2.4s ease-in-out infinite;
}
.btn-live:hover {
  background: linear-gradient(135deg, #6d28d9, #be185d);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124,58,237,0.6);
  animation: none;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(124,58,237,0.45); }
  50%       { box-shadow: 0 4px 36px rgba(219,39,119,0.65); }
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

/* ============================================ HEADER */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.main-header.scrolled {
  background: var(--white);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 7px 9px;
  border-radius: 8px;
  white-space: nowrap;
}
.main-header.scrolled .nav-links li a { color: var(--navy); }
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.14); }
.main-header.scrolled .nav-links li a:hover { color: var(--red); background: rgba(204,31,31,0.06); }

.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--red-dark) !important; }

/* Mobile toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1002; }
.bar { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.main-header.scrolled .bar { background: var(--navy); }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================ HERO */
.hero-section {
  min-height: 100vh;
  background: url('images/bg-milazzo.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 22, 52, 0.82) 0%,
    rgba(29, 47, 92, 0.72) 50%,
    rgba(10, 22, 52, 0.88) 100%
  );
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-logo { margin-bottom: 32px; }
.hero-logo img {
  height: 110px;
  width: auto;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 3px rgba(201,168,76,0.35);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.text-gold { color: var(--gold); }

.hero-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 18px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hs-item i { font-size: 1.45rem; color: var(--white); transition: var(--transition); }
.hs-item:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204,31,31,0.38);
}
.hs-item:hover i { color: var(--white); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
}
.mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.38);
  border-radius: 20px; position: relative;
}
.mouse::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================ SERVICES OVERVIEW */
.services-overview { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.055);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.35rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }

.card-link {
  font-size: 0.85rem; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link i { transition: transform 0.2s; }
.card-link:hover i { transform: translateX(4px); }

/* ============================================ SERVICE DETAIL */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.detail-grid-rev { grid-template-columns: 1.3fr 1fr; }

.detail-visual {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}

.detail-icon-big {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--white);
  box-shadow:
    0 0 0 12px rgba(201,168,76,0.18),
    0 0 0 24px rgba(201,168,76,0.07),
    0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.detail-icon-big:hover { transform: scale(1.06); }

.detail-icon-big.icon-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow:
    0 0 0 12px rgba(29,47,92,0.12),
    0 0 0 24px rgba(29,47,92,0.05),
    0 30px 80px rgba(0,0,0,0.14);
}

.detail-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.detail-badge.badge-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29,47,92,0.25);
}

.detail-content .section-tag { margin-bottom: 12px; }

/* Room photo */
.room-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 4px rgba(29,47,92,0.1);
}
.room-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.room-photo-wrap:hover .room-photo { transform: scale(1.03); }
.room-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,26,54,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.35);
}
@media (max-width: 1100px) {
  .room-photo { height: 300px; }
}

/* ============================================ ROOM GALLERY */
/* ============================================ VEHICLE TOOLTIP */
.fleet-vehicle[data-vehicle-img] {
  cursor: default;
  border-bottom: 1px dashed rgba(201,168,76,0.6);
}
.vehicle-tooltip {
  position: fixed;
  z-index: 9000;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.24), 0 0 0 1px rgba(29,47,92,0.08);
  padding: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 180px;
}
.vehicle-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.vehicle-tooltip img {
  width: 164px;
  height: 110px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  display: block;
}
.vehicle-tooltip-label {
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.room-gallery {
  margin-top: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(15,26,54,0.45);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ============================================ LIGHTBOX */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(5,12,26,0.93);
  backdrop-filter: blur(8px);
}
.lightbox-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  max-width: 90vw;
}
.lightbox-img {
  max-width: 80vw; max-height: 82vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
  object-fit: contain;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); z-index: 2;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

.lightbox-prev, .lightbox-next {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--navy); border-color: var(--navy); }

.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4); padding: 6px 16px; border-radius: var(--radius-full);
}

.detail-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 18px;
}
.bg-navy .detail-content h2 { color: var(--white); }

.detail-content p { font-size: 1rem; line-height: 1.8; margin-bottom: 26px; }
.bg-navy .detail-content p { color: rgba(255,255,255,0.72); }

/* Feature list */
.feature-list { margin-bottom: 30px; display: flex; flex-direction: column; gap: 11px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.94rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.feature-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.feature-list-dark li { color: var(--gray-dark); }
.feature-list-dark li i { color: var(--red); }

.detail-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================ ROOMS GRID */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.room-card {
  background: var(--light);
  border: 1.5px solid var(--light-mid);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.room-card-triple { border-color: rgba(29,47,92,0.25); background: rgba(29,47,92,0.04); }
.room-card-quad   { border-color: rgba(204,31,31,0.2); background: rgba(204,31,31,0.04); }

.room-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.room-card-header > i {
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
  width: 28px;
}
.room-card-triple .room-card-header > i { color: var(--navy); }
.room-card-quad   .room-card-header > i { color: var(--red); }

.room-card-header > div { flex: 1; }
.room-card-header h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 0;
}
.room-qty {
  font-size: 0.72rem; font-weight: 500;
  color: var(--gray);
}
.room-price {
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy); white-space: nowrap;
}
.room-price small {
  font-size: 0.7rem; font-weight: 400;
  color: var(--gray); margin-left: 2px;
}
.room-desc {
  font-size: 0.83rem; color: var(--gray);
  line-height: 1.6; margin: 0;
}
.room-badge {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--navy);
  background: rgba(29,47,92,0.1);
  padding: 3px 10px; border-radius: var(--radius-full);
}

/* ============================================ FLEET GRID */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.fleet-category {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.fleet-kasko  { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.07); }
.fleet-special { border-color: rgba(204,31,31,0.35); background: rgba(204,31,31,0.07); }

.fleet-cat-name {
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.fleet-kasko .fleet-cat-name  { color: var(--gold-light); }
.fleet-special .fleet-cat-name { color: rgba(255,255,255,0.9); }
.kasko-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fleet-list { display: flex; flex-direction: column; gap: 7px; }
.fleet-row  { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.fleet-vehicle {
  font-size: 0.86rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.fleet-vehicle small { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-left: 3px; }

.fleet-price {
  font-size: 0.92rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
}
.fleet-price small { font-size: 0.68rem; font-weight: 400; color: rgba(255,255,255,0.45); margin-left: 1px; }


@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

.no-deposit-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.08));
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.no-deposit-badge i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.no-deposit-badge span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.no-deposit-badge strong {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================ PARTNER */
.partner-section { background: var(--light); }

.partner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.partner-card {
  background: var(--white);
  border: 1.5px solid var(--light-mid);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.partner-card a { display: block; }
.partner-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.partner-card:hover img { filter: grayscale(0%); }

/* ============================================ CONTATTI */
.contatti-section .section-header h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}
.contact-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  margin: 0 auto 14px;
}
.contact-icon-wrap.whatsapp-icon { background: #25D366; }
.contact-icon-wrap.email-icon    { background: var(--gold); color: var(--navy-dark); }
.contact-icon-wrap.location-icon { background: var(--navy-mid); }

.contact-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.contact-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.58); margin-bottom: 18px; line-height: 1.6; }
.contact-number {
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 14px !important;
}
.contact-number i { font-size: 0.85rem; margin-right: 5px; opacity: 0.8; }

/* ---- Orari ---- */
.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.hours-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 32px;
}
.hours-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hours-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hours-icon-gold { background: var(--gold); color: var(--navy-dark) !important; }
.hours-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hours-info p {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  font-weight: 500;
}
.hours-info p strong { color: var(--gold-light); font-weight: 700; }
@media (max-width: 600px) {
  .contact-hours { flex-direction: column; padding: 20px; }
  .hours-divider { width: 60%; height: 1px; }
  .hours-block { padding: 12px 0; }
}

.contact-sede { margin-bottom: 16px; }
.contact-sede:last-child { margin-bottom: 0; }
.sede-label {
  font-size: 0.72rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold) !important;
  margin-bottom: 4px !important;
}
.sede-label i { font-size: 0.45rem; vertical-align: middle; margin-right: 5px; }
.sede-address {
  font-size: 0.83rem !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 10px !important;
  line-height: 1.5 !important;
}

.contact-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  color: var(--white); font-size: 0.83rem; font-weight: 600;
  transition: var(--transition);
}
.contact-btn:hover { background: var(--red); border-color: var(--red); }
.contact-btn.whatsapp-btn:hover { background: #25D366; border-color: #25D366; }

/* ============================================ FOOTER */
.site-footer { background: #040b18; padding: 56px 0 28px; }
.footer-inner { text-align: center; }

.footer-logo { height: 66px; width: auto; margin: 0 auto 18px; border-radius: 10px; }
.footer-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.07em; margin-bottom: 22px;
}

.footer-links {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2px; margin-bottom: 22px;
}
.footer-links a {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  padding: 5px 11px; border-radius: 6px;
}
.footer-links a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.footer-socials {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 34px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.77rem; color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: 8px;
}

/* ============================================ FLOATING BUTTONS */
.fab-whatsapp, .fab-booking {
  position: fixed; z-index: 900;
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.875rem; font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.fab-whatsapp { bottom: 88px; right: 24px; background: #25D366; }
.fab-whatsapp:hover { background: #1ebe5d; transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(37,211,102,0.48); }

.fab-booking  { bottom: 28px; right: 24px; background: var(--red); }
.fab-booking:hover  { background: var(--red-dark); transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(204,31,31,0.48); }

.fab-whatsapp i, .fab-booking i { font-size: 1.1rem; }

/* ============================================ BOOKING MODAL */
.booking-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-modal.open { opacity: 1; pointer-events: all; }

.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(4,11,24,0.87);
  backdrop-filter: blur(6px);
}

.booking-box {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 620px;
  max-height: 90vh; overflow-y: auto;
  margin: 20px;
  transform: scale(0.95) translateY(18px);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.booking-modal.open .booking-box { transform: scale(1) translateY(0); }

.booking-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gray);
  transition: var(--transition); z-index: 2;
  cursor: pointer; line-height: 1;
}
.booking-close:hover { background: var(--red); color: var(--white); }

.booking-step { padding: 32px; }
.booking-step.hidden { display: none; }

.booking-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 26px;
}
.booking-header h2 { font-size: 1.45rem; font-weight: 700; color: var(--navy); margin: 0; }
.booking-header p  { color: var(--gray); margin: 4px 0 0; font-size: 0.88rem; }

.booking-back {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.88rem;
  transition: var(--transition); margin-top: 4px;
}
.booking-back:hover { background: var(--navy); color: var(--white); }

.booking-service-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); background: rgba(204,31,31,0.09);
  padding: 3px 10px; border-radius: var(--radius-full);
  margin-bottom: 4px;
}

/* Service choice grid */
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.service-choice-btn {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 18px 10px;
  border: 2px solid var(--light-mid); border-radius: var(--radius);
  background: var(--white); cursor: pointer;
  transition: var(--transition); text-align: center;
}
.service-choice-btn i      { font-size: 1.7rem; color: var(--navy); transition: var(--transition); }
.service-choice-btn strong { font-size: 0.88rem; color: var(--navy); font-weight: 700; }
.service-choice-btn span   { font-size: 0.73rem; color: var(--gray); }
.service-choice-btn:hover,
.service-choice-btn.selected { border-color: var(--red); background: rgba(204,31,31,0.04); }
.service-choice-btn:hover i,
.service-choice-btn.selected i { color: var(--red); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.76rem; font-weight: 600;
  color: var(--gray-dark); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--light-mid); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 78px; }

.form-actions { margin-top: 6px; text-align: center; }
.btn-whatsapp-submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; padding: 14px 28px;
  background: #25D366; color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp-submit:hover {
  background: #1ebe5d; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.form-note { font-size: 0.74rem; color: var(--gray); margin-top: 9px; }

/* ============================================ RESPONSIVE */
@media (max-width: 1100px) {
  :root { --sp: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .detail-grid-rev { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .detail-grid-rev .detail-visual { order: -1; }
  .detail-actions { justify-content: center; }
  .feature-list li { justify-content: center; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --sp: 60px; }

  .nav-links {
    position: fixed; top: 0; right: -100%; width: 270px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column; justify-content: center;
    padding: 80px 28px; gap: 2px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links li a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1rem; padding: 11px 14px;
    display: block; border-radius: 10px;
  }
  .nav-links li a:hover { color: var(--white) !important; background: rgba(255,255,255,0.1) !important; }
  .menu-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr 1fr; }
  .hero-services-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-icon-big { width: 160px; height: 160px; font-size: 3.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .booking-step { padding: 24px; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hs-item { padding: 14px 8px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }

  .fab-whatsapp span, .fab-booking span { display: none; }
  .fab-whatsapp, .fab-booking {
    width: 52px; height: 52px; padding: 0;
    border-radius: 50%; justify-content: center;
  }
  .fab-whatsapp { bottom: 92px; }
}
