/* ============================================
   VARIABILI & RESET
   ============================================ */
:root {
  --blu:     #0B1F3A;
  --blu-mid: #132d52;
  --amber:   #F59E0B;
  --amber-d: #D97706;
  --white:   #F8F7F4;
  --gray:    #6B7280;
  --gray-l:  #E5E7EB;
  --text:    #1F2937;

  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(11,31,58,.10);
  --shadow-lg: 0 12px 48px rgba(11,31,58,.18);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blu);
}

.section-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 14px auto 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--amber);
  color: var(--blu);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-d);
  border-color: var(--amber-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.logo-icon { font-size: 1.4rem; }
.logo-text strong { font-weight: 800; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.nav-cta {
  background: var(--amber);
  color: var(--blu) !important;
  font-weight: 700;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--amber-d) !important;
  color: var(--blu) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,.82) 0%,
    rgba(11,31,58,.55) 60%,
    rgba(11,31,58,.30) 100%
  );
}

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

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.7);
  animation: bounce 2s infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--amber);
  color: var(--blu);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
}
.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge span {
  font-size: .78rem;
  font-weight: 600;
}

.about-content .section-title { margin-bottom: 20px; }

.about-text {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-l);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blu);
}
.stat span {
  font-size: .82rem;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-l);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,158,11,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--amber);
}
.service-card:hover .service-icon {
  background: var(--amber);
}
.service-card:hover .service-icon svg {
  stroke: var(--blu);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blu);
}

.service-card p {
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  color: var(--amber);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 4px;
  transition: var(--transition);
}
.service-card:hover .card-link {
  letter-spacing: .03em;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--blu);
}

.why-us .section-eyebrow { color: var(--amber); }
.why-us .section-title   { color: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--amber);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--blu);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.why-item h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-item p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber);
  flex-shrink: 0;
}
.contact-item a, .contact-item span {
  color: var(--text);
  font-weight: 500;
}
.contact-item a:hover { color: var(--amber); }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-l);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blu);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-l);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blu);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .logo-icon,
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 280px; }

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber); }

.footer-contact p {
  font-size: .9rem;
  margin-bottom: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
}

/* ============================================
   PAGE HERO (pagine interne)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,.9) 0%, rgba(11,31,58,.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.page-hero-content .section-eyebrow { margin-bottom: 8px; }
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}

.service-detail-content .section-title { margin-bottom: 20px; }
.service-detail-content p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 2px;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-l);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 28px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* CTA STRIP */
.cta-strip {
  background: var(--amber);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blu);
  margin-bottom: 20px;
}
.cta-strip .btn-primary {
  background: var(--blu);
  border-color: var(--blu);
  color: #fff;
}
.cta-strip .btn-primary:hover {
  background: var(--blu-mid);
  border-color: var(--blu-mid);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blu);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 6px;
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1rem; width: 100%; }
  .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: flex; }

  .about-grid,
  .contact-grid,
  .service-detail-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-stats { gap: 20px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ============================================
   FALLBACK COLORI (quando le foto non ci sono ancora)
   ============================================ */
.hero-bg {
  background: var(--blu);
}
.hero-img {
  object-position: center 30%;
}
.page-hero-bg {
  background: var(--blu-mid);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--blu);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--blu);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  background: var(--blu-mid);
  transform: translateY(-3px);
}
.back-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat strong {
  transition: none;
}

/* ============================================
   GALLERY EMPTY STATE
   ============================================ */
.gallery-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--gray);
  background: #fff;
  border: 2px dashed var(--gray-l);
  border-radius: var(--radius);
}
.gallery-empty p { font-size: 1rem; margin-top: 8px; }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}
@media (min-width: 769px) {
  .nav-overlay { display: none !important; }
}

/* ============================================
   HAMBURGER ANIMATO
   ============================================ */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span { transition: var(--transition); }

