@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   1. VARIABLES DE COULEURS ET CONFIGURATION DE BASE
   ========================================================================== */ :root {
  --maincolor: #302f36;
  --secondary: #d71613;
  --tertiary: #ff0400;
  --dark-bg: #1A2428;
  --light-bg: #F4F7FA;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #4A4A4A;
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
.no-scroll {
  overflow: hidden;
}
/* ==========================================================================
   2. STYLE RECONSTRUIT DU HEADER PRINCIPAL (FLEX & STICKY)
   ========================================================================== */
#sp-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 20px 0;
}
#sp-header.header-sticky {
  position: fixed;
  top: 0;
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(12, 18, 57, 0.12);
  animation: fadeInDown 0.5s ease-in-out forwards;
}
@keyframes fadeInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-zone .logo {
  display: flex;
  align-items: center;
}
.logo-zone .logo-image {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}
.logo-text-fallback {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.logo-text-fallback .accent-color {
  color: var(--maincolor);
}
.sp-megamenu-wrapper {
  display: block;
}
.sp-megamenu-parent {
  display: flex;
  list-style: none;
  gap: 30px;
}
.sp-megamenu-parent > li > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  padding: 10px 0;
  position: relative;
  text-transform: capitalize;
}
.sp-megamenu-parent > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--maincolor);
  transition: var(--transition);
  display: none
}
.sp-megamenu-parent > li.active > a, .sp-megamenu-parent > li > a:hover {
  color: var(--maincolor);
}
.sp-megamenu-parent > li.active > a::after, .sp-megamenu-parent > li > a:hover::after {
  width: 100%;
}
/* Boutons d'action */
.header-action-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background-color: var(--secondary);
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 5px;
  transition: var(--transition);
  color: var(--white);
  border: 1px solid var(--tertiary);
}
.btn-phone i {
  color: var(--white);
  font-size: 18px;
  transform: rotate(90deg);
}
.btn-phone:hover {
  color: var(--white);
  background-color: var(--tertiary);
}
.btn-quote {
  background-color: var(--maincolor);
  color: var(--white);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 15px;
  border: 2px solid var(--maincolor);
}
.btn-quote:hover {
  background-color: transparent;
  color: var(--maincolor);
}
/* Icône Burger Mobile */
.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1000;
}
.burger-icon span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
/* ==========================================================================
   3. MENU DEFAUT PANNEAU LATÉRAL (OFFCANVAS MOBILE)
   ========================================================================== */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--dark-bg);
  z-index: 1001;
  transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  padding: 40px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}
.offcanvas-menu.open {
  right: 0;
}
.close-offcanvas {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: var(--white);
}
.mobile-nav-list {
  list-style: none;
  margin-top: 50px;
}
.mobile-menu-item {
  margin-bottom: 20px;
}
.mobile-menu-item a {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  display: block;
  padding: 5px 0;
}
.mobile-menu-item.active a, .mobile-menu-item a:hover {
  background: var(--maincolor);
  padding: 5px 10px;
  border-radius: 10px;
  max-width: max-content;
}
.mobile-menu-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-btn-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  background-color: var(--tertiary);
  border-radius: 5px;
}
.mobile-btn-quote {
  background-color: var(--tertiary);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 5px;
  font-weight: 600;
}
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ==========================================================================
   4. SECTION DIAPORAMA (STYLE SERENITY HERO WITH FOCUS EFFECT)
   ========================================================================== */
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background-color: var(--secondary);
}
.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 2s cubic-bezier(0.1, 0.8, 0.3, 1), transform 3s cubic-bezier(0.1, 0.8, 0.3, 1);
  filter: blur(15px) scale(1.12);
  z-index: -1;
}
.slide.active .slide-bg {
  filter: blur(0px) scale(1.03);
}
.slider-section:hover .slide.active .slide-bg {
  transform: scale(1);
}
.slide-content {
  max-width: 700px;
  color: var(--white);
  padding-top: 60px;
  z-index: 5;
  position: relative;
}
.slide-subtitle {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 15px;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  background: var(--secondary);
  max-width: max-content;
  border-radius: 20px;
  padding: 2px 5px;
}
.slide h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.5s, opacity 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.5s;
}
.slide-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.7s, opacity 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.7s;
  background: #1A242866;
  padding: 2em;
  border-radius: 20px;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.9s, opacity 1s cubic-bezier(0.1, 0.8, 0.3, 1) 0.9s, background-color 0.3s, border-color 0.3s;
}
.slide-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.slide-btn:hover {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}
.slide-btn:hover i {
  transform: translateX(5px);
}
.slide.active .slide-subtitle, .slide.active .slide-h2, .slide.active h2, .slide.active .slide-text, .slide.active .slide-btn {
  transform: translateY(0);
  opacity: 1;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  z-index: 10;
  transition: var(--transition);
}
.slider-arrow:hover {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}
.prev-arrow {
  left: 40px;
}
.next-arrow {
  right: 40px;
}
.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid var(--tertiary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}
.dot.active::after {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .slide h2 {
    font-size: 38px;
  }
  .slide-bg {
    filter: blur(10px) scale(1.1);
  }
  .prev-arrow {
    left: 15px;
  }
  .next-arrow {
    right: 15px;
  }
}
/* ==========================================================================
   5. RESPONSIVE DESIGN (MEDIA QUERIES SMARTPHONE & TABLETTE)
   ========================================================================== */
