/* =========================================
   MATGLASS.IT — FAST & FURIOUS EDITION
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;600;700;900&display=swap');

/* ---- VARIABILI ---- */
:root {
  --bg:          #080808;
  --bg-card:     #0f0f0f;
  --bg-nav:      #050505;
  --text:        #f0f0f0;
  --text-muted:  #888;
  --accent:      #FF4500;
  --accent2:     #FF6B00;
  --gold:        #FFD700;
  --red:         #CC0000;
  --neon-glow:   0 0 10px rgba(255,69,0,0.8), 0 0 30px rgba(255,69,0,0.4), 0 0 60px rgba(255,69,0,0.2);
  --neon-red:    0 0 10px rgba(204,0,0,0.8), 0 0 30px rgba(204,0,0,0.4);
  --border:      rgba(255,69,0,0.15);
  --nav-h:       72px;
  --max-w:       1200px;
  --radius:      2px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Carbon fiber background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px,
      transparent 1px, transparent 4px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px,
      transparent 1px, transparent 4px
    );
  background-size: 8px 8px;
}
body > * { position: relative; z-index: 1; }

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

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,5,5,0.97);
  border-bottom: 2px solid var(--accent);
  height: var(--nav-h);
  box-shadow: 0 2px 30px rgba(255,69,0,0.3);
}
/* Racing stripe top */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
  animation: stripe-pulse 3s ease-in-out infinite;
}
@keyframes stripe-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.navbar-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,69,0,0.6));
  transition: filter 0.3s;
}
.navbar-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(255,69,0,1));
}
.navbar-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social icons */
.navbar-social { display:flex; gap:10px; align-items:center; }
.navbar-social a {
  width: 34px; height: 34px;
  border-radius: 0;
  border: 1px solid rgba(255,69,0,0.3);
  display:flex; align-items:center; justify-content:center;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.navbar-social a svg { width:16px; height:16px; fill:#fff; }
.navbar-social a:hover {
  background: var(--accent);
  box-shadow: var(--neon-glow);
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,69,0,0.3);
}

/* Nav links */
.navbar-links { display:flex; gap:6px; align-items:center; }
.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  padding: 8px 14px;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
  box-shadow: var(--neon-glow);
}
.nav-link:hover,
.nav-link.active { color: var(--accent); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: rgba(8,8,8,0.98);
  border: 1px solid rgba(255,69,0,0.3);
  border-top: 2px solid var(--accent);
  min-width: 230px;
  display: none;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 8px 40px rgba(255,69,0,0.2);
}
.nav-dropdown:hover .nav-dropdown-menu { display:flex; }
.nav-dropdown-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 18px;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(255,69,0,0.08);
  border-left-color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,69,0,0.4);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  margin-left: 16px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left:0; right:0;
  background: rgba(5,5,5,0.99);
  border-bottom: 2px solid var(--accent);
  z-index: 999;
  flex-direction: column;
  padding: 16px 0;
  box-shadow: 0 8px 40px rgba(255,69,0,0.3);
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 14px 28px;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-menu a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(255,69,0,0.05);
}
.mobile-social {
  display:flex; gap:12px;
  padding: 16px 28px 0;
  border-top: 1px solid rgba(255,69,0,0.15);
  margin-top: 8px;
}
.mobile-social a {
  padding: 0 !important;
  border-left: none !important;
  background: none !important;
}

/* PAGE CONTENT */
.page-content { padding-top: var(--nav-h); }

