/* GLOBAL */
html,
body {
  background: #ffffff;
}

body {
  color: #111827;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}


/* Distinction obligatoire / optionnel */
  .field-required {
    color: #111827!important;
    font-weight: 600;
  }





/* HEADER / NAVBAR */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand + logo */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo img {
  display: block;
  height: 34px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #6b7280;
}

/* NAV DESKTOP */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #6b7280;
  white-space: nowrap;
  background: #ffffff;
}

.site-nav a:hover {
  border-color: rgba(15, 23, 42, 0.12);
  color: #111827;
}

.site-nav a.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* BURGER MOBILE */
.nav-toggle {
  display: none;
  width: 40px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { bottom: 9px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  bottom: 15px;
  transform: rotate(-45deg);
}

/* OFFCANVAS MOBILE – VERSION CLAIRE */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 48;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85%);
  background: #ffffff;
  color: #111827;
  box-shadow: -30px 0 80px rgba(15, 23, 42, 0.16);
  transform-origin: right center;
  transform: perspective(1200px) rotateY(-18deg) translateX(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
  z-index: 49;
  border-left: 1px solid rgba(148, 163, 184, 0.3);
}

.mobile-menu-inner {
  padding: 1.2rem 1.1rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* tête offcanvas */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.mobile-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mobile-brand-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.mobile-menu-close {
  border: none;
  background: rgba(249, 250, 251, 1);
  color: #111827;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

/* liens mobile */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-links a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid transparent;
}

.mobile-nav-links a:hover {
  border-color: rgba(148, 163, 184, 0.6);
}

.mobile-nav-links a.active {
  background: #f97316;              /* orange clé */
  color: #ffffff;
  border-color: #f97316;
}

/* blocs info */
.mobile-info-block {
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(229, 231, 235, 1);
}

.mobile-info-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.mobile-info-text {
  font-size: 0.85rem;
  margin: 0;
  color: #4b5563;
}

/* horaires */
.mobile-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.mobile-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.mobile-hours-day {
  color: #111827;
}

.mobile-hours-time {
  color: #6b7280;
}

/* état ouvert */
body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: perspective(1200px) rotateY(0deg) translateX(0);
  opacity: 1;
}


/* responsive */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}












/* CONTAINER PRINCIPAL */
.page-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  background: #ffffff;
}

/* CARDS (style type Stripe) */
.card-shell {
  border-radius: 1rem; /* coins légèrement arrondis */
  background: #ffffff;
  border: 1px solid #e5e7eb; /* bord gris clair mais visible */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05); /* ombre grise légère */
  padding: 1.5rem;
}



/* LABELS / TITRES DE SECTION */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

