:root {
  --primary-color: #8bbc21;
  --primary-light: #f4f8ec;
  --primary-dark: #6a9416;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px; /* Compense la navbar fixe */
}

body {
  background-color: var(--primary-light);
  color: var(--text-color);
  line-height: 1.5;
  padding-top: 105px; /* Space for fixed navbar */
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 17, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: visible;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 11, 13, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8rem;
  align-items: center;
  padding: 0.8rem 2.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo img {
  height: 115px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1001;
  filter: drop-shadow(0 0 8px rgba(139, 188, 33, 0.35));
  transition: filter 0.3s ease;
}

.navbar-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(139, 188, 33, 0.7));
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

/* Regular nav links with animated underline */
.nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA Contact button */
.btn-nav-contact {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(139, 188, 33, 0.35);
}

.btn-nav-contact::after {
  display: none !important;
}

.btn-nav-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 188, 33, 0.55);
  color: var(--white) !important;
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navbar-container {
    justify-content: space-between;
    gap: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 13, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    border-top: 1px solid rgba(139, 188, 33, 0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transform: translateY(-110%);
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
    padding: 1.2rem 0;
  }

  .btn-nav-contact {
    display: inline-block;
  }
}


/* Header/Banner Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* Slideshow slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: 110%;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 4.5s ease-out forwards;
}

/* Freeze zoom when slide is leaving to avoid snap-back */
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.5s ease-in-out;
}

/* Dark overlay on top of slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: fit-content;
  padding: 3.5rem 4.5rem;
  animation: fadeInDown 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Innovative & Classy Asymmetrical Panel */
  background: linear-gradient(135deg, rgba(10, 11, 13, 0.65), rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px 8px 60px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-color);
  border-right: 4px solid var(--primary-dark);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(139, 188, 33, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  opacity: 0.85;
  max-width: 480px;
  text-align: center;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 6px 20px rgba(139, 188, 33, 0.45), 0 2px 6px rgba(0,0,0,0.3);
  animation: pulseCTA 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 35px rgba(139, 188, 33, 0.6), 0 4px 10px rgba(0,0,0,0.3);
  animation: none;
}

.btn-contact:hover::before {
  opacity: 1;
}

@keyframes pulseCTA {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(139, 188, 33, 0.45), 0 2px 6px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 6px 35px rgba(139, 188, 33, 0.8), 0 2px 6px rgba(0,0,0,0.3);
  }
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: var(--text-color);
  margin-bottom: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 1rem;
}

.feature-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(139, 188, 33, 0.05), transparent);
  transition: height 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(139, 188, 33, 0.12);
  border-color: rgba(139, 188, 33, 0.2);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-light), #ffffff);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  box-shadow: 0 8px 16px rgba(139, 188, 33, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-dark);
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenBurns {
  from {
    transform: scale(1);
    background-size: 110%;
  }
  to {
    transform: scale(1.12);
    background-size: 110%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #0d0f12, #141810);
  padding: 3.5rem 2rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 2rem;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ===== SERVICES OVERVIEW ===== */
.overview-section {
  padding: 6rem 2rem;
  background: #f0f4e8;
}

.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,188,33,0.12);
  border: 1px solid rgba(139,188,33,0.3);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.overview-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.overview-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.overview-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,188,33,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,188,33,0.25);
  box-shadow: 0 14px 35px rgba(139,188,33,0.13);
}

.overview-card:hover::before { opacity: 1; }

.overview-card-cta {
  background: linear-gradient(135deg, #0d0f12, #1a2010);
  border-color: transparent;
}

.ov-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.ov-icon-cta {
  background: rgba(139,188,33,0.2);
  color: var(--primary-color);
}

.overview-card:hover .ov-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}

.overview-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.overview-card-cta h3 { color: #fff; }

.overview-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.overview-card-cta p { color: rgba(255,255,255,0.55); }

.ov-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ov-link i { font-size: 0.7rem; transition: transform 0.2s ease; }
.overview-card:hover .ov-link i { transform: translateX(4px); }

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6rem 2rem;
  background: #fff;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.ps-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.ps-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(139,188,33,0.3);
  transition: transform 0.3s ease;
}