/* ===================================================
   HERO - HOMEPAGE
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a0a00 0%, #0a0500 40%, #080808 100%);
}
/* Speed lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 60px,
    rgba(255,69,0,0.04) 60px, rgba(255,69,0,0.04) 61px
  );
  animation: speed-lines 0.8s linear infinite;
}
@keyframes speed-lines {
  from { background-position-x: 0; }
  to { background-position-x: 61px; }
}
/* Red glow bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 120px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.35), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,69,0,0.4);
  padding: 6px 20px;
  margin-bottom: 28px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: rgba(255,69,0,0.08);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.hero-title span:first-child {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-title span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 8px;
  color: #fff;
  text-shadow: var(--neon-glow);
  line-height: 1;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-video-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 30px;
  position: relative;
  border: 2px solid rgba(255,69,0,0.4);
  box-shadow: 0 0 40px rgba(255,69,0,0.3), inset 0 0 40px rgba(0,0,0,0.5);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.hero-video-wrap video {
  width: 100%;
  display: block;
}
.hero-caption {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ===================================================
   SECTION TITLES
   =================================================== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  margin-top: 8px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
  box-shadow: 0 0 12px rgba(255,69,0,0.8);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 16px auto 0;
  letter-spacing: 0.5px;
}
.services-intro {
  text-align: center;
  padding: 80px 24px 50px;
}

/* ===================================================
   SERVICE CARDS — HOMEPAGE GRID
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(255,69,0,0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,69,0,0.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-card img {
  width: 100%; height: 220px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 0.3s, transform 0.4s;
}
.service-card:hover img { filter: saturate(1.1); transform: scale(1.04); }
.service-card-body {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,69,0,0.03), transparent);
}
.service-card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================
   GALLERY / SLIDER
   =================================================== */
.gallery-section {
  background: #050505;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 20px,
    rgba(255,69,0,0.02) 20px, rgba(255,69,0,0.02) 21px
  );
}
.gallery-tagline {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.gallery-tagline h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}
.gallery-tagline h2 span { color: var(--accent); }

.slider-wrapper {
  overflow: hidden;
  padding: 0 24px;
  position: relative;
}
.slider-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display:none; }
.slide-item {
  flex: 0 0 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,69,0,0.15);
}
.slide-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  filter: saturate(0.7);
  transition: all 0.4s;
}
.slide-item:hover img { filter: saturate(1.2); transform: scale(1.05); }
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.slider-btn {
  background: transparent;
  border: 1px solid rgba(255,69,0,0.5);
  color: var(--accent);
  font-size: 1.4rem;
  width: 50px; height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-family: inherit;
}
.slider-btn:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--neon-glow);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,69,0,0.12);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px rgba(255,69,0,0.5);
}
.tc-img {
  width: 100%; height: 200px;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.3s;
}
.testimonial-card:hover .tc-img { filter: saturate(1); }
.tc-body {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,69,0,0.04), transparent);
}
.tc-text {
  font-style: italic;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.tc-service {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}
.tc-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.tc-link:hover { color: #fff; }

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: linear-gradient(90deg, #0d0000, #1a0500, #0d0000);
  border-top: 1px solid rgba(255,69,0,0.3);
  border-bottom: 1px solid rgba(255,69,0,0.3);
  padding: 40px 24px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--accent);
  text-shadow: var(--neon-glow);
  line-height: 1;
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0000 0%, #1a0500 50%, #0d0000 100%);
  border-top: 2px solid rgba(255,69,0,0.3);
  border-bottom: 2px solid rgba(255,69,0,0.3);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 40px,
    rgba(255,69,0,0.03) 40px, rgba(255,69,0,0.03) 41px
  );
}
.cta-section h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-section h2 span:first-child {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 2px;
  color: #ccc;
}
.cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 4px;
  color: var(--accent);
  text-shadow: var(--neon-glow);
}
.cta-section h2 span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 5px;
  color: var(--gold);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #030303;
  border-top: 1px solid rgba(255,69,0,0.2);
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 36px;
  filter: brightness(0.8) drop-shadow(0 0 6px rgba(255,69,0,0.4));
}
.footer-address {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.7;
}
.footer-right {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.7;
}
.footer-right a {
  color: var(--accent);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--gold); }

/* ===================================================
   PAGE HERO (pagine interne)
   =================================================== */
