/* ════════════════════════════════════════════════════════
   VGS — CSS Pages (Mobile-First)
   Styles pour les sections de la page d'accueil
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--vgs-navy) 0%, #0F3556 100%);
  color: var(--vgs-white);
  padding: var(--vgs-space-2xl) 0 var(--vgs-space-3xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='%23C9A961' fill-opacity='0.04'><circle cx='30' cy='30' r='1.5'/></g></svg>");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--vgs-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--vgs-white);
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--vgs-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-cta .btn {
  width: 100%;
  max-width: 280px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: var(--vgs-space-2xl);
  padding-top: var(--vgs-space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--vgs-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vgs-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════ */
.services {
  background: var(--vgs-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-lg);
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vgs-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: var(--vgs-gold);
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-2px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--vgs-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-icon.water { background: rgba(42, 157, 143, 0.12); color: var(--vgs-teal); }
.service-icon.solar { background: rgba(201, 169, 97, 0.15); color: var(--vgs-gold); }
.service-icon.tech { background: rgba(30, 90, 155, 0.12); color: var(--vgs-navy-light); }
.service-icon.security { background: rgba(229, 62, 62, 0.1); color: #C53030; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--vgs-navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  margin-bottom: 1rem;
  flex: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--vgs-teal);
  font-weight: 700;
  flex-shrink: 0;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vgs-navy-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--vgs-transition);
}

.service-link:hover {
  gap: 0.7rem;
  color: var(--vgs-gold);
}

/* ════════════════════════════════════════════════════════
   ABOUT / EXPERTISE SECTION
   ════════════════════════════════════════════════════════ */
.about {
  background: var(--vgs-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vgs-space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vgs-shadow-md);
  position: relative;
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--vgs-white);
  padding: 0.75rem 1rem;
  border-radius: var(--vgs-radius-md);
  box-shadow: var(--vgs-shadow-sm);
}

.about-image-badge-num {
  font-family: var(--vgs-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vgs-navy);
  line-height: 1;
}

.about-image-badge-label {
  font-size: 0.7rem;
  color: var(--vgs-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vgs-radius-sm);
  background: var(--vgs-cream);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--vgs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   STATS / TRUST SECTION
   ════════════════════════════════════════════════════════ */
.trust {
  background: var(--vgs-navy);
  color: var(--vgs-white);
  padding: var(--vgs-space-2xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: var(--vgs-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--vgs-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════════════
   ZONES / COVERAGE
   ════════════════════════════════════════════════════════ */
.zones {
  background: var(--vgs-cream);
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.zone-item {
  background: var(--vgs-white);
  padding: 0.75rem 1rem;
  border-radius: var(--vgs-radius-md);
  border: 1px solid var(--vgs-gray-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vgs-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--vgs-transition);
}

.zone-item:hover {
  border-color: var(--vgs-gold);
  background: var(--vgs-cream);
}

.zone-item .zone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vgs-teal);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--vgs-gold) 0%, #B8983A 100%);
  color: var(--vgs-navy);
  text-align: center;
  padding: var(--vgs-space-2xl) 0;
}

.cta-section h2 {
  color: var(--vgs-navy);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(10, 37, 64, 0.85);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.cta-buttons .btn {
  width: 100%;
  max-width: 300px;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero {
    padding: var(--vgs-space-3xl) 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-cta .btn {
    width: auto;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-stat-num {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--vgs-space-2xl);
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .trust-num {
    font-size: 2.75rem;
  }
  
  .zones-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-buttons .btn {
    width: auto;
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .zones-list {
    grid-template-columns: repeat(7, 1fr);
  }
  
  .trust-num {
    font-size: 3.25rem;
  }
}
/* ════════════════════════════════════════════════════════
   STYLES PAGE FORAGE
   À ajouter à la fin de vgs-pages.css
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   PAGE HERO (sous-pages, plus compact que home)
   ════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--vgs-navy) 0%, #0F3556 100%);
  color: var(--vgs-white);
  padding: var(--vgs-space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%232A9D8F' fill-opacity='0.05'><path d='M40 20 L45 35 L40 50 L35 35 Z'/></g></svg>");
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  color: var(--vgs-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-hero h1 .accent {
  color: var(--vgs-gold);
  font-style: italic;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a {
  color: var(--vgs-gold);
}

.page-hero-breadcrumb a:hover {
  color: var(--vgs-gold-light);
}

.page-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.page-hero-cta .btn {
  width: 100%;
  max-width: 280px;
}

/* ════════════════════════════════════════════════════════
   PROCESS STEPS (étapes du forage)
   ════════════════════════════════════════════════════════ */
.process {
  background: var(--vgs-white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}

.process-step {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-lg);
  position: relative;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
}

.process-step:hover {
  border-color: var(--vgs-gold);
  background: var(--vgs-white);
  box-shadow: var(--vgs-shadow-md);
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vgs-navy);
  color: var(--vgs-gold);
  font-family: var(--vgs-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--vgs-navy);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   FORAGE SERVICES (cartes détaillées)
   ════════════════════════════════════════════════════════ */
.forage-services {
  background: var(--vgs-cream);
}

.forage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vgs-space-lg);
}

.forage-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vgs-gray-100);
  display: flex;
  flex-direction: column;
  transition: all var(--vgs-transition);
}

.forage-card:hover {
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-2px);
}

.forage-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.forage-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.forage-card:hover .forage-card-image img {
  transform: scale(1.05);
}

.forage-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  padding: 0.3rem 0.75rem;
  border-radius: var(--vgs-radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.forage-card-body {
  padding: var(--vgs-space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.forage-card-body h3 {
  font-size: 1.25rem;
  color: var(--vgs-navy);
  margin-bottom: 0.75rem;
}

.forage-card-body p {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  margin-bottom: 1rem;
  flex: 1;
}

.forage-specs {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.forage-specs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.3rem 0;
}

.forage-specs-item:not(:last-child) {
  border-bottom: 1px solid var(--vgs-gray-100);
}

.forage-specs-label {
  color: var(--vgs-gray-700);
}

.forage-specs-value {
  font-weight: 600;
  color: var(--vgs-navy);
}

/* ════════════════════════════════════════════════════════
   EQUIPMENT BRANDS
   ════════════════════════════════════════════════════════ */
.equipment {
  background: var(--vgs-white);
}

.equipment-intro {
  max-width: 700px;
  margin: 0 auto var(--vgs-space-xl);
  text-align: center;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.equipment-card {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
}

.equipment-card:hover {
  border-color: var(--vgs-gold);
  background: var(--vgs-white);
  transform: translateY(-2px);
}

.equipment-card-name {
  font-family: var(--vgs-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.3rem;
}

.equipment-card-type {
  font-size: 0.75rem;
  color: var(--vgs-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════
   REALISATIONS GALLERY
   ════════════════════════════════════════════════════════ */
.realisations {
  background: var(--vgs-cream);
}

.realisations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.realisation-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
}

.realisation-card:hover {
  box-shadow: var(--vgs-shadow-md);
}

.realisation-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.realisation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.realisation-card:hover .realisation-image img {
  transform: scale(1.05);
}

.realisation-body {
  padding: 1.25rem;
}

.realisation-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--vgs-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.realisation-body h4 {
  font-family: var(--vgs-font-display);
  font-size: 1.05rem;
  color: var(--vgs-navy);
  margin-bottom: 0.5rem;
}

.realisation-body p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  line-height: 1.5;
  margin: 0;
}

.realisation-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--vgs-gray-100);
  font-size: 0.75rem;
  color: var(--vgs-gray-500);
}

.realisation-meta strong {
  color: var(--vgs-navy);
}

/* ════════════════════════════════════════════════════════
   AVANTAGES (pourquoi nous choisir)
   ════════════════════════════════════════════════════════ */
.avantages {
  background: var(--vgs-white);
}

.avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.avantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
  border-left: 4px solid var(--vgs-gold);
}

.avantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vgs-radius-sm);
  background: var(--vgs-white);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  border: 1px solid var(--vgs-gray-100);
}

.avantage-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.4rem;
}