.process-step:hover .ps-icon { transform: translateY(-4px) scale(1.05); }

.process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.process-arrow {
  color: rgba(139,188,33,0.4);
  font-size: 1.2rem;
  padding-top: 2.2rem;
  flex-shrink: 0;
}

/* ===== CATALOG SECTION ===== */
.catalog-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0c0f, #111508);
  position: relative;
  overflow: hidden;
}

.catalog-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,188,33,0.08), transparent 65%);
  pointer-events: none;
}

.catalog-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.catalog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,188,33,0.12);
  border: 1px solid rgba(139,188,33,0.3);
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 100px;
  width: fit-content;
}

.catalog-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.catalog-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.catalog-text strong { color: rgba(255,255,255,0.85); }

.catalog-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.catalog-perks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.catalog-perks li i {
  color: var(--primary-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(139,188,33,0.4);
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.btn-catalog:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(139,188,33,0.6);
}

/* Catalog Card Mock */
.catalog-visual { flex-shrink: 0; }

.catalog-card-mock {
  width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.ccm-header {
  background: rgba(255,255,255,0.05);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ccm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ccm-dot.red    { background: #ff5f57; }
.ccm-dot.orange { background: #febc2e; }
.ccm-dot.green  { background: #28c840; }

.ccm-header span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-left: 0.5rem;
}

.ccm-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.ccm-car-icon {
  font-size: 3rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 12px rgba(139,188,33,0.4));
}

.ccm-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.ccm-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ccm-tags span {
  padding: 0.25rem 0.7rem;
  background: rgba(139,188,33,0.12);
  border: 1px solid rgba(139,188,33,0.25);
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 100px;
}

.ccm-btn {
  width: 100%;
  padding: 0.7rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: url('assets/img/mechanic3.jpg') center/cover fixed;
  padding: 8rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 8, 0.88); /* dark overlay */
  backdrop-filter: blur(8px);
}

.contact-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  z-index: 2;
}

.contact-frame {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(139,188,33,0.15);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,188,33,0.15);
  border: 1px solid rgba(139,188,33,0.3);
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.contact-frame-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.contact-frame-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(139,188,33,0.3);
  background: rgba(0, 0, 0, 0.4);
}

.cb-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.2rem;
  background: rgba(139,188,33,0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.contact-box p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.contact-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: var(--primary-color);
}

.contact-frame-footer {
  text-align: center;
}

.btn-contact-rdv {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(139,188,33,0.4);
  transition: all 0.3s ease;
  animation: pulseCTA 2.5s ease-in-out infinite;
}

.btn-contact-rdv:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(139,188,33,0.6);
  animation: none;
}

@keyframes pulseCTA {
  0% { box-shadow: 0 0 0 0 rgba(139,188,33,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(139,188,33,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,188,33,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-inner { gap: 3rem; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-inner { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { min-width: 140px; padding: 1rem; }
  .overview-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .catalog-inner { flex-direction: column; gap: 3rem; }
  .catalog-card-mock { width: 100%; max-width: 300px; margin: 0 auto; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-frame { padding: 2.5rem 1.5rem; }
  .contact-section { padding: 5rem 1rem; }
}

/* ===== DYNAMIC BUBBLE ===== */
.dynamic-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(15, 18, 13, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 188, 33, 0.4);
    border-radius: 50px;
    padding: 0.6rem 1.2rem 0.6rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(139,188,33,0.2);
    z-index: 1000;
    width: 400px;
    transition: all 0.3s ease;
}

.bubble-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(139,188,33,0.4);
}

.bubble-content {
    position: relative;
    flex: 1;
    height: 40px;
}

.bubble-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-20%);
    opacity: 0;
    visibility: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.3;
    transition: all 0.5s ease;
    pointer-events: none;
}

.bubble-text.active {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bubble-text strong {
    color: var(--primary-color);
}

.bubble-text a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 3px;
    font-weight: 600;
}

.bubble-text a:hover {
    color: var(--primary-color);
}

.bubble-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.2rem;
    margin-left: 0.5rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .dynamic-bubble {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        border-radius: 16px;
        padding: 0.8rem;
    }
    .bubble-text {
        font-size: 0.8rem;
    }
}
