/* RESET DI BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TIPOLOGIA DI TESTO E COLORI DI BASE */
:root {
  --bg-body: #0b0c10;
  --bg-dark: #111219;
  --bg-card: #171821;
  --accent: #0077cc;
  --accent-light: #33a0ff;
  --text-main: #f4f4f4;
  --text-muted: #b0b0b0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --danger: #e53935;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
  --max-width: 1100px;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at top, #1b1d29 0%, #050509 60%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CONTAINER GENERICO */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HEADER FISSO */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #000, #02030b 40%, #021626);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.brand-text h1 {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slogan {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-style: italic;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  transform: translateY(-1px);
}

.main-nav a.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 119, 204, 0.6);
}

/* NAV MOBILE BUTTON */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO HOME */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 60% 40%, #0a1628 0%, #050509 60%, #000 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.12), transparent 65%);
  top: -100px;
  right: -200px;
  pointer-events: none;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.45) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0 60px;
}

.hero-text h2 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.hero-text p {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO CARD */
.hero-highlight .hero-card {
  background: linear-gradient(145deg, #171821, #101119);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 12px;
}

.hero-card li {
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-card li span {
  color: var(--accent-light);
  font-weight: bold;
  margin-right: 4px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SEZIONI GENERICHE */
.section {
  padding: 60px 0;
}

.section-dark {
  background: linear-gradient(180deg, #090910, #050509);
}

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

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.about-text p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* INFO CARD */
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), color var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-med);
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 119, 204, 0.6);
}

.btn.primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(51, 160, 255, 0.8);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn.ghost:hover {
  background: rgba(0, 119, 204, 0.15);
  transform: translateY(-1px);
}

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* HOME SERVICES PREVIEW */
.home-services .services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-preview {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  border: 1px solid var(--border-soft);
}

.service-preview h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-preview p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-cta {
  margin-top: 24px;
  text-align: center;
}

/* HIGHLIGHT GALLERY HOME */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-main);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.highlight-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.highlight-content {
  padding: 12px 12px 10px;
}

.highlight-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.highlight-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.highlight-link {
  font-size: 0.85rem;
  color: var(--accent-light);
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-color: var(--accent);
}

/* CONTACT STRIP HOME */
.contact-strip {
  background: linear-gradient(90deg, #02101c, #020309);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-strip-text h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.contact-strip-text p {
  color: var(--text-muted);
}

.contact-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PAGE HERO GENERICO */
.page-hero {
  position: relative;
  padding: 70px 0 50px;
  background: radial-gradient(circle at top, #141625 0%, #050509 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 119, 204, 0.25), transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero-content p {
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

/* VARIANTI HERO */
.page-hero-services { }
.page-hero-story { }
.page-hero-gallery { }
.page-hero-contact { }
.page-hero-italjet { }
.page-hero-px { }
.page-hero-special { }
.page-hero-booster { }

/* STORY PAGE */
.story-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 26px;
}

.story-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.story-aside .info-card {
  margin-bottom: 12px;
}

/* METHOD */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-step {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

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

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-soft);
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* GALLERIA GENERICA */
.gallery-section .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med), filter var(--transition-med);
}

.gallery img:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

/* GALLERY BUTTONS */
.gallery-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.gallery-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.98rem;
  transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(51, 160, 255, 0.7);
}

/* PROJECT PAGE LAYOUT */
.project-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.project-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.project-aside .info-card {
  margin-bottom: 12px;
}

.project-list {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.project-list li {
  margin-bottom: 4px;
}

/* CONTACTS PAGE */
.contacts-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 26px;
}

.contacts-info p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  margin-bottom: 14px;
}

.contact-list li {
  margin-bottom: 6px;
  color: var(--text-main);
}

.contact-label {
  font-weight: bold;
  color: var(--accent-light);
  margin-right: 4px;
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CONTACT FORM */
.contacts-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  border: 1px solid var(--border-soft);
}