.avantage-content p {
  font-size: 0.875rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════ */
.faq {
  background: var(--vgs-cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-md);
  border: 1px solid var(--vgs-gray-100);
  overflow: hidden;
  transition: all var(--vgs-transition);
}

.faq-item[open] {
  border-color: var(--vgs-gold);
  box-shadow: var(--vgs-shadow-sm);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vgs-navy);
  transition: all var(--vgs-transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: var(--vgs-cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--vgs-gold);
  font-weight: 400;
  transition: transform var(--vgs-transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .page-hero {
    padding: var(--vgs-space-3xl) 0;
  }
  
  .page-hero h1 {
    font-size: 2.75rem;
  }
  
  .page-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .page-hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .page-hero-cta .btn {
    width: auto;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .forage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.25rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .realisations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .avantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ════════════════════════════════════════════════════════
   STYLES PAGE INFORMATIQUE
   À ajouter à la fin de vgs-pages.css
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   PILIERS IT (4 grandes catégories)
   ════════════════════════════════════════════════════════ */
.it-pillars {
  background: var(--vgs-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pillar-card {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-lg);
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vgs-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover {
  background: var(--vgs-white);
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-2px);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--vgs-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillar-icon.cyber { background: rgba(229, 62, 62, 0.1); color: #C53030; }
.pillar-icon.backup { background: rgba(42, 157, 143, 0.12); color: var(--vgs-teal); }
.pillar-icon.cloud { background: rgba(30, 90, 155, 0.12); color: var(--vgs-navy-light); }
.pillar-icon.infog { background: rgba(201, 169, 97, 0.15); color: var(--vgs-gold); }

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--vgs-navy);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  margin-bottom: 1rem;
}

.pillar-features {
  list-style: none;
  margin-bottom: 1rem;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  padding: 0.25rem 0;
}

.pillar-features li::before {
  content: '→';
  color: var(--vgs-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-card .service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vgs-navy-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--vgs-transition);
}

.pillar-card .service-link:hover {
  gap: 0.7rem;
  color: var(--vgs-gold);
}

/* ════════════════════════════════════════════════════════
   IT FEATURE BLOCK (alternance gauche/droite)
   ════════════════════════════════════════════════════════ */
.it-feature {
  background: var(--vgs-cream);
}

.it-feature.alt {
  background: var(--vgs-white);
}

.it-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vgs-space-xl);
  align-items: center;
}

.it-feature-image {
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vgs-shadow-md);
  aspect-ratio: 4 / 3;
}

.it-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.it-feature-content .section-eyebrow {
  margin-bottom: 0.5rem;
}

.it-feature-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.it-feature-content > p {
  margin-bottom: 1.5rem;
}

.it-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.it-feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--vgs-white);
  padding: 0.875rem 1rem;
  border-radius: var(--vgs-radius-sm);
  border-left: 3px solid var(--vgs-gold);
  font-size: 0.9rem;
  color: var(--vgs-gray-900);
}

.it-feature.alt .it-feature-list li {
  background: var(--vgs-cream);
}

.it-feature-list li strong {
  color: var(--vgs-navy);
  display: block;
  margin-bottom: 0.2rem;
}

