/* ========================================
   COMMUNE PAGE - STYLES MODERNES v1.0
   Design: Modern, Clean, Conversion-focused
   ======================================== */

/* === HERO COMMUNE === */
.hero-commune {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: visible;
  min-height: 700px;
  display: flex;
  align-items: center;
}

/* Overlay noir semi-transparent sur l'image */
.hero-commune .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-commune::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
}

.hero-commune .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-commune-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(15px);
  padding: 2.5rem var(--spacing-xl);
  border-radius: 24px;
}

/* Badge localisation */
.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.6);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.badge-location svg {
  width: 16px;
  height: 16px;
  color: #DC2626;
  filter: brightness(1.5);
}

/* Titre Hero */
.hero-commune-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 var(--spacing-md);
  color: white;
}

.hero-commune-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats visuelles */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 160px;
}

.stat-icon {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

/* Stat 24/7 en vert */
.stat-item-availability .stat-value {
  color: #10B981 !important;
  font-weight: 800 !important;
}

/* Stat Google Hero (cliquable) */
.stat-item-google-hero {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stat-item-google-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-google-logo {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Force taille sur tous les contextes */
.stat-item-google-hero img,
.stat-item-google-hero .hero-google-logo {
  width: 24px !important;
  height: 24px !important;
}

/* CTA Hero */
.hero-commune-cta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #EA580C 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.btn-cta-hero .btn-icon {
  font-size: 1.3rem;
  animation: ring 2s ease-in-out infinite;
}

.btn-secondary-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-secondary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-secondary-hero:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* Layout 2 colonnes déplacé dans shared.css */

/* === SECTIONS DE CONTENU === */
.content-section {
  margin-bottom: var(--spacing-3xl);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #DC2626;
  margin-bottom: var(--spacing-xs);
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin: 0 0 var(--spacing-lg) 0;
}

/* Section Introduction */
.intro-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A5568;
}

/* Paragraphe 0 - Accroche SEO mot-clé */
.intro-content p.intro-kw {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.intro-content p:first-child {
  font-size: 1.2rem;
  color: #2D3748;
  font-weight: 500;
}

/* Liens services dans intro_autorite */
.intro-content a {
  color: #DC2626;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.intro-content a:hover {
  color: #B91C1C;
  border-bottom-color: #DC2626;
}

/* === SERVICES CARDS === */
.services-commune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.service-commune-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.service-commune-card:hover {
  border-color: #DC2626;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  transform: translateY(-4px);
}

.service-commune-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
}

.service-commune-card .service-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-commune-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 var(--spacing-sm);
}

.service-commune-card p {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 var(--spacing-md);
  flex-grow: 1;
}

.service-commune-card .service-link {
  color: #DC2626;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-commune-card:hover .service-link {
  gap: 10px;
}

/* === WHY US CARDS === */
.why-commune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.why-commune-card {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
  border-left: 4px solid #DC2626;
  border-radius: 8px;
  padding: var(--spacing-lg);
}

.why-commune-card .why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.why-commune-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 var(--spacing-sm);
}

.why-commune-card p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* === ZONES VOISINES === */
.zones-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: var(--spacing-lg);
}

.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zone-tag-commune {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 2px solid #E5E7EB;
  padding: 10px 18px;
  border-radius: 100px;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zone-tag-commune:hover {
  border-color: #DC2626;
  background: #FEF2F2;
  color: #DC2626;
  transform: translateY(-2px);
}

/* === SECTION TARIFS === */
.tarif-info-box {
  display: flex;
  gap: var(--spacing-md);
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border-left: 4px solid #F97316;
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.tarif-info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.tarif-info-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 var(--spacing-sm);
}

.tarif-info-content p {
  color: #78350F;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* CTA Devis Box */
.devis-cta-box {
  background: linear-gradient(135deg, rgba(254, 252, 232, 0.3) 0%, rgba(254, 249, 195, 0.4) 50%, rgba(254, 243, 199, 0.5) 100%);
  border-radius: 12px;
  padding: var(--spacing-lg) var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  text-align: center;
}

.devis-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 var(--spacing-sm);
}

.devis-cta-content p {
  color: #374151;
  font-size: 1rem;
  margin: 0 0 var(--spacing-md);
  line-height: 1.5;
}

.btn-devis-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F97316 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-devis-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.btn-devis-cta .btn-icon {
  font-size: 1.1rem;
}

/* === CTA FINAL === */
.cta-final-commune {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  margin-top: var(--spacing-3xl);
}

.cta-final-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin: 0 0 var(--spacing-md);
  line-height: 1.2;
}

.cta-final-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--spacing-xl);
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #EA580C 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-cta-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.btn-cta-final .btn-icon {
  font-size: 1.4rem;
}