/* BOUTON PRINCIPAL */
.btn.btn-minimal {
  border-radius: 0.75rem;
  border: 1px solid #111827;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Hover : on garde le bouton noir, juste un petit effet */
.btn.btn-minimal:hover,
.btn.btn-minimal:focus {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 0 0 0.12rem rgba(0, 0, 0, 0.12);
}

/* FORMULAIRES */
.form-control,
.form-select {
  border-radius: 0.6rem;
  border-color: rgba(15, 23, 42, 0.16);
  font-size: 0.9rem;
  background: #ffffff;
}

/* MESSAGES FLASH */
.flash-message {
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: #ffffff;
  color: #166534;
  width: fit-content;
}




/* HOME – STRUCTURE GLOBALE */
.home-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* HERO */
.hero-section {
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

.hero-text {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 520px;
}

.hero-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.hero-image {
  padding: 0;
  overflow: hidden;
}

.hero-image-inner {
  width: 100%;
  padding-top: 70%;
  border-radius: 0.9rem;
  background-image: url("https://plus.unsplash.com/premium_photo-1661542350224-8e3f095ce053?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
}

/* LIGNE DIVISEUR + FOOTER LINE */
.divider-line {
  height: 1px;
  background-color: #000000;
  opacity: 0.12;
  margin: 1.25rem 0;
}

.footer-line {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

/* SERVICES */
.services-list .list-group-item {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.services-list .list-group-item:last-child {
  border-bottom: 0;
}

.service-price {
  font-size: 0.95rem;
  font-weight: 600;
}

.service-duration {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* FORMULAIRE – GRILLE CLAIRE */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-row.full {
  flex-direction: column;
}

.form-col {
  flex: 1 1 0;
}


 
/* SECTION SERVICES DÉTAILLÉS */
.service-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.service-detail-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.service-detail-row.reverse {
  /* Sur mobile, pareil (colonne), inversion sur desktop plus bas */
}



.service-detail-image {
  flex: 1;
}

.service-detail-image img,
.service-detail-placeholder {
  width: 100%;
  border-radius: 1rem;
  display: block;
  min-height: 220px;
  background: #f3f4f6;
  object-fit: cover;
}

.service-detail-content {
  flex: 1;
}

.service-detail-price {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

/*---------------- */
 :root {
      --garage-orange: #f97316;       /* couleur principale */
      --garage-orange-soft: #fff4e9;  /* fond très clair */
      --garage-orange-dark: #ea580c;  /* hover / variante */
    }

    /* Layout global */
    .garage-page {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    /* Hero */
    .garage-badge {
      font-size: 0.78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #6b7280;
    }

    .garage-badge-pill {
      padding: .25rem .75rem;
      border-radius: 999px;
      background: var(--garage-orange-soft);
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      color: var(--garage-orange-dark);
    }

    .garage-title {
        font-size: 3rem;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 95%;
      color: #111827;
      letter-spacing: -0.04em;
    }

    .garage-sub {
      font-size: 0.95rem;
      color: #6b7280;
      max-width: 38rem;
    }

    /* Étapes */
    .garage-steps {
      margin-top: 1.5rem;
    }

    .garage-step-card {
      border-radius: 16px;
      border: 1px solid var(--garage-orange);
      background: var(--garage-orange-soft);
      padding: 1rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      transition: 0.3s;
      cursor: pointer;
    }

    .garage-step-card:hover {
      border-color: var(--garage-orange-dark);
      background: var(--garage-orange);
      color: #ffffff !important;
      transition: 0.3s;

    }

    .garage-step-icon-circle {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: var(--garage-orange);
      flex-shrink: 0;
      transition: 0.3s;

    }

    .garage-step-card:hover .garage-step-icon-circle{
      background: #ffffff;
      color: var(--garage-orange-dark);
      transition: 0.3s;
    }

    .garage-step-header {
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
      margin-bottom: 0.1rem;
      font-size: 0.9rem;
    }

    .garage-step-header span.step-index {
      font-weight: 600;
      color: #0f172a;
    }

    .garage-step-card:hover .garage-step-header span.step-index {
      color: #fff;
      font-weight: 600;
    }

    .garage-step-text {
      font-size: 0.85rem;
      color: #6b7280;
      margin: 0;
    }
    .garage-step-card:hover .garage-step-text {
      color: #fff;
    }

  
    /* Services */
    .garage-section-label {
      font-size: 0.75rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--garage-orange-dark);
      font-weight: 600;
    }
 
 
    /*---------------Section reservation service (section 2)------------------*/
/* Grille de services : jusqu’à ~5 par ligne, responsive */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Card de service cliquable */
.service-option {
  border-radius: 14px;                    /* carré arrondi */
  border: 1px solid #e5e7eb;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 150px;
  background-color: #ffffff;
  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background-color .15s ease,
    transform .12s ease;
  text-align: left;
}

.service-option:hover {
  border-color: var(--garage-orange);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  background-color: #fff7ef;
  transform: translateY(-1px);
}

.service-option-main {
  width: 100%;
}

.service-option-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.service-option-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

/* Bandeau bas : prix + bouton */
.service-option-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.service-option-price {
  font-weight: 600;
  color: var(--garage-orange-dark);
  font-size: 0.9rem;
}

/* Bouton “Choisir ce service” */
.service-option-cta {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--garage-orange);
  color: var(--garage-orange);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: 0.3s;
}

.service-option:hover .service-option-cta {
  background: var(--garage-orange-dark);
  color: var(--garage-orange-soft);
  transition: 0.3s;
}

.service-option-cta .material-symbols-rounded {
  font-size: 16px;
}

.garage-help {
  font-size: 0.85rem;
  font-weight: 200;
  color: #6b7280;
  max-width: 520px;
  line-height: 14px;
}







/* --- Section pause / conseil entretien --- */
.garage-break {
  border-radius: 20px;
  border: 1px solid var(--garage-orange-soft);
  background: linear-gradient(135deg, var(--garage-orange-soft) 0%, var(--garage-orange) 85%, var(--garage-orange-dark) 100%);
  padding: 1.6rem 1.8rem;
}

.garage-break-label {
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--garage-orange-dark);
  font-weight: 600;
}

.garage-break-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 95%;
  color: #111827;
}

.garage-break-text {
  font-size: 1rem;
  background: linear-gradient(90deg, #000 0%, #979797 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  line-height: 95%;
}

.garage-break-illu {
  max-width: 170px;
  margin-left: auto;
}

.garage-break-illu img {
    width: 400px;
    right: 80%;
    height: auto;
    display: flex;
    position: relative;
}




    /* --- Interventions en détail --- */
    .garage-service-detail {
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      padding: 1rem 1.1rem;
      display: flex;
      gap: 1rem;
    }

    .garage-service-detail-img {
      width: 96px;
      flex-shrink: 0;
      border-radius: 12px;
      overflow: hidden;
      background: #f3f4f6;
    }

    .garage-service-detail-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .garage-service-detail-body {
      font-size: 0.9rem;
    }

    .garage-service-detail-meta {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .garage-service-detail-text {
      font-size: 0.85rem;
      color: #4b5563;
    }

    /* --- Newsletter --- */
/* --- Newsletter : 2 cards alignées --- */
.garage-newsletter-row {
  align-items: stretch;
}

.garage-newsletter-card {
  border-radius: 20px;
  border: 1px solid #ffb96b;
  background: #fffaf5;
  padding: 1.4rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.garage-newsletter-card--light {
  background: #fffaf5;
}

.garage-newsletter-card--info {
  background: #fffdf8;
}

.garage-newsletter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.garage-newsletter-text {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0;
}

.garage-newsletter-illu {
  max-width: 140px;
  margin-left: auto;
  margin-top: 1rem;
}

.garage-newsletter-illu img {
  width: 100%;
  height: auto;
  display: block;
}

  

   
    /* --- CTA final garage --- */
.garage-cta-final {
  position: relative;
}

.garage-cta-inner {
  margin-top: 1.25rem;
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  background: var(--garage-orange);
  border: 1px solid #fed7aa;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

/* léger highlight orangé en fond */
.garage-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left,
             rgba(249, 115, 22, 0.08),
             transparent 60%);
  pointer-events: none;
}

/* effet 3D au survol */
.garage-cta-inner:hover {
  transform: perspective(900px) rotateX(-2deg) rotateY(1.5deg) translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  border-color: #f97316;
}

/* Titre un peu plus fort et lié à la key color */
.garage-cta-title {
  font-weight: 600;
  color: #ffffff;
}

.garage-cta-help {
  font-size: 0.85rem;
  color: #fcd9b6;
  margin-bottom: 0;
}

/* bouton avec léger effet 3D */
.garage-cta-btn {
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  transform: translateZ(0);
  border: 1px solid var(--garage-orange-soft)!important;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out;
}

.garage-cta-btn:hover {
  transform: translateY(-2px) translateZ(10px);
  border: 1px solid var(--garage-orange-dark)!important;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.45);
}

/* Responsive : un peu plus d’air sur mobile */
@media (max-width: 768px) {
  .garage-cta-inner {
    padding: 1.3rem 1.2rem;
  }
}





    /* Footer simple */
    .garage-footer {
      border-top: 1px solid #e5e7eb;
      margin-top: 2.5rem;
      padding-top: .85rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    /* Bouton principal orange */
    .btn-garage-primary {
      background-color: var(--garage-orange);
      border-color: var(--garage-orange);
      color: #ffffff;
    }
    .btn-garage-primary:hover,
    .btn-garage-primary:focus {
      background-color: var(--garage-orange-dark);
      border-color: var(--garage-orange-dark);
      color: #ffffff;
    }

    /* Hero image */
    .garage-hero-photo-wrapper {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .garage-hero-photo {
      display: block;
      width: 100%;
      height: auto;
    }

 

/*_____________contact______________________*/
.garage-call-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
              background-color 0.12s ease-out;
  color: #111827;
}

.garage-call-card:hover {
  background: #ffedd5;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.garage-call-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f97316;
  color: #ffffff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.garage-call-text {
  font-size: 0.85rem;
}

.garage-call-title {
  font-weight: 600;
}

.garage-call-number {
  font-size: 0.8rem;
}




/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  margin-top: 3rem;
}

.site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Bloc logo + infos garage */
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
}

.footer-logo img {
  display: block;
  height: 40px;        /* ajuste si besoin */
  width: auto;
}

.footer-garage-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-garage-name {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
}

.footer-garage-meta {
  font-size: 0.78rem;
}

/* Bloc "Réalisé par Iscra Studio" */
.footer-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.footer-madeby {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.footer-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: #f97316;              /* orange clé */
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-right {
    justify-content: flex-start;
  }
}



/* --- FAQ --- */
.garage-faq-intro {
  max-width: 22rem;
}

.garage-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.garage-faq-item {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.garage-faq-item.is-open {
  border-color: #fed7aa;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.garage-faq-trigger {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, #ffffff 0%, #fff7ed 100%);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
}

.garage-faq-question {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.garage-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f97316;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.garage-faq-item.is-open .garage-faq-icon {
  transform: rotate(90deg);
  background: #111827;
}

.garage-faq-icon-line {
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
}

.garage-faq-icon-vert {
  width: 2px;
  height: 10px;
}

.garage-faq-icon-horiz {
  width: 10px;
  height: 2px;
}

/* contenu dépliable */
.garage-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    opacity 0.25s ease;
  opacity: 0;
  background: #ffffff;
}

.garage-faq-item.is-open .garage-faq-panel {
  opacity: 1;
}

.garage-faq-panel-inner {
  padding: 0 1.1rem 0.9rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.garage-faq-panel-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .garage-faq-intro {
    max-width: none;
  }
}



@media (max-width: 575.98px) {
  .service-option {
    min-height: 0;
  }
  .service-option-right {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}


@media (max-width: 768px) {
  .service-detail-row {
    flex-direction: row;
    align-items: center;
  }

  .service-detail-row.reverse {
    flex-direction: row-reverse;
  }

  .garage-hero-photo-wrapper {
        max-width: 420px;
        margin-left: auto;
      }

      .garage-break-illu img {
          width: 100%!important;
          height: auto;
          display: flex;
          left: 0;
          position: relative;
      }

      .garage-break-illu {
          max-width: 170px;
          margin-left: 0;
      }

      .garage-break-title {
        font-size: 2rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 95%;
        color: #111827;
      }
}

@media (min-width: 768px) {
  .parallax-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sur mobile, tout passe en colonne */
@media (max-width: 767.98px) {
  .form-row {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .card-shell {
    padding: 1.8rem 2rem;
  }
}