.it-feature-list li span {
  color: var(--vgs-gray-700);
  font-size: 0.85rem;
}

.it-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: var(--vgs-navy);
  border-radius: var(--vgs-radius-md);
  color: var(--vgs-white);
  margin-bottom: 1.5rem;
}

.it-feature-stat {
  text-align: center;
}

.it-feature-stat-num {
  font-family: var(--vgs-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vgs-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.it-feature-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ════════════════════════════════════════════════════════
   STACK / PARTNERS
   ════════════════════════════════════════════════════════ */
.stack {
  background: var(--vgs-navy);
  color: var(--vgs-white);
}

.stack .section-title h2 {
  color: var(--vgs-white);
}

.stack .section-title .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.stack-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vgs-radius-md);
  padding: 1rem;
  text-align: center;
  transition: all var(--vgs-transition);
}

.stack-item:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--vgs-gold);
  transform: translateY(-2px);
}

.stack-item-name {
  font-family: var(--vgs-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-white);
  margin-bottom: 0.25rem;
}

.stack-item-cat {
  font-size: 0.7rem;
  color: var(--vgs-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════
   SECTORS
   ════════════════════════════════════════════════════════ */
.sectors {
  background: var(--vgs-cream);
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.sector-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
}

.sector-card:hover {
  border-color: var(--vgs-gold);
  box-shadow: var(--vgs-shadow-sm);
}

.sector-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vgs-radius-sm);
  background: var(--vgs-cream);
  color: var(--vgs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.sector-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.25rem;
}

.sector-content p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   COMPLIANCE BADGES
   ════════════════════════════════════════════════════════ */
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--vgs-white);
  border: 1px solid var(--vgs-gold);
  border-radius: var(--vgs-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vgs-navy);
}

.compliance-badge::before {
  content: '✓';
  color: var(--vgs-success);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .it-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--vgs-space-2xl);
  }
  
  .it-feature.alt .it-feature-grid {
    direction: rtl;
  }
  .it-feature.alt .it-feature-grid > * {
    direction: ltr;
  }
  
  .it-feature-content h2 {
    font-size: 2rem;
  }
  
  .it-feature-list {
    grid-template-columns: 1fr;
  }
  
  .stack-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stack-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .it-feature-content h2 {
    font-size: 2.25rem;
  }
}
/* ════════════════════════════════════════════════════════
   STYLES PAGE BOUTIQUE
   À ajouter à la fin de vgs-pages.css
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   FILTRES CATÉGORIES
   ════════════════════════════════════════════════════════ */
.boutique-filters {
  background: var(--vgs-white);
  padding: var(--vgs-space-lg) 0;
  border-bottom: 1px solid var(--vgs-gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
}

.filters-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 var(--vgs-space-md);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filters-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.1rem;
  background: var(--vgs-cream);
  border: 1px solid var(--vgs-gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vgs-gray-700);
  cursor: pointer;
  transition: all var(--vgs-transition);
  white-space: nowrap;
  font-family: var(--vgs-font-body);
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-btn:hover {
  border-color: var(--vgs-navy);
  color: var(--vgs-navy);
}

.filter-btn.active {
  background: var(--vgs-navy);
  color: var(--vgs-white);
  border-color: var(--vgs-navy);
}

.filter-btn-count {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
}

.filter-btn:not(.active) .filter-btn-count {
  background: var(--vgs-gray-300);
  color: var(--vgs-gray-700);
}

/* ════════════════════════════════════════════════════════
   GRILLE PRODUITS
   ════════════════════════════════════════════════════════ */
.products {
  background: var(--vgs-cream);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--vgs-gold);
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-2px);
}

.product-card.hidden {
  display: none;
}