@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }

  .hero-commune-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-sm);
  }

  .btn-cta-hero,
  .btn-secondary-hero,
  .hero-btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 24px;
  }

  .services-commune-grid {
    grid-template-columns: 1fr;
  }

  .why-commune-grid {
    grid-template-columns: 1fr;
  }

  .tarif-info-box {
    flex-direction: column;
    text-align: center;
  }

  .sidebar {
    gap: var(--spacing-md);
  }

  .devis-cta-box {
    padding: var(--spacing-md);
  }

  .btn-devis-cta,
  .btn-cta-final {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 24px;
  }
}

/* Breadcrumb styles are now in templates/components/breadcrumb.html */

/* ========================================
   SECTIONS v2.0 - CONTENU ENRICHI SEO
   ======================================== */

/* === SECTION "ON CONNAÎT [COMMUNE]" === */
.section-on-connait {
  margin-bottom: var(--spacing-2xl);
}

.section-on-connait h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.intro-on-connait,
.conclusion-on-connait {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: var(--spacing-lg);
}

.conclusion-on-connait {
  margin-top: var(--spacing-lg);
  padding-left: var(--spacing-md);
  border-left: 3px solid var(--red-primary);
  color: var(--gray-dark);
}

/* Grille Quartiers - Design épuré liste */
.quartiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.quartier-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quartier-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-primary);
}

.quartier-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red-primary);
  stroke-width: 2.5;
}

.quartier-nom {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.quartier-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-dark);
  margin: 0;
}

/* === SECTION PARKINGS === */
.section-parkings {
  background: #FFF9F5;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  border-left: 3px solid var(--orange);
}

.section-parkings h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
}

.section-parkings > p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: var(--spacing-md);
}

.parkings-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.parking-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border-radius: 6px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.parking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.parking-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
}

.parking-nom {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.parkings-conclusion {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-dark);
  margin: 0;
}

/* === SECTION SERVICES PAR CATÉGORIES v2.0 - Grille 2 colonnes colorée === */

/* Texte intro services */
.services-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #374151; /* Gris foncé */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur desktop */
  gap: 1.25rem; /* Espacement réduit */
  margin-bottom: var(--spacing-lg);
}

/* Mobile : 1 colonne */
@media (max-width: 768px) {
  .services-categories {
    grid-template-columns: 1fr;
  }
}

.service-category {
  background: #FAFAFA; /* Fond gris très léger par défaut */
  border-radius: 12px;
  padding: 1.25rem;
  border-left: 4px solid var(--red-primary); /* Bordure gauche colorée par défaut */
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-category:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.1); /* Fond rouge transparent par défaut */
  color: var(--red-primary);
  flex-shrink: 0;
}

.category-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.category-titre {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.category-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem; /* Espacement réduit entre services */
}

.service-item {
  margin: 0;
  position: relative;
  padding-left: 1rem;
}

/* Puce colorée avant chaque service */
.service-item::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.125rem; /* Ajustement vertical pour aligner avec le texte */
  color: var(--red-primary);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5; /* Alignement avec le line-height du texte */
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-dark);
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: var(--black);
}

.service-link strong {
  color: var(--black);
  font-weight: 600;
}

/* === COULEURS PAR CATÉGORIE - Proposition A (3 couleurs) === */

/* JAUNE #F59E0B - Pannes classiques (Batterie + Pneus) */
.service-category.cat-jaune {
  background: rgba(245, 158, 11, 0.04);
  border-left-color: #F59E0B;
}
.service-category.cat-jaune .category-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.service-category.cat-jaune .service-item::before {
  color: #F59E0B;
}

/* ORANGE #F97316 - Assistance rapide (Carburant + Accès) */
.service-category.cat-orange {
  background: rgba(249, 115, 22, 0.04);
  border-left-color: #F97316;
}
.service-category.cat-orange .category-icon {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}
.service-category.cat-orange .service-item::before {
  color: #F97316;
}

/* ROUGE #DC2626 - Urgences critiques (Remorquage + Urgences) */
.service-category.cat-rouge {
  background: rgba(220, 38, 38, 0.04);
  border-left-color: #DC2626;
}
.service-category.cat-rouge .category-icon {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}
.service-category.cat-rouge .service-item::before {
  color: #DC2626;
}

.service-link strong {
  font-weight: 600;
  color: var(--black);
  transition: color 0.15s ease;
}

.service-link:hover strong {
  color: var(--red-primary);
}

/* === RESPONSIVE v2.0 === */
@media (max-width: 768px) {
  .quartiers-grid {
    grid-template-columns: 1fr;
  }

  .quartier-nom {
    font-size: 1rem;
  }

  .quartier-description {
    font-size: 0.9rem;
  }

  .section-parkings {
    padding: var(--spacing-md);
  }

  .category-services {
    grid-template-columns: 1fr;
  }

  .category-titre {
    font-size: 1.1rem;
  }
}

/* Dégradés pour stats hero */
.gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.gradient-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