.contacts-form-wrapper h3 {
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0b0c12;
  border: 1px solid #262733;
  border-radius: 6px;
  padding: 8px 9px;
  color: var(--text-main);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 119, 204, 0.5);
  background: #0d1018;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  transform: scale(0.96);
  animation: zoomIn 0.22s ease forwards;
}

@keyframes zoomIn {
  to { transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-caption {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

/* WHATSAPP BUTTON */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ORARI LIST */
.orari-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.orari-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  font-size: 0.93rem;
}
.orari-list li.chiuso {
  border-left-color: #444;
  opacity: 0.45;
}
.orari-list .orario-giorno { color: var(--text-muted); }
.orari-list .orario-ora    { color: var(--text-main); font-weight: 600; }

/* BOTTONE WHATSAPP INLINE */
.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  box-shadow: 0 0 18px rgba(37,211,102,0.5);
  transform: translateY(-1px);
}

/* CONTACT ACTIONS */
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* CONTACTS SINGLE COLUMN */
.contacts-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 600px;
}


/* FOOTER */
.site-footer {
  margin-top: auto;
  padding: 18px 0;
  background: #020308;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-slogan {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-copy p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

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

  .about-grid,
  .story-layout,
  .services-grid,
  .method-grid,
  .values-grid,
  .project-layout,
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 8px 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #02030a;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 18px;
    border-radius: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 65vh;
  }

  .hero-content {
    padding: 60px 0 40px;
  }

  .services-grid,
  .home-services .services-preview-grid,
  .highlight-grid,
  .values-grid,
  .method-grid,
  .gallery-section .gallery,
  .project-layout,
  .about-grid,
  .story-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .page-hero-content h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 50px 0;
  }
}

/* ===== RECENSIONI ===== */
.reviews-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,119,204,0.18);
}

.review-stars {
  color: #f4c542;
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-google-badge {
  text-align: center;
  margin-top: 28px;
}

.review-google-badge a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(51,160,255,0.3);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.review-google-badge a:hover {
  background: rgba(51,160,255,0.1);
  border-color: var(--accent-light);
}

/* ===== GOOGLE MAPS ===== */
.map-section {
  padding: 0;
}

.map-wrapper {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}

/* ===== ORARI / INFO CONTATTI ===== */
.contact-info-strip {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 22px;
}

.contact-info-strip h3 {
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-strip ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-info-strip li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-info-strip li strong {
  color: var(--text-main);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    height: 260px;
  }
}

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

/* ===== FIX SPAZIATURA SEZIONE CTA SERVIZI ===== */
.section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section-cta-inner h2 {
  margin-bottom: 8px;
}

.section-cta-inner p {
  color: var(--text-muted);
  line-height: 1.6;
}

.section-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-cta-actions {
    margin-top: 8px;
  }
}

/* ===== FIX BOTTONI CTA SERVIZI ===== */
.section-cta-inner > div:first-child {
  margin-bottom: 0;
}

.section-cta-inner .section-cta-actions {
  margin-top: 0;
  padding-top: 0;
  align-self: center;
}

/* Quando va a capo su schermi stretti, aggiunge spazio sopra i bottoni */
@media (max-width: 900px) {
  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-cta-inner .section-cta-actions {
    margin-top: 20px;
  }
}


/* ===== FIX MOBILE HEADER - brand testo più piccolo ===== */
@media (max-width: 480px) {
  .logo {
    width: 44px;
    height: 44px;
  }

  .brand-text h1 {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .slogan {
    font-size: 0.72rem;
  }

  .brand {
    gap: 8px;
  }

  .header-inner {
    gap: 8px;
  }
}

/* ===== SEZIONE SIGNIFICATO LOGO ===== */
.logo-meaning {
  background: var(--bg-dark);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
  position: relative;
}

.logo-meaning-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.logo-meaning h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--accent-light);
  letter-spacing: 0.04em;
}

.logo-meaning p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.logo-meaning p:last-child {
  margin-bottom: 0;
}

.logo-meaning .logo-meaning-signature {
  margin-top: 20px;
  color: var(--text-main);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
}