.product-image {
  width: 100%;
  height: 180px;
  background: var(--vgs-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(10, 37, 64, 0.85);
  color: var(--vgs-white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--vgs-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.product-stock-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--vgs-success);
  color: var(--vgs-white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--vgs-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.product-stock-badge::before {
  content: '●';
  font-size: 0.6rem;
}

.product-stock-badge.out {
  background: var(--vgs-warning);
}

.product-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.7rem;
  color: var(--vgs-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.product-name {
  font-family: var(--vgs-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.825rem;
  color: var(--vgs-gray-700);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.product-spec {
  font-size: 0.7rem;
  background: var(--vgs-cream);
  color: var(--vgs-gray-700);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--vgs-gray-100);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--vgs-gray-100);
}

.product-price {
  font-family: var(--vgs-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
}

.product-price-prefix {
  font-size: 0.7rem;
  color: var(--vgs-gray-500);
  font-weight: 400;
  display: block;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  background: var(--vgs-navy);
  color: var(--vgs-white);
  border-radius: var(--vgs-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--vgs-transition);
  white-space: nowrap;
  min-height: 36px;
  flex-shrink: 0;
}

.product-cta:hover {
  background: var(--vgs-gold);
  color: var(--vgs-navy);
}

/* Pas de produits */
.no-results {
  text-align: center;
  padding: var(--vgs-space-2xl) var(--vgs-space-md);
  color: var(--vgs-gray-500);
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════
   BENEFITS LIVRAISON
   ════════════════════════════════════════════════════════ */
.benefits {
  background: var(--vgs-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vgs-radius-sm);
  background: var(--vgs-white);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  border: 1px solid var(--vgs-gray-100);
}

.benefit-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.3rem;
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .filters-bar {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .product-image {
    height: 200px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .product-image {
    height: 220px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Très grands écrans */
@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ════════════════════════════════════════════════════════
   STYLES PAGE PLOMBERIE & ÉLECTRICITÉ
   À ajouter à la fin de vgs-pages.css
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   DUO PILLARS (2 grandes cartes : Plomberie + Électricité)
   ════════════════════════════════════════════════════════ */
.duo-pillars {
  background: var(--vgs-white);
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.duo-card {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-xl);
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.duo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.duo-card.plomberie::before {
  background: var(--vgs-teal);
}

.duo-card.electricite::before {
  background: var(--vgs-gold);
}

.duo-card:hover {
  background: var(--vgs-white);
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-3px);
}

.duo-card:hover::before {
  transform: scaleX(1);
}

.duo-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--vgs-radius-md);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.duo-icon.plomberie {
  background: rgba(42, 157, 143, 0.12);
  color: var(--vgs-teal);
}

.duo-icon.electricite {
  background: rgba(201, 169, 97, 0.15);
  color: var(--vgs-gold);
}

.duo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--vgs-navy);
}

.duo-card p {
  font-size: 0.95rem;
  color: var(--vgs-gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.duo-card .duo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vgs-navy-light);
  transition: gap var(--vgs-transition);
}

.duo-card .duo-link:hover {
  gap: 0.8rem;
  color: var(--vgs-gold);
}

/* ════════════════════════════════════════════════════════
   SERVICES TABS (alternance plomberie / électricité)
   ════════════════════════════════════════════════════════ */
.service-detail {
  background: var(--vgs-cream);
}

.service-detail.alt {
  background: var(--vgs-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vgs-space-xl);
  align-items: center;
}

.service-detail-image {
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vgs-shadow-md);
  aspect-ratio: 4 / 3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail-content > p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--vgs-gray-700);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-md);
  border-left: 4px solid var(--vgs-teal);
  transition: all var(--vgs-transition);
}

.service-detail.alt .service-list-item {
  background: var(--vgs-cream);
  border-left-color: var(--vgs-gold);
}

.service-list-item:hover {
  transform: translateX(4px);
  box-shadow: var(--vgs-shadow-sm);
}

.service-list-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--vgs-radius-sm);
  background: var(--vgs-cream);
  color: var(--vgs-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.service-detail.alt .service-list-icon {
  background: var(--vgs-white);
  color: var(--vgs-gold);
}

.service-list-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.2rem;
}

.service-list-content p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   URGENCE BANNER
   ════════════════════════════════════════════════════════ */
.urgence-banner {
  background: linear-gradient(135deg, #C53030 0%, #9B2C2C 100%);
  color: var(--vgs-white);
  padding: var(--vgs-space-lg) 0;
}

.urgence-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.urgence-text h3 {
  font-family: var(--vgs-font-display);
  font-size: 1.5rem;
  color: var(--vgs-white);
  margin-bottom: 0.5rem;
}

.urgence-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

.urgence-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-urgence {
  background: var(--vgs-white);
  color: #C53030;
  padding: 0.875rem 1.5rem;
  border-radius: var(--vgs-radius-md);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--vgs-transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-urgence:hover {
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  transform: translateY(-2px);
  box-shadow: var(--vgs-shadow-md);
}

.btn-urgence-icon {
  font-size: 1.25rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ════════════════════════════════════════════════════════
   CHANTIERS TYPES
   ════════════════════════════════════════════════════════ */
.chantiers {
  background: var(--vgs-white);
}

.chantiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.chantier-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
  align-items: flex-start;
  transition: all var(--vgs-transition);
}

.chantier-item:hover {
  background: var(--vgs-white);
  box-shadow: var(--vgs-shadow-sm);
  border: 1px solid var(--vgs-gray-100);
}

.chantier-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--vgs-radius-md);
  background: var(--vgs-white);
  color: var(--vgs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  border: 2px solid var(--vgs-gold);
}

.chantier-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.25rem;
}

.chantier-content p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .duo-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--vgs-space-2xl);
  }
  
  .service-detail.alt .service-detail-grid {
    direction: rtl;
  }
  .service-detail.alt .service-detail-grid > * {
    direction: ltr;
  }
  
  .service-detail-content h2 {
    font-size: 2rem;
  }
  
  .urgence-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .chantiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .duo-card {
    padding: var(--vgs-space-2xl);
  }
  
  .duo-icon {
    width: 96px;
    height: 96px;
    font-size: 3rem;
  }
  
  .service-detail-content h2 {
    font-size: 2.25rem;
  }
  
  .chantiers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ════════════════════════════════════════════════════════
   STYLES PAGES CONTACT &amp; DEVIS
   À ajouter à la fin de vgs-pages.css
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   CONTACT METHODS GRID (6 façons de nous joindre)
   ════════════════════════════════════════════════════════ */
.contact-methods {
  background: var(--vgs-white);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-method-card {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--vgs-gray-100);
  transition: all var(--vgs-transition);
  text-decoration: none;
  color: inherit;
}

.contact-method-card:hover {
  background: var(--vgs-white);
  border-color: var(--vgs-gold);
  box-shadow: var(--vgs-shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--vgs-radius-md);
  background: var(--vgs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--vgs-gray-100);
}

.contact-method-card:hover .contact-method-icon {
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  border-color: var(--vgs-gold);
}

.contact-method-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.3rem;
}

.contact-method-content p {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  margin: 0 0 0.4rem 0;
  line-height: 1.4;
}

.contact-method-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vgs-navy);
  display: block;
  margin-bottom: 0.15rem;
}

.contact-method-value:last-child {
  margin-bottom: 0;
}