@media (max-width: 1199px) {
  .sp-megamenu-parent {
    gap: 20px;
  }
  .slide h2 {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .sp-megamenu-wrapper {
    display: none;
  }
  .burger-icon {
    display: flex;
    background: var(--dark-bg);
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 5px;
  }
  .btn-phone span {
    display: none;
  }
  .btn-phone {
    padding: 12px;
  }
  .logo-zone .logo-image {
    max-height: 45px;
  }
}
@media (max-width: 576px) {
  #sp-header {
    padding: 15px 0;
  }
  .btn-quote {
    display: none;
  }
  .slide h2 {
    font-size: 32px;
  }
  .slide-text {
    font-size: 15px;
  }
  .slider-arrow {
    display: none;
  }
}
/* ==========================================================================
   PRESTATIONS
   ========================================================================== */
/* Grille flexible (Responsive) */
.prestations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 20px;
  padding: 40px 0;
  max-width: 1320px;
  margin: 0 auto;
}
.prestations-accueil-section .features-item {
  position: relative;
  flex: 1 1 calc(33.333% - 27px);
  max-width: calc(33.333% - 27px);
  background-color: var(--white);
  border-radius: 8px;
  padding: 0 45px;
  transition: var(--transition);
  box-sizing: border-box;
  z-index: 1;
}
.prestations-accueil-section .features-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 150px;
  background: var(--light-bg);
  border-radius: 10px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .prestations-accueil-section .features-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    padding: 35px 40px;
  }
}
@media (max-width: 767px) {
  .prestations-accueil-section .features-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 30px 20px;
  }
  .prestations-grid {
    gap: 0
  }
}
.prestations-accueil-section .features-item:hover {
  transform: translateY(-6px);
}
.prestations-accueil-section .sppb-img-container {
  width: 70px;
  height: 70px;
  background-color: rgba(215, 22, 19, 0.06);
  border-radius: 10px 0px 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
  position: absolute;
  top: 0;
  left: 0;
}
.prestations-accueil-section .features-item:hover .sppb-img-container {
  background-color: var(--secondary);
}
.prestations-accueil-section .features-item:hover .sppb-img-container svg {
  color: var(--white) !important;
  transform: scale(1.05);
}
.prestations-accueil-section .sppb-media-content {
  display: block;
}
.prestations-accueil-section .sppb-feature-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
}
.prestations-accueil-section .features-item:hover .sppb-feature-box-title {
  color: var(--secondary);
}
.prestations-accueil-section .sppb-addon-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}
.prestations-accueil-section .link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.prestations-accueil-section .link-btn em {
  margin-right: 8px;
  font-size: 12px;
  color: var(--secondary);
  transition: var(--transition);
}
.prestations-accueil-section .link-btn:hover {
  color: var(--secondary);
}
.prestations-accueil-section .link-btn:hover em {
  transform: translateX(4px);
  color: var(--tertiary);
}
.prestations-accueil-section .features-item .sppb-addon-content {
  position: relative;
  flex: 1 1 calc(33.333% - 27px);
  background-color: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 80px 45px 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  box-sizing: border-box;
  z-index: 3;
}
/* ==========================================================================
   SECTION CONTACTS RAPIDES
   ========================================================================== */
