@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Supprimer les marges par défaut */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

/* Listes propres */
ul,
ol {
  list-style: none;
}

/* Liens sans underline par défaut */
a {
  text-decoration: none;
  color: inherit;
}

/* Images responsives */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Boutons propres */
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  background-color: #f3f3f3;
  color: #e5e5e5;
}

.section-hero {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}
.section-hero h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: #111;
}
.section-hero p {
  max-width: 45rem;
  margin: 0 auto 1rem auto;
  color: #111;
  font-weight: bold;
}
.section-hero h2 {
  margin-top: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ff8801, #ffc107);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.section-hero h2:hover {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.1);
}
.section-hero img.rounded {
  border-radius: 1rem !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s ease;
  max-width: 15rem;
}
.section-hero img.rounded:hover {
  transform: translateY(-6px) scale(1.03);
}
@media (max-width: 768px) {
  .section-hero {
    flex-direction: column;
    text-align: center;
  }
  .section-hero img.rounded {
    max-width: 14rem;
  }
}

/* =========================
CAROUSEL
========================= */
.caroussel-container {
  margin-bottom: 3rem;
}
.caroussel-container .carousel {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.caroussel-container .carousel-inner img {
  max-height: 420px;
  object-fit: cover;
}
.caroussel-container .carousel-caption {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}
.caroussel-container .carousel-caption h4 {
  margin: 0;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

/* =========================
CARDS (3 blocs)
========================= */
.card-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.card-container .card {
  width: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-container .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.card-container .card-img-top {
  height: 200px;
  object-fit: cover;
}
.card-container .card-body {
  padding: 1.25rem;
}
.card-container .card-title {
  margin-bottom: 0.75rem;
  font-weight: 900;
}
.card-container .btn.btn-primary {
  background: linear-gradient(90deg, #ffc107, #ff8801);
  border: 1px solid rgba(17, 17, 17, 0.35);
  color: #111;
  font-weight: 800;
  border-radius: 0.9rem;
  padding: 0.7rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-container .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
@media (max-width: 992px) {
  .card-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
SECTION “DEVIS / TARIFS”
========================= */
.client-container {
  margin-bottom: 3rem;
}
.client-container .card-devis .text-bg-dark {
  border-radius: 1.25rem !important;
}
.client-container .card-devis .text-bg-dark h2 {
  margin-bottom: 0.75rem;
}
.client-container .card-devis .text-bg-dark p {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .client-container .row > div {
    margin-bottom: 1rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ff8801;
  color: #111;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.site-header .container-fluid {
  padding-inline: clamp(1rem, 4vw, 3rem);
}
.site-header {
  /* TOP */
}
.site-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 0.9rem;
}
.site-header .header-brand {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-header .header-brand .site-title {
  margin: 0;
  line-height: 1;
}
.site-header .header-brand .site-title a {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  transition: transform 0.25s ease, color 0.25s ease;
}
.site-header .header-brand .site-title a:hover {
  color: #75af08;
  transform: scale(1.06) translateY(-2px);
}
.site-header .header-brand .site-tagline {
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.site-header {
  /* NAV */
}
.site-header .nav-list-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  margin: 0;
  padding: 0;
}
.site-header .nav-list-main a {
  position: relative;
  padding: 0.35rem 0.25rem;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  letter-spacing: 0.01em;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-header .nav-list-main a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.site-header .nav-list-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0%;
  height: 2px;
  background: rgba(17, 17, 17, 0.75);
  transition: width 0.2s ease;
}
.site-header .nav-list-main a:hover::after {
  width: 100%;
}
.site-header .nav-list-main a.is-active {
  opacity: 1;
  font-weight: 900;
}
.site-header .nav-list-main a.is-active::after {
  width: 100%;
  background: rgba(17, 17, 17, 0.85);
}
.site-header .nav-list-main {
  /* ✅ CTA Devis */
}
.site-header .nav-list-main .nav-cta {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc107, #fff);
  border: 1px solid rgba(17, 17, 17, 0.25);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  font-weight: 900;
}
.site-header .nav-list-main .nav-cta::after {
  display: none;
}
.site-header .nav-list-main .nav-cta:hover {
  transform: translateY(-2px);
}
.site-header .nav-list-main .nav-cta.is-active {
  outline: 2px solid rgba(17, 17, 17, 0.25);
}
.site-header {
  /* BOTTOM CONTACT */
}
.site-header .nav-bottom {
  padding-block: 0.55rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.site-header .nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  font-weight: 800;
}
.site-header .nav-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-header .nav-list li:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.site-header .nav-list li .bi {
  font-size: 1.05rem;
}
.site-header {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  .site-header .header-top {
    flex-direction: column;
    align-items: stretch;
  }
  .site-header .header-brand {
    align-items: center;
    text-align: center;
  }
  .site-header .nav-list-main {
    justify-content: center;
  }
  .site-header .nav-list {
    justify-content: center;
  }
}

/* =========================
SECTION “REASONS”
========================= */
.reasons {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.reasons__hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background-image: url("../img/background-snipper.jpg");
  background-size: cover;
  background-position: center;
}

.reasons__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 136, 1, 0.82), rgba(255, 193, 7, 0.75));
}

.reasons__content {
  position: relative;
  z-index: 1;
}

.reasons__title {
  text-align: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem 0;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-style: italic;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 992px) {
  .reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .reasons__grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  position: relative;
  background: #ffc107;
  color: #111;
  padding: 1.6rem 1.4rem;
  min-height: 170px;
  border-radius: 0.25rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.reason-card__title {
  margin: 0 0 0.6rem 0;
  font-weight: 900;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.reason-card__text {
  margin: 0;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.45;
}

.reason-card--notch::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 36px;
  width: 18px;
  height: 34px;
  background: rgba(255, 136, 1, 0.35);
  clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
}

/* ===== PAGE LOCATIONS — Encadré info ===== */
.page-locations .rental-info {
  max-width: 980px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.page-locations .rental-info__icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 0.15rem;
  opacity: 0.75;
}

.page-locations .rental-info__text {
  margin: 0 0 0.45rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.82);
}

.page-locations .rental-info__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding-bottom: 2px;
  transition: transform 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.page-locations .rental-info__link:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.55);
  opacity: 0.95;
}

@media (max-width: 576px) {
  .page-locations .rental-info {
    padding: 0.9rem;
    gap: 0.65rem;
  }
}
/* ===== PAGE LOCATIONS  cards===== */
.page-locations .card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-locations .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  border-color: rgba(17, 17, 17, 0.16);
}

/* Image : même hauteur pour toutes les cartes */
.page-locations .card-img-top {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #f3f3f3;
}

/* Corps : meilleure respiration */
.page-locations .card-body {
  padding: 1rem 1.05rem 1.05rem;
}

/* Titre : plus lisible, 2 lignes max */
.page-locations .card-title {
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Texte : plus clean, 4 lignes max */
.page-locations .card-text {
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.45;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-locations .card-text a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}
.page-locations .card-text a:hover {
  text-decoration: underline;
}

/* Zone prix + CTA */
.page-locations .card-body .mt-auto {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

/* Prix : un peu plus "badge" */
.page-locations .card-body .fw-bold {
  margin: 0.65rem 0 0.65rem;
  font-size: 1.05rem;
}

.page-locations .text-success {
  font-weight: 900;
}

/* Bouton : plus "call to action", sans changer ton thème */
.page-locations .btn.btn-primary {
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.page-locations .btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
  filter: brightness(1.03);
}

/* Responsive */
@media (max-width: 576px) {
  .page-locations .card-img-top {
    height: 180px;
  }
}
/* ===== PAGES SERVICES (Bricolage / Espaces verts) ===== */
.page-bricolage .service-hero,
.page-espaces .service-hero {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.page-bricolage .service-hero__title,
.page-espaces .service-hero__title {
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 0.4rem;
}

.page-bricolage .service-hero__subtitle,
.page-espaces .service-hero__subtitle {
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.page-bricolage .service-hero__cta,
.page-espaces .service-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-bricolage .service-highlights,
.page-espaces .service-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(17, 17, 17, 0.85);
  font-weight: 700;
}

.page-bricolage .service-highlights i,
.page-espaces .service-highlights i {
  margin-right: 0.45rem;
  opacity: 0.75;
}

/* Blocks */
.page-bricolage .service-block,
.page-espaces .service-block {
  margin-bottom: 2.25rem;
}

.page-bricolage .service-block__title,
.page-espaces .service-block__title {
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 1rem;
}

/* Cards */
.page-bricolage .service-card,
.page-espaces .service-card {
  height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.page-bricolage .service-card:hover,
.page-espaces .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.page-bricolage .service-card__icon,
.page-espaces .service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.page-bricolage .service-card__title,
.page-espaces .service-card__title {
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.page-bricolage .service-card__text,
.page-espaces .service-card__text {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.5;
}

/* Steps */
.page-bricolage .service-steps,
.page-espaces .service-steps {
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.page-bricolage .service-step,
.page-espaces .service-step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.75);
}

.page-bricolage .service-step__n,
.page-espaces .service-step__n {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.06);
}

.page-bricolage .service-step__title,
.page-espaces .service-step__title {
  font-weight: 900;
  margin: 0 0 0.1rem;
}

.page-bricolage .service-step__text,
.page-espaces .service-step__text {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
}

/* Bottom CTA */
.page-bricolage .service-cta-bottom,
.page-espaces .service-cta-bottom {
  margin-top: 2.5rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.page-bricolage .service-cta-bottom__actions,
.page-espaces .service-cta-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Responsive */
@media (max-width: 992px) {
  .page-bricolage .service-hero,
  .page-espaces .service-hero {
    grid-template-columns: 1fr;
  }
}
/* ===== PAGE TARIFS ===== */
main {
  color: #111;
}

.page-tarifs .tarifs-head h1 {
  font-weight: 900;
  letter-spacing: -0.4px;
}
.page-tarifs .tarifs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1rem 0 1.25rem;
}
.page-tarifs .tarifs-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: rgba(17, 17, 17, 0.88);
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.page-tarifs .tarifs-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.page-tarifs .tarifs-info {
  max-width: 980px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.page-tarifs .tarifs-info__icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 0.15rem;
  opacity: 0.75;
}
.page-tarifs .tarifs-info__text {
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.82);
}
.page-tarifs .tarifs-section {
  margin-top: 2rem;
}
.page-tarifs .tarifs-section__title {
  margin-bottom: 0.85rem;
}

.page-tarifs .tarifs-table {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.page-tarifs .tarifs-table thead th {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.page-tarifs .tarifs-footnote {
  margin: 0.8rem 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.95rem;
}
.page-tarifs .tarifs-callout {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
}
.page-tarifs .tarifs-callout i {
  margin-top: 0.15rem;
  opacity: 0.75;
}
.page-tarifs .tarifs-pill {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.page-tarifs .tarifs-pill--ok {
  background: #23be23;
}
.page-tarifs .tarifs-pill--opt {
  background: #dde030;
}
.page-tarifs .tarifs-pill--no {
  background: #d10b0b;
}
.page-tarifs .tarifs-pill--pay {
  background: #d6860d;
}

@media (max-width: 576px) {
  .page-tarifs .tarifs-info {
    padding: 0.9rem;
    gap: 0.65rem;
  }
}
.devis-hero {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2.25rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .devis-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.devis-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 136, 1, 0.25), rgba(255, 193, 7, 0.25));
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-weight: 900;
  color: #111;
}

.devis-hero h1 {
  margin: 0;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.devis-hero__lead {
  margin-top: 0.9rem;
  color: rgba(17, 17, 17, 0.92);
  font-weight: 700;
  max-width: 46rem;
}
@media (max-width: 992px) {
  .devis-hero__lead {
    margin-inline: auto;
  }
}

.devis-hero__badges {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 992px) {
  .devis-hero__badges {
    justify-content: center;
  }
}

.devis-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  color: #111;
}

.devis-hero__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s ease;
}
.devis-hero__img:hover {
  transform: translateY(-6px) scale(1.02);
}
@media (max-width: 992px) {
  .devis-hero__img {
    min-height: 220px;
  }
}

/* WRAP */
.devis-wrap {
  margin-bottom: 3rem;
}

.devis-card {
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.devis-card__head {
  margin-bottom: 1rem;
}

.devis-card__title {
  margin: 0 0 0.35rem 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #111;
}

.devis-card__sub {
  margin: 0;
  color: rgba(17, 17, 17, 0.8);
  font-weight: 700;
}

/* FORM */
.devis-form .form-label {
  font-weight: 900;
  color: rgba(17, 17, 17, 0.92);
  letter-spacing: 0.01em;
}

.devis-form .form-control,
.devis-form .form-select {
  border-radius: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.7rem 0.85rem;
}
.devis-form .form-control:focus,
.devis-form .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.35);
  border-color: rgba(255, 193, 7, 0.65);
}

.devis-form textarea.form-control {
  padding-top: 0.85rem;
}

.devis-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  padding-top: 0.25rem;
}

.devis-submit {
  background: linear-gradient(90deg, #ffc107, #ff8801);
  border: 1px solid rgba(17, 17, 17, 0.35);
  color: #111;
  font-weight: 900;
  border-radius: 0.95rem;
  padding: 0.75rem 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.devis-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.devis-form__note {
  margin: 0;
  color: rgba(17, 17, 17, 0.8);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* ASIDE - steps */
.devis-steps {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.devis-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.devis-step__num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc107;
  border: 1px solid rgba(17, 17, 17, 0.22);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  font-weight: 900;
  color: #111;
}

.devis-step__body h3 {
  margin: 0 0 0.25rem 0;
  font-weight: 900;
  font-size: 1.05rem;
  color: #111;
}

.devis-step__body p {
  margin: 0;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.82);
}

/* Callout */
.devis-callout {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(90deg, rgba(255, 136, 1, 0.18), rgba(255, 193, 7, 0.18));
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.devis-callout__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  background: #000;
  color: #ff8801;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.devis-callout__btn:hover {
  opacity: 0.95;
  transform: translateY(-0.05rem);
  color: #ff8801;
}

.devis-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-weight: 900;
  color: #111;
}
.devis-callout__link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* FAQ */
.devis-faq {
  margin-bottom: 3rem;
}

.devis-faq__head {
  text-align: center;
  margin-bottom: 1rem;
}
.devis-faq__head h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #ff8801, #ffc107);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Un petit polish Bootstrap accordion */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  font-weight: 900;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.site-footer {
  padding: 3rem 0;
  color: #111;
  background-color: beige;
}
.site-footer h5 {
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.site-footer h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: #111;
}
.site-footer .footer-list li {
  padding: 0.25rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-footer .footer-list li:hover {
  transform: translateX(3px);
  opacity: 0.9;
}
.site-footer a {
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.site-footer a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer .footer-links li {
  margin: 0;
}
.site-footer .footer-links a {
  font-weight: 700;
  border-bottom: 2px solid #111;
}
.site-footer .footer-links a:hover {
  border-bottom-color: #111;
}
.site-footer .btn.footer-cta,
.site-footer .btn.btn-primary {
  background: #111;
  border: 1px solid #111;
  font-weight: 800;
  padding: 0.75rem 1.1rem;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-footer .btn.footer-cta:hover,
.site-footer .btn.btn-primary:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.site-footer .border-top {
  border-color: #111 !important;
}
.site-footer .footer-meta p {
  color: rgba(17, 17, 17, 0.85);
  text-align: center;
}
.site-footer .footer-social .bi {
  font-size: 1.6rem;
  line-height: 1;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.25);
}
.site-footer .footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(17, 17, 17, 0.12);
}
@media (max-width: 576px) {
  .site-footer {
    padding: 2.25rem 0;
  }
  .site-footer .footer-links {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 0.5rem;
  background: #000;
  color: #ff8801;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-0.05rem);
  background-color: #000;
  color: #ff8801;
  font-weight: bold;
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: #000;
  color: #ff8801;
}/*# sourceMappingURL=main.css.map */