.contact-method-arrow {
  color: var(--vgs-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ════════════════════════════════════════════════════════
   FORMULAIRES (Contact + Devis)
   ════════════════════════════════════════════════════════ */
.contact-form-section {
  background: var(--vgs-cream);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vgs-space-xl);
}

.contact-info-block {
  background: var(--vgs-navy);
  color: var(--vgs-white);
  padding: var(--vgs-space-xl);
  border-radius: var(--vgs-radius-lg);
}

.contact-info-block h3 {
  color: var(--vgs-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info-block p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-list li strong {
  color: var(--vgs-gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-info-list li a {
  color: var(--vgs-white);
  font-weight: 500;
  display: block;
}

.contact-info-list li a:hover {
  color: var(--vgs-gold);
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--vgs-radius-sm);
  background: rgba(201, 169, 97, 0.15);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ─── Formulaire ─── */
.vgs-form {
  background: var(--vgs-white);
  padding: var(--vgs-space-xl);
  border-radius: var(--vgs-radius-lg);
  border: 1px solid var(--vgs-gray-100);
  box-shadow: var(--vgs-shadow-sm);
}

.vgs-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.vgs-form-subtitle {
  color: var(--vgs-gray-700);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vgs-navy);
  margin-bottom: 0.4rem;
}

.form-label-required::after {
  content: ' *';
  color: var(--vgs-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  color: var(--vgs-charcoal);
  background: var(--vgs-cream);
  border: 1.5px solid var(--vgs-gray-100);
  border-radius: var(--vgs-radius-md);
  transition: all var(--vgs-transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vgs-navy);
  background: var(--vgs-white);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--vgs-gray-500);
}

.form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%230A2540' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--vgs-font-body);
}

.form-help {
  font-size: 0.8rem;
  color: var(--vgs-gray-500);
  margin-top: 0.3rem;
}

.form-checkbox-group {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--vgs-navy);
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--vgs-navy-light);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success,
.form-error {
  padding: 1rem;
  border-radius: var(--vgs-radius-md);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.form-success {
  background: rgba(56, 161, 105, 0.1);
  color: #2F855A;
  border: 1px solid rgba(56, 161, 105, 0.2);
}

.form-error {
  background: rgba(229, 62, 62, 0.1);
  color: #C53030;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.form-success.visible,
.form-error.visible {
  display: block;
}

/* ════════════════════════════════════════════════════════
   FORMULAIRE DEVIS - SERVICE BADGES
   ════════════════════════════════════════════════════════ */
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--vgs-cream);
  border: 1.5px solid var(--vgs-gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vgs-gray-700);
  cursor: pointer;
  transition: all var(--vgs-transition);
  font-family: var(--vgs-font-body);
}

.service-badge:hover {
  border-color: var(--vgs-navy);
  color: var(--vgs-navy);
}

.service-badge.active {
  background: var(--vgs-navy);
  color: var(--vgs-white);
  border-color: var(--vgs-navy);
}

.service-badge input {
  display: none;
}

/* Pre-fill banner pour devis */
.prefill-banner {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--vgs-radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.prefill-banner.visible {
  display: flex;
}

.prefill-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.prefill-text {
  font-size: 0.9rem;
  color: var(--vgs-navy);
  line-height: 1.5;
}

.prefill-text strong {
  font-weight: 700;
  color: var(--vgs-gold);
}

/* ════════════════════════════════════════════════════════
   PROCESS STEPS DEVIS
   ════════════════════════════════════════════════════════ */
.devis-process {
  background: var(--vgs-white);
}

.devis-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}

.devis-process-step {
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-lg);
  padding: var(--vgs-space-lg);
  text-align: center;
  border: 1px solid var(--vgs-gray-100);
  position: relative;
  transition: all var(--vgs-transition);
}

.devis-process-step:hover {
  border-color: var(--vgs-gold);
  background: var(--vgs-white);
  box-shadow: var(--vgs-shadow-md);
}

.devis-process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vgs-navy);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vgs-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
}

.devis-process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--vgs-navy);
}

.devis-process-step p {
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

.devis-process-step-time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vgs-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 169, 97, 0.1);
  border-radius: var(--vgs-radius-sm);
}

/* ════════════════════════════════════════════════════════
   GARANTIES DEVIS
   ════════════════════════════════════════════════════════ */
.devis-guarantees {
  background: var(--vgs-cream);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.guarantee-card {
  background: var(--vgs-white);
  border-radius: var(--vgs-radius-md);
  padding: var(--vgs-space-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 4px solid var(--vgs-success);
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vgs-radius-sm);
  background: rgba(56, 161, 105, 0.1);
  color: var(--vgs-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.guarantee-content h4 {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin-bottom: 0.25rem;
}

.guarantee-content p {
  font-size: 0.875rem;
  color: var(--vgs-gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   MAP CONTAINER
   ════════════════════════════════════════════════════════ */
.map-section {
  background: var(--vgs-white);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--vgs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vgs-shadow-md);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  background: var(--vgs-navy);
  color: var(--vgs-white);
  padding: 1.25rem;
  border-radius: var(--vgs-radius-md);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-info-text {
  flex: 1;
}

.map-info h4 {
  font-family: var(--vgs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-white);
  margin-bottom: 0.25rem;
}

.map-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.map-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  padding: 0.6rem 1rem;
  border-radius: var(--vgs-radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.map-info a:hover {
  background: var(--vgs-gold-light);
  color: var(--vgs-navy);
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--vgs-space-xl);
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .devis-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-container {
    height: 420px;
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .contact-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .devis-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .guarantees-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .map-container {
    height: 480px;
  }
}
/* ════════════════════════════════════════════════════════
   STYLES SOUS-FILTRES BOUTIQUE — Design pro
   Affiché UNIQUEMENT pour la catégorie Informatique
   ══════════════════════════════════════════════════════ */

/* Container avec transition douce */
.subfilters-container {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--vgs-cream) 0%, var(--vgs-white) 100%);
  border-bottom: 1px solid transparent;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: sticky;
  top: 76px;
  z-index: 49;
  box-shadow: 0 0 0 rgba(10, 37, 64, 0);
}

.subfilters-container.visible {
  max-height: 200px;
  border-bottom-color: var(--vgs-gray-100);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.05);
}

/* Wrapper avec padding et structure */
.subfilters-wrapper {
  padding: 1rem var(--vgs-space-md);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.subfilters-container.visible .subfilters-wrapper {
  opacity: 1;
  transform: translateY(0);
}

/* Header de la barre sous-catégories */
.subfilters-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--vgs-gray-300);
}

.subfilters-header-icon {
  width: 28px;
  height: 28px;
  background: var(--vgs-navy);
  color: var(--vgs-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.subfilters-header-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vgs-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subfilters-header-count {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--vgs-gray-500);
  background: var(--vgs-white);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--vgs-gray-100);
  white-space: nowrap;
}

/* Barre de boutons */
.subfilters-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}

.subfilters-bar::-webkit-scrollbar {
  display: none;
}

/* Boutons sous-catégorie : design carte mini */
.subfilter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  background: var(--vgs-white);
  border: 1.5px solid var(--vgs-gray-100);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vgs-gray-700);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--vgs-font-body);
  touch-action: manipulation;
  min-height: 38px;
  position: relative;
  overflow: hidden;
}