/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 12s ease-out infinite alternate;
}
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #0B1F3A 0%, #1E3A5F 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #132d52 0%, #0B1F3A 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #1A3568 0%, #0B1F3A 100%); }
.hero-slide:nth-child(4) { background: linear-gradient(135deg, #0B1F3A 0%, #2C4F8C 100%); }

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-indicator {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-indicator.active {
  background: var(--amber);
  width: 48px;
}

/* ============================================
   PROCESS / COME LAVORIAMO
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-l);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--amber);
  color: var(--blu);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11,31,58,.08);
}
.process-step:hover .process-num {
  background: var(--amber);
  transform: scale(1.05);
}
.process-step h4 {
  font-size: 1.05rem;
  color: var(--blu);
  margin-bottom: 10px;
  font-weight: 700;
}
.process-step p {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3568 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  font-family: Georgia, serif;
  font-size: 30rem;
  color: rgba(245,158,11,.05);
  top: -80px;
  right: 40px;
  line-height: 1;
}
.testimonials .section-title { color: #fff; }
.testimonials .section-eyebrow { color: var(--amber); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--amber);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-size: .98rem;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.testimonial-info strong {
  color: #fff;
  display: block;
  font-size: .95rem;
}
.testimonial-info span {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

/* ============================================
   BRAND STRIP
   ============================================ */
.brands {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--gray-l);
}
.brands-title {
  text-align: center;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
.brand-logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: default;
  white-space: nowrap;
}
.brand-logo:hover { color: var(--blu); }
.brand-logo span { font-style: italic; font-weight: 400; }

/* ============================================
   SERVICE TYPES
   ============================================ */
.types-section {
  padding: 80px 0;
  background: #fff;
}
.types-section.dark { background: var(--white); }

.type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.type-row:last-child { margin-bottom: 0; }
.type-row.reverse .type-img-wrap { order: 2; }
.type-row.reverse .type-content  { order: 1; }

.type-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1E3A5F 0%, #0B1F3A 100%);
}
.type-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.type-row:hover .type-img-wrap img { transform: scale(1.05); }

.type-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--amber);
  color: var(--blu);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}

.type-content .type-pre {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.type-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--blu);
  line-height: 1.2;
  margin-bottom: 16px;
}
.type-content p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}
.type-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 24px;
}
.type-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  list-style: none;
}
.type-features li::before {
  content: '\26A1';
  color: var(--amber);
  font-size: 1rem;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  padding: 64px 0;
  background: var(--amber);
  color: var(--blu);
}
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-banner .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  display: block;
}
.stats-banner .stat-label {
  font-size: .9rem;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* ============================================
   GALLERY MASONRY
   ============================================ */
.gallery-grid.masonry {
  grid-auto-rows: 200px;
}
.gallery-grid.masonry .gallery-item:nth-child(5n+1) { grid-row: span 2; }
.gallery-grid.masonry .gallery-item:nth-child(7n+3) { grid-column: span 2; }
.gallery-grid.masonry .gallery-item { aspect-ratio: auto; }

@media (max-width: 768px) {
  .gallery-grid.masonry { grid-auto-rows: 160px; }
  .gallery-grid.masonry .gallery-item:nth-child(5n+1) { grid-row: span 1; }
  .gallery-grid.masonry .gallery-item:nth-child(7n+3) { grid-column: span 1; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: #fff;
}
.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-l);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blu);
  text-align: left;
  transition: var(--transition);
}
.faq-q:hover { color: var(--amber); }
.faq-q .faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.4rem;
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-plus {
  background: var(--amber);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 24px;
}

/* ============================================
   RESPONSIVE — nuove sezioni
   ============================================ */