.quick-contacts-section {
  padding: 0 0 60px;
  background-color: var(--white);
}
.quick-contacts-section .container {
  padding: 0
}
.home-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
  gap: 40px;
}
.home-contacts-grid .contact-column {
  flex: 1 1 calc(33.333% - 27px);
  max-width: calc(33.333% - 27px);
  background-color: var(--secondary);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(215, 22, 19, 0.15);
  transition: var(--transition);
  box-sizing: border-box;
}
.home-contacts-grid .contact-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(215, 22, 19, 0.25);
}
.home-contacts-grid .contact-icon {
  font-size: 45px;
  color: var(--white);
  margin-bottom: 15px;
}
.home-contacts-grid .contact-icon .fa-phone-alt {
  transform: rotate(90deg);
}
.home-contacts-grid .contact-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.home-contacts-grid .contact-link-wrapper {
  margin: 0 auto;
}
.home-contacts-grid a, .home-contacts-grid .contact-badge {
  color: var(--white);
  display: inline-block;
  border: solid 1px var(--white);
  border-radius: 300px;
  max-width: max-content;
  padding: 8px 20px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.home-contacts-grid .contact-badge {
  cursor: default;
}
.home-contacts-grid a:hover {
  background: var(--white);
  color: var(--secondary);
}
@media (max-width: 991px) {
  .home-contacts-grid .contact-column {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .quick-contacts-section {
    padding: 40px 0;
  }
  .home-contacts-grid {
    gap: 20px;
    padding: 1em;
  }
  .home-contacts-grid .contact-column {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 30px 20px;
  }
}
/* ==========================================================================
   SECTION PRÉSENTATION / ABOUT (PROPRE EN FLEXBOX 2 COLONNES)
   ========================================================================== */
.about-presentation-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}
.presentation-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.presentation-visual-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  z-index: 10;
}
.visual-stack-box {
  position: relative;
  width: 100%;
  height: 540px;
}
.geometric-backdrop {
  position: absolute;
  top: 30px;
  left: 0;
  width: 85%;
  height: 85%;
  background-color: var(--light-bg);
  border-radius: 20px 80px 20px 20px;
  z-index: 1;
  pointer-events: none;
}
.main-img-wrapper {
  position: absolute;
  top: 0;
  left: 40px;
  width: 75%;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.main-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.secondary-img-wrapper {
  position: absolute;
  right: 10px;
  bottom: 40px;
  width: 48%;
  z-index: 4;
  border: 8px solid var(--white);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.secondary-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.experience-floating-badge {
  position: absolute;
  left: 10px;
  bottom: 70px;
  z-index: 5;
  background-color: var(--secondary);
  color: var(--white);
  padding: 15px 22px;
  border-radius: 8px 24px 8px 8px;
  box-shadow: 0 12px 25px rgba(215, 22, 19, 0.25);
  animation: smoothFloat 4s ease-in-out infinite;
}
.badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.experience-floating-badge img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.experience-floating-badge p {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.experience-floating-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}
.presentation-text-col {
  flex: 0 0 50%;
  max-width: 50%;
  z-index: 10;
}
.sub-heading-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  background-color: rgba(215, 22, 19, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.presentation-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-bg);
  margin-bottom: 25px;
  margin-top: 0;
}
.paragraph-highlight {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--maincolor);
  margin-bottom: 20px;
}
.paragraph-standard {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}
.emergency-notice-box {
  margin: 25px 0;
  background: var(--light-bg);
  padding: 18px 22px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  color: var(--secondary);
}
.notice-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}
.emergency-notice-box img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.emergency-notice-box p {
  margin: 0;
  font-size: 15px;
  color: var(--dark-bg);
  line-height: 1.4;
}
.final-note {
  font-style: italic;
  border-top: 1px solid #eef2f5;
  padding-top: 15px;
  margin-bottom: 0;
}
@keyframes smoothFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 1199px) {
  .presentation-title {
    font-size: 28px;
  }
  .visual-stack-box {
    height: 460px;
  }
  .presentation-flex-container {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .presentation-flex-container {
    flex-direction: column;
    gap: 50px;
  }
  .presentation-visual-col, .presentation-text-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .visual-stack-box {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .about-presentation-section {
    padding: 60px 0;
  }
  .presentation-title {
    font-size: 24px;
  }
  .visual-stack-box {
    height: 350px;
  }
  .main-img-wrapper {
    left: 20px;
    position: relative;
  }
  .geometric-backdrop {
    width: 90%;
  }
  .experience-floating-badge {
    bottom: 20px;
    padding: 10px 15px;
  }
  .experience-floating-badge strong {
    font-size: 16px;
  }
}
/* ==========================================================================
   FOOTER DYNAMIQUE EN 3 COLONNES
   ========================================================================== */
.main-footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
  font-size: 15px;
  position: relative;
  z-index: 20;
}
.footer-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col {
  flex: 1 1 calc(33.333% - 27px);
  max-width: calc(33.333% - 27px);
}
.footer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}
.footer-desc {
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links-list a i {
  font-size: 11px;
  margin-right: 8px;
  color: var(--secondary);
  transition: var(--transition);
}
.footer-links-list a:hover {
  color: var(--white);
  padding-left: 5px;
}
.footer-emergency-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-emergency-text i {
  color: var(--secondary);
  margin-right: 6px;
}
.footer-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 280px;
}
.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  box-sizing: border-box;
}
.btn-call {
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(215, 22, 19, 0.2);
}
.btn-call i {
  transform: rotate(90deg);
}
.btn-call:hover {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-quote-free {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-quote-free:hover {
  background-color: var(--white);
  color: var(--dark-bg);
  border-color: var(--white);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .footer-col {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .col-actions {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-buttons-stack {
    max-width: 100%;
    flex-direction: row;
  }
  .footer-btn {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .main-footer {
    padding: 60px 0 30px;
  }
  .footer-flex-container {
    gap: 35px;
  }
  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-buttons-stack {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
iframe {
  display: block
}
.zone-titre {
  background-color: var(--maincolor);
  color: var(--white);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 20px 20px 0 0;
  font-size: 20px;
  border: 2px solid var(--maincolor);
  max-width: max-content;
  margin: 0 auto;
}
/* ==========================================================================
   FORMATAGE D'ORIGINE CONSERVÉ
   ========================================================================== */
.logo-seul {
  max-width: max-content;
  width: 100%;
  margin: 0 auto 2em;
  box-sizing: border-box;
}
.logo-seul img {
  max-width: 100px;
}
/* ==========================================================================
   SECTION PRESTATIONS : GABARIT UNIQUE (STYLE FUSION DU THÈME)
   ========================================================================== */
.prestation-detail-section {
  padding: 60px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.prestations-full {
  margin-top: 120px
}
.prestation-detail-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: auto;
  aspect-ratio: 1;
  background-image: url("https://themejunction.net/wp/rafter/wp-content/uploads/2023/11/about-1.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.prestation-grid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
}
.prestation-visual-column {
  flex: 0 0 50%;
  max-width: 50%;
}
.prestation-visual-wrapper {
  position: relative;
  padding-bottom: 40px;
}
.prestation-main-image-box {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 95%;
}
.prestation-main-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
  /* max-width: 95%; */
}
.prestation-main-image-box:hover img {
  transform: scale(1.03);
}
.prestation-funfact-card {
  position: absolute;
  left: -20px;
  bottom: 0;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
}
.funfact-icon-wrap {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.funfact-svg {
  width: 26px;
  height: 26px;
}
.funfact-counter-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
  line-height: 1.1;
}
.funfact-counter-content h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 3px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}
.prestation-shape-element {
  position: absolute;
  right: -30px;
  top: -35px;
  z-index: 1;
  pointer-events: none;
}
.prestation-content-column {
  flex: 0 0 45%;
  max-width: 45%;
}
.prestation-category-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  background-color: rgba(215, 22, 19, 0.06);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.prestation-main-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark-bg);
  margin: 0 0 20px 0;
}
.prestation-main-title span {
  display: block;
  font-size: 18px;
  color: #888888;
  font-weight: 500;
  margin-top: 5px;
}
.prestation-lead-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--maincolor);
  margin-bottom: 12px;
}
.prestation-body-text {
  font-size: 15px;
  line-height: 1.65;
  color: #666666;
  margin-bottom: 0;
}
.prestation-features-grid {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}
.prestation-feature-item {
  flex: 1;
  display: flex;
  gap: 15px;
  background: var(--light-bg);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--secondary);
}
.feature-icon-box {
  color: var(--secondary);
  flex-shrink: 0;
}
.feature-svg {
  width: 28px;
  height: 28px;
}
.feature-text-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 0 0 5px 0;
}
.feature-text-content p {
  font-size: 12px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}