/* Icône intégrée dans bouton */
.subfilter-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--vgs-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.subfilter-btn:hover {
  border-color: var(--vgs-navy);
  color: var(--vgs-navy);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
}

.subfilter-btn:hover .subfilter-icon {
  background: var(--vgs-navy);
  color: var(--vgs-gold);
  transform: scale(1.05);
}

/* État actif : style premium */
.subfilter-btn.active {
  background: linear-gradient(135deg, var(--vgs-navy) 0%, var(--vgs-navy-light) 100%);
  color: var(--vgs-white);
  border-color: var(--vgs-navy);
  box-shadow: 0 3px 10px rgba(10, 37, 64, 0.25);
}

.subfilter-btn.active .subfilter-icon {
  background: var(--vgs-gold);
  color: var(--vgs-navy);
}

.subfilter-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vgs-gold), transparent);
}

/* Compteur dans bouton */
.subfilter-count {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  color: inherit;
  margin-left: 0.15rem;
  min-width: 22px;
  text-align: center;
}

.subfilter-btn.active .subfilter-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--vgs-white);
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .subfilters-wrapper {
    padding: 1.25rem var(--vgs-space-lg);
  }
  
  .subfilters-bar {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 0.6rem;
  }
  
  .subfilter-btn {
    min-height: 42px;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    font-size: 0.875rem;
  }
  
  .subfilter-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .subfilters-container.visible {
    max-height: 240px;
  }
  
  .subfilters-header-text {
    font-size: 0.8rem;
  }
}
/* ════════════════════════════════════════════════════════
   STYLES SECTION SAUVEGARDE — Cartes solutions
   ══════════════════════════════════════════════════════ */

/* Bandeau alerte importance */
.backup-alert {
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
  border-left: 4px solid var(--vgs-error);
  padding: 1.25rem 1.5rem;
  border-radius: var(--vgs-radius-md);
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.backup-alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.backup-alert-text {
  font-size: 0.9rem;
  color: var(--vgs-charcoal);
  line-height: 1.6;
  margin: 0;
}

.backup-alert-text strong {
  color: var(--vgs-navy);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* Grid des solutions de sauvegarde */
.backup-solutions {
  background: var(--vgs-white);
}

.backup-solutions-intro {
  max-width: 800px;
  margin: 0 auto var(--vgs-space-xl);
  text-align: center;
}

.backup-solutions-intro p {
  font-size: 1rem;
  color: var(--vgs-gray-700);
  line-height: 1.7;
}

.backup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Carte solution sauvegarde */
.backup-card {
  background: var(--vgs-white);
  border: 1px solid var(--vgs-gray-100);
  border-radius: var(--vgs-radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.backup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vgs-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.backup-card:hover {
  border-color: var(--vgs-gold);
  transform: translateY(-3px);
  box-shadow: var(--vgs-shadow-md);
}

.backup-card:hover::before {
  transform: scaleX(1);
}

.backup-card-flag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--vgs-cream);
  color: var(--vgs-navy);
  padding: 0.3rem 0.65rem;
  border-radius: var(--vgs-radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--vgs-gray-100);
}

.backup-card-flag.recommended {
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  border-color: var(--vgs-gold);
}

.backup-card-flag.appliance {
  background: var(--vgs-navy);
  color: var(--vgs-gold);
  border-color: var(--vgs-navy);
}

.backup-card-vendor {
  display: inline-block;
  font-family: var(--vgs-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vgs-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.backup-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--vgs-navy);
}

.backup-card-tagline {
  font-size: 0.9rem;
  color: var(--vgs-gray-700);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 50px;
}

/* Section "Idéal pour" */
.backup-card-ideal {
  background: var(--vgs-cream);
  padding: 0.85rem 1rem;
  border-radius: var(--vgs-radius-md);
  margin-bottom: 1rem;
  border-left: 3px solid var(--vgs-teal);
}

.backup-card-ideal-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vgs-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.backup-card-ideal-text {
  font-size: 0.85rem;
  color: var(--vgs-charcoal);
  line-height: 1.5;
  margin: 0;
}

/* Caractéristiques techniques */
.backup-card-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.backup-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--vgs-gray-700);
  border-bottom: 1px dashed var(--vgs-gray-100);
}