.page-hero {
  padding: 100px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #150500 0%, #0d0300 40%, #080808 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: 20px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 50px,
    rgba(255,69,0,0.04) 50px, rgba(255,69,0,0.04) 51px
  );
}
.page-hero .badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,69,0,0.4);
  padding: 5px 18px;
  margin-bottom: 20px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: rgba(255,69,0,0.06);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255,69,0,0.5);
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

/* ===================================================
   CF — COSA FACCIAMO CARDS
   =================================================== */
.cf-services-grid {
  max-width: var(--max-w);
  margin: 60px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cf-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  background: var(--bg-card);
  border: 1px solid rgba(255,69,0,0.12);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.cf-card:nth-child(even) { grid-template-columns: 1fr 400px; }
.cf-card:nth-child(even) .cf-card-img { order: 2; }
.cf-card:nth-child(even) .cf-card-body { order: 1; }
.cf-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
  box-shadow: 2px 0 12px rgba(255,69,0,0.4);
}
.cf-card:hover { box-shadow: 0 0 40px rgba(255,69,0,0.2); }
.cf-card-img {
  width: 100%; height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.4s, transform 0.4s;
}
.cf-card:hover .cf-card-img { filter: saturate(1.1); transform: scale(1.03); }
.cf-card-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.cf-card-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1;
}
.cf-card-body h2::after {
  content: '';
  display: block;
  margin-top: 10px;
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.cf-card-body p {
  color: #bbb;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.cf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 12px 28px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.2s;
  align-self: flex-start;
  box-shadow: var(--neon-glow);
}
.cf-card-link::after { content: '▖'; font-size: 0.7rem; }
.cf-card-link:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

/* ===================================================
   DOVE SIAMO
   =================================================== */
.dove-siamo-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}
.dove-siamo-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 8px;
}
.address {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.map-container {
  border: 2px solid rgba(255,69,0,0.3);
  box-shadow: 0 0 40px rgba(255,69,0,0.15);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  overflow: hidden;
}
.map-container iframe { filter: invert(90%) hue-rotate(180deg); }
.map-btns {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.map-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 14px 30px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: var(--neon-glow);
  transition: all 0.2s;
}
.map-btn-primary:hover { background: var(--gold); }
.map-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(255,69,0,0.4);
  padding: 14px 30px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.2s;
}
.map-btn-secondary:hover {
  background: rgba(255,69,0,0.1);
  box-shadow: var(--neon-glow);
}

/* ===================================================
   CONTATTACI
   =================================================== */
.contact-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,69,0,0.04);
  border: 1px solid rgba(255,69,0,0.25);
  border-left: 3px solid var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--neon-glow);
  background: rgba(255,69,0,0.07);
}
.form-group select option { background: #0f0f0f; }
.form-group textarea { min-height: 120px; resize: vertical; }
.services-check-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.services-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border: 1px solid rgba(255,69,0,0.1);
  transition: all 0.2s;
}
.check-item:hover {
  border-color: rgba(255,69,0,0.4);
  color: #fff;
  background: rgba(255,69,0,0.05);
}
.check-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px; height: 16px;
  border: none;
  flex-shrink: 0;
}
.btn-submit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  box-shadow: var(--neon-glow);
  transition: all 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.7);
  letter-spacing: 7px;
}

/* ===================================================
   PRIVACY
   =================================================== */
.privacy-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.privacy-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--accent);
  margin: 36px 0 12px;
}
.privacy-section h2:first-child { margin-top: 0; }
.privacy-section p,
.privacy-section li {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-section ul { padding-left: 20px; }
.privacy-section li { list-style: disc; }
.privacy-section a { color: var(--accent); }
.privacy-section a:hover { color: var(--gold); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .cf-card,
  .cf-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .cf-card:nth-child(even) .cf-card-img,
  .cf-card:nth-child(even) .cf-card-body { order: unset; }
  .cf-card-img { min-height: 220px; }
  .cf-card-body { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-center { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .slide-item { flex: 0 0 280px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .map-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-title span:last-child { font-size: clamp(3rem, 18vw, 5rem); }
  .page-hero h1 { font-size: 3rem; }
}