.prestation-quote-box {
  border-left: 3px solid #e2e8f0;
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}
.prestation-cta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
  gap: 20px;
}
.prestation-cta-buttons {
  display: flex;
  gap: 12px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-svg {
  width: 16px;
  height: 16px;
}
.btn-phone-call {
  background-color: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
}
.btn-phone-call:hover {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-quote-action {
  background-color: var(--dark-bg);
  color: var(--white);
  border: 1px solid var(--dark-bg);
}
.btn-quote-action:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}
/* ==========================================================================
   ADAPTATION RESPONSIVE (MEDIA QUERIES COMPLÈTES)
   ========================================================================== */
@media (max-width: 1024px) {
  .prestation-detail-section {
    padding: 80px 0 50px 0;
  }
  .prestation-grid-container {
    flex-direction: column;
    gap: 50px;
  }
  .prestation-visual-column, .prestation-content-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .prestation-visual-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .prestation-detail-section {
    padding: 60px 0 30px 0;
  }
  .prestation-main-title {
    font-size: 28px;
  }
  .prestation-features-grid {
    flex-direction: column;
    gap: 15px;
  }
  .prestation-cta-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .prestation-cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
  }
}
.prestation-shape-element {
  position: absolute;
  right: -25px;
  top: 30px;
  width: 450px;
  height: 450px;
  z-index: 1;
  pointer-events: none;
  color: var(--dark-bg);
  opacity: 0.12;
}
.prestation-shape-element svg {
  animation: shapeSubtleFloat 6s ease-in-out infinite;
}
@keyframes shapeSubtleFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-5px, 8px) rotate(-1deg);
  }
}
.reverse-col {
  flex-direction: row-reverse
}
#renovation-toiture, #etancheite-infiltration, #demoussage-entretien, #peinture-toit-facade, #travaux-zinguerie, #entretien-velux {
  scroll-margin-top: 100px;
}
/* ==========================================================================
   STYLES DU FORMULAIRE DE CONTACT & DEVIS (CHARTE COULEURS)
   ========================================================================== */