.backup-card-features li:last-child {
  border-bottom: none;
}

.backup-card-features li::before {
  content: '✓';
  color: var(--vgs-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Footer carte avec stats */
.backup-card-footer {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--vgs-cream);
  border-radius: var(--vgs-radius-md);
}

.backup-card-stat {
  flex: 1;
  text-align: center;
}

.backup-card-stat-num {
  font-family: var(--vgs-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vgs-navy);
  line-height: 1;
  display: block;
  margin-bottom: 0.2rem;
}

.backup-card-stat-label {
  font-size: 0.7rem;
  color: var(--vgs-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA dans la carte */
.backup-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vgs-navy-light);
  transition: all var(--vgs-transition);
}

.backup-card-cta:hover {
  color: var(--vgs-gold);
  gap: 0.7rem;
}

/* Méthodologie 3-2-1 */
.backup-method {
  margin-top: var(--vgs-space-2xl);
  padding: var(--vgs-space-xl);
  background: var(--vgs-navy);
  color: var(--vgs-white);
  border-radius: var(--vgs-radius-lg);
}

.backup-method-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.backup-method-title h3 {
  color: var(--vgs-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.backup-method-title p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.backup-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.backup-method-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vgs-radius-md);
  transition: all var(--vgs-transition);
}

.backup-method-item:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--vgs-gold);
}

.backup-method-num {
  font-family: var(--vgs-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vgs-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.backup-method-item h4 {
  font-family: var(--vgs-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vgs-white);
  margin-bottom: 0.4rem;
}

.backup-method-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* CTA principal sauvegarde */
.backup-final-cta {
  text-align: center;
  margin-top: var(--vgs-space-xl);
  padding: 1.5rem;
}

.backup-final-cta p {
  font-size: 1rem;
  color: var(--vgs-gray-700);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .backup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .backup-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .backup-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .backup-method-num {
    font-size: 3rem;
  }
}


/* ════════════════════════════════════════════════════════
   ✨ MODALE ENVOI DEVIS / CONTACT — Email & WhatsApp
   Modale qui s'affiche après clic sur "Envoyer ma demande"
   Compatible avec vgs-forms.js (classes vgs-modal-*)
   Design cohérent avec la charte VGS (navy + gold)
   ══════════════════════════════════════════════════════ */

/* ─── Overlay (fond sombre flouté plein écran) ─── */
.vgs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.vgs-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ─── Boîte de la modale ─── */
.vgs-modal-overlay .vgs-modal {
  background: var(--vgs-white);
  width: 100%;
  max-width: 520px;
  border-radius: var(--vgs-radius-lg);
  box-shadow: 0 25px 70px rgba(10, 37, 64, 0.4);
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  margin: auto;
  font-family: var(--vgs-font-body);
}

.vgs-modal-overlay.visible .vgs-modal {
  transform: translateY(0) scale(1);
}

/* ─── Bouton de fermeture (croix en haut à droite) ─── */
.vgs-modal-overlay .vgs-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: var(--vgs-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  transition: all var(--vgs-transition);
}

.vgs-modal-overlay .vgs-modal-close:hover {
  background: var(--vgs-error);
  transform: rotate(90deg);
}

.vgs-modal-overlay .vgs-modal-close svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* ─── En-tête bleu marine de la modale ─── */
.vgs-modal-overlay .vgs-modal-header {
  background: linear-gradient(135deg, var(--vgs-navy) 0%, var(--vgs-navy-light) 100%);
  color: var(--vgs-white);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vgs-modal-overlay .vgs-modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Icône check ronde animée ─── */
.vgs-modal-overlay .vgs-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.18);
  border: 2px solid var(--vgs-gold);
  color: var(--vgs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 0;
  animation: vgsCheckPop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}

@keyframes vgsCheckPop {
  0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.vgs-modal-overlay .vgs-modal-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.vgs-modal-overlay .vgs-modal-header h3 {
  font-family: var(--vgs-font-display);
  font-size: 1.4rem;
  color: var(--vgs-white);
  margin: 0 0 0.4rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.vgs-modal-overlay .vgs-modal-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* ─── Corps de la modale (boutons Email / WhatsApp) ─── */
.vgs-modal-overlay .vgs-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: var(--vgs-white);
}

/* ─── Boutons de canal (taille raisonnable !) ─── */
.vgs-modal-overlay .vgs-channel-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: var(--vgs-white);
  border: 2px solid var(--vgs-gray-300);
  border-radius: var(--vgs-radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--vgs-transition);
  font-family: var(--vgs-font-body);
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
}

.vgs-modal-overlay .vgs-channel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background var(--vgs-transition);
}

.vgs-modal-overlay .vgs-channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vgs-shadow-md);
}

/* Email : style navy/bleu */
.vgs-modal-overlay .vgs-channel-email:hover {
  border-color: var(--vgs-navy-light);
  background: linear-gradient(to right, rgba(30, 90, 155, 0.04), transparent);
}
.vgs-modal-overlay .vgs-channel-email:hover::before {
  background: var(--vgs-navy-light);
}

/* WhatsApp : style vert officiel */
.vgs-modal-overlay .vgs-channel-whatsapp:hover {
  border-color: #25D366;
  background: linear-gradient(to right, rgba(37, 211, 102, 0.05), transparent);
}
.vgs-modal-overlay .vgs-channel-whatsapp:hover::before {
  background: #25D366;
}

