/* =============================================
   GIANNI CHIACCHIERONI – PREMIUM AUTOMOTIVE TRANSPORT
   Design System & Stylesheet
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: #0d0d0f;
  color: #e8e4df;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- DESIGN TOKENS ---- */
:root {
  --red: #c8102e;
  --red-light: #e8203f;
  --red-dark: #9b0c23;
  --green: #2d6a4f;
  --green-light: #40916c;
  --anthracite: #1a1a1f;
  --anthracite-light: #252530;
  --anthracite-mid: #2f2f3a;
  --surface: #1e1e26;
  --surface-raised: #28283380;
  --text-primary: #f0ece7;
  --text-secondary: #a09890;
  --text-muted: #6b6570;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(200,16,46,0.3);
  --gold: #c9a84c;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(200,16,46,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--anthracite); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
#site-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition), transform var(--transition), filter var(--transition);
}
.navbar.scrolled .logo-img {
  height: 58px;
}
.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 16px rgba(200,16,46,0.6));
}
.logo-img--footer {
  height: 120px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,16,46,0.4);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

/* ---- LANGUAGE SWITCHER ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lang-switcher {
  position: relative;
  z-index: 1002;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 30, 38, 0.85);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.35rem 0.65rem;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn:focus-visible {
  border-color: var(--red);
  background: rgba(45, 45, 58, 0.95);
  box-shadow: 0 2px 14px rgba(200, 16, 46, 0.25);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.flag-svg {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.lang-arrow {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
  color: var(--red);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1e1e26;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65), 0 0 25px rgba(200, 16, 46, 0.15);
  min-width: 160px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1010;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}
.lang-option:hover {
  background: rgba(200, 16, 46, 0.15);
  color: var(--text-primary);
}
.lang-option.active {
  background: rgba(200, 16, 46, 0.25);
  color: #fff;
  font-weight: 700;
  border-left: 2px solid var(--red);
}
.mobile-lang-row {
  display: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(3px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,15,0.85) 0%,
    rgba(13,13,15,0.4) 50%,
    rgba(200,16,46,0.1) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to bottom, transparent, #0d0d0f);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  animation: hero-fade-in 1.2s ease-out;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff7a8a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title-accent {
  color: var(--red);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label--light { color: #ff8090; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-title--light { color: #fff; }
.section-title em { font-style: italic; color: var(--red); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
}
.section-subtitle--light { color: rgba(255,255,255,0.65); }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-subtitle { margin: 0 auto; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: 7rem 0;
  background: var(--anthracite);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-image-col { position: relative; }
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.about-img:hover { transform: scale(1.02); }
.about-image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,16,46,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-cars-tag {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.car-tag {
  background: rgba(13,13,15,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.car-emoji { font-size: 1rem; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.about-text strong { color: var(--text-primary); }
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pillar-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.pillar-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 7rem 0;
  background: var(--anthracite-light);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-card--featured {
  border-color: rgba(200,16,46,0.3);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(200,16,46,0.05) 100%);
}
.service-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 4px 40px rgba(200,16,46,0.25);
}
.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .card-image img { transform: scale(1.05); }
#service-custode-epoca .card-image img { object-position: center 65%; }
#service-vetroresina .card-image img { object-position: center 60%; }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30,30,38,0.95));
}
.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--red);
  opacity: 0.7;
}
.card-icon { font-size: 1.75rem; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.card-desc strong { color: var(--text-primary); }
.card-badge-featured {
  display: inline-block;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff8090;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.card-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- MAIN SERVICE CARD (Soccorso Stradale) ---- */
.service-card--main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-color: rgba(200,16,46,0.45);
  background: linear-gradient(135deg, rgba(200,16,46,0.07) 0%, var(--surface) 60%);
  min-height: 340px;
}
.service-card--main:hover {
  border-color: var(--red);
  box-shadow: 0 8px 50px rgba(200,16,46,0.3);
}
.service-card--main .card-image {
  height: 100%;
  min-height: 300px;
}
.service-card--main .card-image--tall {
  height: 100%;
}
.service-card--main .card-content {
  padding: 2.5rem;
  justify-content: center;
}
.service-card--main .card-title {
  font-size: 1.5rem;
}
.service-card--main .card-desc {
  font-size: 0.95rem;
  max-width: 480px;
}
.service-card--main .card-number {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .service-card--main {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }
  .service-card--main .card-image {
    height: 220px;
  }
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.trust-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0f 0%, #1a0308 50%, #0d0d0f 100%);
  z-index: 0;
}
.trust-bg::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,16,46,0.08) 0%, transparent 60%);
  animation: trust-glow 8s ease-in-out infinite alternate;
}
@keyframes trust-glow {
  from { transform: translate(0, 0); }
  to { transform: translate(5%, 3%); }
}
.trust .container { position: relative; z-index: 1; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.trust-item:hover {
  background: rgba(200,16,46,0.06);
  border-color: rgba(200,16,46,0.25);
  transform: translateY(-4px);
}
.trust-item:hover::before { opacity: 1; }
.trust-icon { font-size: 2rem; margin-bottom: 1rem; }
.trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   QUOTE SECTION
   ============================================= */
.quote-section {
  padding: 5rem 0;
  background: var(--anthracite);
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.quote-marks {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: -1rem;
  left: 2rem;
  line-height: 1;
  user-select: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-author-img-wrapper {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.quote-author-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.quote-author-info {
  display: flex;
  flex-direction: column;
}
.quote-author-info strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}
.quote-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  padding: 7rem 0;
  background: var(--anthracite-light);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  color: var(--text-secondary);
  margin: 1rem 0 2rem;
  font-size: 1rem;
}
.contact-desc strong { color: var(--text-primary); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.contact-item-icon { font-size: 1.4rem; }
.contact-item-text {
  display: flex;
  flex-direction: column;
}
.contact-item-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ---- CONTACT FORM ---- */
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6570' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--anthracite); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}
.form-privacy a { color: var(--red); transition: color var(--transition); }
.form-privacy a:hover { color: var(--red-light); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #090909;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1rem;
}
.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--red); }
.footer-contact-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.footer-phone, .footer-email {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-phone:hover, .footer-email:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--red); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,12,0.98); backdrop-filter: blur(20px); justify-content: center; align-items: center; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { font-size: 1.5rem; padding: 1rem 0; }
  .nav-links .nav-link.nav-cta { margin-top: 1rem; font-size: 1rem; padding: 0.8rem 2rem; }
  .mobile-lang-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    border: 1px solid var(--border);
  }
  .mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.65rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
  }
  .mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .mobile-lang-btn.active {
    background: rgba(200, 16, 46, 0.25);
    border-color: var(--red);
    box-shadow: 0 0 12px rgba(200, 16, 46, 0.5);
  }
  .logo-img { height: 52px; }
  .lang-switcher { margin-left: 0; }
  .nav-burger { display: flex; z-index: 1001; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { display: none; }
  .about-cars-tag { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .quote-card { padding: 2rem 1.75rem; }
  .quote-marks { font-size: 5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 60px; height: 1px; }
}