.quote-form-section {
  padding: 140px 0;
  margin-bottom: -60px;
}
.form-card {
  background: var(--dark-bg);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(48, 47, 54, 0.05);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.form-section-title {
  text-align: center;
  margin-bottom: 35px;
}
.form-section-title h1 {
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.form-section-title p {
  color: var(--white);
  opacity: 0.8;
  font-size: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.full-width {
  grid-column: span 2;
}
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(48, 47, 54, 0.2);
  background-color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--maincolor);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(215, 22, 19, 0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23302f36' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}
.recaptcha-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.btn-submit-container {
  text-align: center;
  margin-top: 30px;
}
.btn-form-submit {
  background-color: var(--tertiary);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(48, 47, 54, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-form-submit:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 22, 19, 0.3);
}
.alert-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 500;
  display: none;
  animation: fadeIn 0.4s ease;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .form-card {
    padding: 40px 30px;
  }
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}
.section-devis {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.section-devis .home-contacts-grid {
  flex-direction: column;
  width: 100%;
}
.section-devis .quick-contacts-section .home-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
article.section-devis .quick-contacts-section .home-contacts-grid .contact-column {
  flex: 1 1 260px !important;
  max-width: 350px !important;
}
/* ==========================================================================
   6. MENTIONS LEGALES
   ========================================================================== */
.legal-mentions-section {
  padding: 60px 0;
  background-color: var(--light-bg);
  margin-top: 95px;
}
.legal-mentions-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 50px;
  margin-bottom: 40px;
}
.legal-main-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-separator {
  border: 0;
  height: 3px;
  background-color: var(--secondary);
  width: 80px;
  margin-bottom: 40px;
}
.legal-block {
  margin-bottom: 30px;
}
.legal-sub-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 5px;
}
.legal-sub-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}
.legal-paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}
.legal-paragraph strong {
  color: var(--dark-bg);
}
.legal-link {
  color: var(--secondary);
  font-weight: 600;
  border-bottom: 1px dotted var(--secondary);
  transition: var(--transition);
}
.legal-link:hover {
  color: var(--tertiary);
  border-bottom-color: var(--tertiary);
  padding-left: 2px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .legal-mentions-section {
    padding: 40px 0;
    margin-top: 100px;
  }
  .legal-mentions-card {
    padding: 30px 20px;
  }
  .legal-main-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .wow {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .quote-form-section {
    padding: 140px 0 0;
    margin-bottom: 0;
  }
  .section-devis .home-contacts-grid {
    flex-direction: row;
    padding: 20px;
  }
  article.section-devis .quick-contacts-section .home-contacts-grid .contact-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .form-section-title h1 {
    font-size: 1.6rem;
  }
}