/* ─── Icônes contenues (PAS de SVG géants) ─── */
.vgs-modal-overlay .vgs-channel-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  max-width: 52px;
  border-radius: var(--vgs-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vgs-white);
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vgs-modal-overlay .vgs-channel-email .vgs-channel-icon-wrap {
  background: linear-gradient(135deg, var(--vgs-navy) 0%, var(--vgs-navy-light) 100%);
}

.vgs-modal-overlay .vgs-channel-whatsapp .vgs-channel-icon-wrap {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.vgs-modal-overlay .vgs-channel-icon-wrap svg {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

/* ─── Texte du bouton ─── */
.vgs-modal-overlay .vgs-channel-content {
  flex: 1;
  min-width: 0;
}

.vgs-modal-overlay .vgs-channel-title {
  font-family: var(--vgs-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vgs-navy);
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.3;
}

.vgs-modal-overlay .vgs-channel-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--vgs-gold);
  color: var(--vgs-navy);
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.vgs-modal-overlay .vgs-channel-desc {
  font-size: 0.825rem;
  color: var(--vgs-gray-700);
  line-height: 1.4;
  margin: 0 0 0.4rem;
}

.vgs-modal-overlay .vgs-channel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.vgs-modal-overlay .vgs-channel-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  background: var(--vgs-gray-100);
  color: var(--vgs-gray-700);
  border-radius: 4px;
  white-space: nowrap;
}

/* ─── Flèche du bouton ─── */
.vgs-modal-overlay .vgs-channel-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vgs-gray-500);
  flex-shrink: 0;
  transition: transform var(--vgs-transition), color var(--vgs-transition);
}

.vgs-modal-overlay .vgs-channel-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vgs-modal-overlay .vgs-channel-btn:hover .vgs-channel-arrow {
  transform: translateX(4px);
}

.vgs-modal-overlay .vgs-channel-email:hover .vgs-channel-arrow {
  color: var(--vgs-navy-light);
}

.vgs-modal-overlay .vgs-channel-whatsapp:hover .vgs-channel-arrow {
  color: #25D366;
}

/* ─── Séparateur "OU" entre les deux boutons ─── */
.vgs-modal-overlay .vgs-channel-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.15rem 0;
  color: var(--vgs-gray-500);
}

.vgs-modal-overlay .vgs-channel-divider::before,
.vgs-modal-overlay .vgs-channel-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--vgs-gray-300);
}

.vgs-modal-overlay .vgs-channel-divider span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vgs-gray-500);
  padding: 0 0.5rem;
}

/* ─── Pied de modale (badges de confiance + Annuler) ─── */
.vgs-modal-overlay .vgs-modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  background: var(--vgs-cream);
  border-top: 1px solid var(--vgs-gray-100);
}

.vgs-modal-overlay .vgs-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.vgs-modal-overlay .vgs-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vgs-gray-700);
}

.vgs-modal-overlay .vgs-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--vgs-success);
  flex-shrink: 0;
  display: block;
}

/* ─── Bouton Annuler ─── */
.vgs-modal-overlay .vgs-modal-cancel {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--vgs-white);
  border: 1px solid var(--vgs-gray-300);
  border-radius: var(--vgs-radius-sm);
  color: var(--vgs-gray-700);
  font-family: var(--vgs-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vgs-transition);
  min-height: 44px;
  margin: 0;
}

.vgs-modal-overlay .vgs-modal-cancel:hover {
  border-color: var(--vgs-navy);
  color: var(--vgs-navy);
  background: var(--vgs-white);
}

/* ════════════════════════════════════════════════════════
   TABLET (≥ 768px)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .vgs-modal-overlay {
    padding: 2rem;
  }
  .vgs-modal-overlay .vgs-modal-header {
    padding: 2.25rem 2rem 2rem;
  }
  .vgs-modal-overlay .vgs-modal-icon {
    width: 72px;
    height: 72px;
  }
  .vgs-modal-overlay .vgs-modal-icon svg {
    width: 36px;
    height: 36px;
  }
  .vgs-modal-overlay .vgs-modal-header h3 {
    font-size: 1.625rem;
  }
  .vgs-modal-overlay .vgs-modal-header p {
    font-size: 0.95rem;
  }
  .vgs-modal-overlay .vgs-modal-body {
    padding: 2rem;
    gap: 1rem;
  }
  .vgs-modal-overlay .vgs-channel-btn {
    padding: 1.25rem 1.5rem;
  }
  .vgs-modal-overlay .vgs-channel-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
  }
  .vgs-modal-overlay .vgs-channel-icon-wrap svg {
    width: 28px;
    height: 28px;
  }
  .vgs-modal-overlay .vgs-channel-title {
    font-size: 1.1rem;
  }
  .vgs-modal-overlay .vgs-channel-desc {
    font-size: 0.875rem;
  }
  .vgs-modal-overlay .vgs-modal-footer {
    padding: 1.25rem 2rem 1.75rem;
  }
  .vgs-modal-overlay .vgs-trust-badges {
    gap: 1.25rem;
  }
  .vgs-modal-overlay .vgs-trust-item {
    font-size: 0.78rem;
  }
}

/* ════════════════════════════════════════════════════════
   PETITS ÉCRANS (≤ 380px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .vgs-modal-overlay .vgs-channel-arrow,
  .vgs-modal-overlay .vgs-channel-meta {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════
   ACCESSIBILITÉ : préférence "réduire les animations"
   ════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .vgs-modal-overlay,
  .vgs-modal-overlay .vgs-modal,
  .vgs-modal-overlay .vgs-modal-icon,
  .vgs-modal-overlay .vgs-channel-btn,
  .vgs-modal-overlay .vgs-channel-arrow,
  .vgs-modal-overlay .vgs-modal-close {
    transition: none !important;
    animation: none !important;
  }
}