@media (max-width: 1024px) {
  .process-grid    { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-banner-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .type-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .type-row.reverse .type-img-wrap,
  .type-row.reverse .type-content { order: initial; }
  .type-features { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .brands-strip { gap: 28px; }
  .brand-logo { font-size: 1.2rem; }
  .hero-indicators { bottom: 80px; }
}

/* ============================================
   PAGINA PRENOTAZIONE
   ============================================ */
.booking-intro {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3568 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.booking-intro::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.booking-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.booking-intro .section-eyebrow { color: var(--amber); }
.booking-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 20px;
  color: #fff;
}
.booking-title em {
  font-style: normal;
  color: var(--amber);
}
.booking-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
  list-style: none;
}
.perk-icon {
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--blu);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.booking-perks strong { color: #fff; }

.quick-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.quick-eyebrow {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.quick-phone, .quick-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.quick-phone {
  background: #fff;
  color: var(--blu);
}
.quick-phone:hover { transform: translateY(-2px); }
.quick-phone svg { width: 18px; height: 18px; }
.quick-wa {
  background: #25D366;
  color: #fff;
  margin-bottom: 0;
}
.quick-wa:hover { background: #1da851; transform: translateY(-2px); }
.quick-wa svg { width: 18px; height: 18px; }

/* FORM */
.booking-form-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.booking-form {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(11,31,58,.08);
  border: 1px solid var(--gray-l);
}
.booking-step {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-l);
}
.booking-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--blu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blu);
  margin-bottom: 4px;
}
.step-header p {
  color: var(--gray);
  font-size: .92rem;
}

/* SERVICE PILLS */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  cursor: pointer;
  display: inline-block;
}
.pill input { display: none; }
.pill span {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid var(--gray-l);
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}
.pill:hover span {
  border-color: var(--amber);
  color: var(--blu);
}
.pill input:checked + span {
  background: var(--amber);
  color: var(--blu);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
}

/* CALENDAR */
.calendar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--gray-l);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blu);
  text-transform: capitalize;
}
.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--blu);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cal-nav:hover {
  background: var(--amber);
  color: var(--blu);
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-weekdays span {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  padding: 8px 0;
  letter-spacing: .05em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-cell:hover:not(:disabled):not(.empty) {
  background: rgba(245,158,11,.15);
  color: var(--blu);
}
.cal-cell.today {
  border: 2px solid var(--amber);
  color: var(--amber);
}
.cal-cell.selected {
  background: var(--amber) !important;
  color: var(--blu) !important;
  font-weight: 800;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
}
.cal-cell.past,
.cal-cell.disabled {
  color: var(--gray-l);
  cursor: not-allowed;
}
.cal-cell.empty {
  cursor: default;
  pointer-events: none;
}

/* TIME SLOTS */
.time-slots { margin-top: 24px; }
.time-slots-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blu);
  margin-bottom: 12px;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.time-pill { cursor: pointer; display: block; }
.time-pill input { display: none; }
.time-pill span {
  display: block;
  padding: 14px 18px;
  border: 2px solid var(--gray-l);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  font-size: .82rem;
  color: var(--gray);
  transition: var(--transition);
  line-height: 1.3;
}
.time-pill span strong {
  display: block;
  color: var(--blu);
  font-size: 1rem;
  margin-bottom: 2px;
}
.time-pill:hover span {
  border-color: var(--amber);
}
.time-pill input:checked + span {
  background: var(--blu);
  border-color: var(--blu);
  color: rgba(255,255,255,.7);
}
.time-pill input:checked + span strong { color: #fff; }

/* FORM ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

/* SUBMIT */
.booking-submit {
  text-align: center;
  margin-top: 16px;
}
.submit-info {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 20px;
}
.submit-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-secondary {
  background: var(--blu);
  color: #fff;
  border: 2px solid var(--blu);
}
.btn-secondary:hover {
  background: var(--blu-mid);
  border-color: var(--blu-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,31,58,.25);
}
.submit-disclaimer {
  color: var(--gray);
  font-size: .82rem;
  font-style: italic;
}

/* SUCCESS MODAL */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .3s ease;
}
.success-modal.open { display: flex; }
.success-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: popUp .4s cubic-bezier(.4,0,.2,1);
}
.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(16,185,129,.4);
}
.success-card h3 {
  font-size: 1.6rem;
  color: var(--blu);
  margin-bottom: 12px;
  font-weight: 800;
}
.success-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ERROR HIGHLIGHT */
.form-error {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important;
}
.error-message {
  background: #FEE2E2;
  color: #991B1B;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
}
.error-message.show { display: flex; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .booking-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .booking-intro { padding: 120px 0 50px; }
  .booking-form { padding: 32px 22px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .time-grid { grid-template-columns: 1fr; }
  .submit-actions { flex-direction: column; }
  .submit-actions .btn-large { width: 100%; }
  .cal-cell { font-size: .82rem; }
  .step-header { flex-direction: column; gap: 12px; }
  .booking-title { font-size: 2rem; }
}
