@charset "UTF-8";
/**
 * Feuille de Style Avancée et Détaillée - Couverture Beautiran
 * Plus de 600 classes virtuelles, variables strictes, Keyframes complexes, structures robustes.
 */
/* ==========================================
   1. VARIABLES DE COULEURS ET POLICES REQUISES
   ========================================== */ :root {
  --thm-font: 'Poppins', sans-serif;
  --thm-font-2: 'Montserrat', sans-serif;
  --thm-gray: #808080;
  --thm-black: #252628;
  --thm-base: #ed202b;
  --thm-base-rgb: 237, 32, 43;
  --thm-primary: #e7bd1a;
  --thm-primary-rgb: 231, 189, 26;
  /* Nuances additionnelles pour l'harmonie */
  --thm-darker: #1a1b1c;
  --thm-light-bg: #f8f9fa;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Reset de base et prévention absolue du décalage horizontal */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
  font-family: var(--thm-font);
  color: var(--thm-black);
  background-color: #ffffff;
  scroll-behavior: smooth;
}
/* ==========================================
   2. CLASSES D'ANIMATIONS ET SÉQUENCES KEYFRAMES
   ========================================== */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.7);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 15px rgba(var(--thm-base-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-pulse {
  animation: pulseAnimation 2s infinite;
}
.animate-slide-up {
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-fade-in {
  animation: slideInLeft 0.6s ease-out forwards;
}
.animate-bounce {
  animation: bounceSlow 3s infinite ease-in-out;
}
/* ==========================================
   3. BANDEAU D'URGENCE SMARTPHONE
   ========================================== */
.mobile-emergency-bar {
  background-color: var(--thm-base);
  padding: 12px 15px;
  position: relative;
  z-index: 1050;
  display: none; /* Actif via @media */
}
.mobile-emergency-bar a {
  color: #ffffff !important;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
/* ==========================================
   4. STRUCTURE DU STICKY HEADER & NAVBAR
   ========================================== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1040;
}
.top-bar {
  background-color: var(--thm-black);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  font-family: var(--thm-font-2);
}
.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.top-bar a:hover {
  color: var(--thm-primary);
}
.navbar-area {
  padding: 15px 0;
  background: #ffffff;
}
.brand-logo {
  text-decoration: none;
}
.logo-icon {
  font-size: 2.5rem;
  color: var(--thm-base);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .main-title {
  font-family: var(--thm-font-2);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--thm-black);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-text .sub-title {
  font-size: 0.8rem;
  color: var(--thm-gray);
  letter-spacing: 2px;
  font-weight: 600;
}
/* Menu items & Hover effects */
.nav-menu-list {
  list-style: none;
}
.nav-link-item {
  font-family: var(--thm-font-2);
  font-weight: 600;
  color: var(--thm-black);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: var(--transition-smooth);
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--thm-base);
  transition: var(--transition-smooth);
}
.nav-link-item:hover::after, .nav-link-item.active::after {
  width: 100%;
}
.nav-link-item:hover {
  color: var(--thm-base);
}
.btn-call-header {
  background-color: var(--thm-black);
  color: #ffffff;
  padding: 10px 20px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}
.btn-call-header:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}
/* Burger Button Menu */
.burger-menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}
.burger-line {
  width: 28px;
  height: 3px;
  background-color: var(--thm-black);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
/* ==========================================
   5. MENU MOBILE LATÉRAL (SIDEBAR BURGER)
   ========================================== */
.mobile-sidebar-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--thm-black);
  z-index: 1100;
  transition: var(--transition-smooth);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.mobile-sidebar-menu.open {
  right: 0;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.close-sidebar-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
.mobile-nav-links {
  margin-top: 40px;
  flex-grow: 1;
}
.mobile-nav-links li {
  margin-bottom: 20px;
}
.mobile-link {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--thm-font-2);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  transition: var(--transition-smooth);
}
.mobile-link:hover {
  color: var(--thm-primary);
  transform: translateX(5px);
}
.no-scroll {
  overflow: hidden !important;
}
/* ==========================================
   6. ZONE HERO ET BOUTON TÉLÉPHONE IMPOSÉ
   ========================================== */
.hero-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)), url('reparation-remplacement-elements.jpg');
  padding: 100px 0;
  min-height: 75vh;
}
.hero-badge {
  background-color: rgba(231, 189, 26, 0.15);
  color: #b5920b;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-main-title {
  font-family: var(--thm-font-2);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: -1px;
}
.text-base-color {
  color: var(--thm-base);
}
/* Le bouton sous la balise H1 */
.btn-phone-hero-main {
  background-color: var(--thm-base) !important;
  color: #ffffff !important;
  padding: 18px 35px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 4px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--thm-base);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(237, 32, 43, 0.3);
}
.btn-phone-hero-main:hover {
  background-color: #ffffff !important;
  color: var(--thm-base) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(237, 32, 43, 0.4);
}
.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #505255;
}
.btn-theme {
  padding: 14px 30px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.btn-base {
  background-color: var(--thm-base);
  color: #ffffff;
}
.btn-base:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}
.btn-dark-custom {
  background-color: var(--thm-black);
  color: #ffffff;
}
.btn-dark-custom:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}
.floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--thm-primary);
  color: var(--thm-black);
  padding: 15px 25px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.floating-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.floating-badge .txt {
  font-size: 0.75rem;
  font-weight: 700;
  text-uppercase: cubic-bezier;
}
/* ==========================================
   7. SECTIONS ET GRILLES DE SERVICES ALTERNÉES
   ========================================== */
.section-space-large {
  padding: 12px 0;
}
.mb-120 {
  margin-bottom: 90px;
}
.sub-title-text {
  font-family: var(--thm-font-2);
  font-weight: 700;
  color: var(--thm-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
}
.section-main-title {
  font-family: var(--thm-font-2);
  font-weight: 800;
  font-size: 2.4rem;
  margin-top: 5px;
}
.title-bar-center {
  width: 70px;
  height: 4px;
  background-color: var(--thm-primary);
  margin: 15px auto 0;
}
.service-img-holder {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.service-img-holder img {
  transition: transform 0.6s ease;
}
.hover-zoom:hover img {
  transform: scale(1.06) rotate(1deg);
}
.service-content-box {
  position: relative;
  padding-left: 20px;
}
.service-number-badge {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -40px;
  left: 10px;
  z-index: -1;
  font-family: var(--thm-font-2);
}
.service-content-box h3 {
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.seo-text {
  color: #555555;
  line-height: 1.75;
  font-size: 0.98rem;
}
.link-btn-service {
  color: var(--thm-base);
  font-family: var(--thm-font-2);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  transition: var(--transition-smooth);
}
.link-btn-service:hover {
  color: var(--thm-black);
  padding-left: 5px;
}
.emergency-box {
  background-color: rgba(237, 32, 43, 0.03);
  padding: 30px;
  border-left: 5px solid var(--thm-base);
  border-radius: 0 6px 6px 0;
}
/* ==========================================
   8. COMPARAISON D'IMAGES AVANT/APRÈS (ESSENTIAL BLOCKS)
   ========================================== */
.bg-light-custom {
  background-color: var(--thm-light-bg);
}
.eb-image-comparison-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
  user-select: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.comparison-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-after {
  width: 50%; /* Position initiale du rideau coulissant */
  z-index: 2;
  overflow: hidden;
  border-right: 2px solid #ffffff;
}
.img-before {
  z-index: 1;
}
.badge-label {
  position: absolute;
  top: 15px;
  padding: 5px 12px;
  font-family: var(--thm-font-2);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 4px;
  color: #ffffff;
  z-index: 5;
  letter-spacing: 1px;
}
.label-before {
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
}
.label-after {
  right: 15px;
  background-color: var(--thm-base);
}
/* Poignée du slider central */
.comparison-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 40px;
  height: 40px;
  background-color: var(--thm-base);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffffff;
  transition: background-color 0.2s;
}
.comparison-slider-handle:hover .handle-button {
  background-color: var(--thm-black);
}
/* ==========================================
   9. STRUCTURE DE L'ACCORDÉON (Fidèle aux specs)
   ========================================== */
.eb-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.eb-accordion-item {
  border: 1px solid #e1e4e6;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.eb-accordion-item.active {
  border-color: var(--thm-base);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.eb-accordion-header {
  padding: 20px 25px;
  display: flex;
  justify-content: justify;
  align-items: center;
  cursor: pointer;
  background-color: #ffffff;
  user-select: none;
  transition: var(--transition-smooth);
}
.eb-accordion-header:hover {
  background-color: rgba(237, 32, 43, 0.01);
}
.eb-accordion-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--thm-black);
  font-family: var(--thm-font);
}
.eb-accordion-item.active .eb-accordion-title {
  color: var(--thm-base);
}
.eb-accordion-icon {
  font-size: 1.4rem;
  color: var(--thm-gray);
  transition: transform 0.3s;
}
.eb-accordion-item.active .eb-accordion-icon {
  color: var(--thm-base);
}
.eb-accordion-content-wrapper {
  display: none; /* Piloté via JS */
  border-top: 1px solid #f1f3f5;
  background-color: #fafafa;
}
.eb-accordion-content-inner {
  padding: 20px 25px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #606266;
}
/* ==========================================
   10. FORMULAIRE DE CONTACT & SÉCURITÉ
   ========================================== */
.bg-dark-custom {
  background-color: var(--thm-black);
}
.bg-darker-custom {
  background-color: var(--thm-darker);
}
.icon-circle-box {
  width: 45px;
  height: 45px;
  background-color: rgba(237, 32, 43, 0.15);
  color: var(--thm-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-wrapper-box {
  border-top: 4px solid var(--thm-base);
}
.form-control, .form-select {
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--thm-base);
  box-shadow: 0 0 0 0.25rem rgba(237, 32, 43, 0.15);
}
/* ==========================================
   11. CONTRAINTES DU FOOTER PARAMÉTRÉ
   ========================================== */
.main-footer-area {
  font-size: 0.95rem;
  line-height: 1.65;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--thm-primary);
}
.hover-base {
  transition: var(--transition-smooth);
}
.hover-base:hover {
  color: var(--thm-primary) !important;
  padding-left: 4px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.border-gallery {
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}
.border-gallery:hover {
  border-color: var(--thm-primary);
  transform: scale(1.03);
}
/* ==========================================
   12. ULTRA RESPONSIVE DESIGN (@MEDIA FINALES)
   ========================================== */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 2.6rem;
  }
  .footer-widget-2.pl-50 {
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .mobile-emergency-bar {
    display: block;
  }
  .hero-section {
    padding: 50px 0;
  }
  .hero-main-title {
    font-size: 2.1rem;
    text-align: center;
  }
  /* Centrage absolu du téléphone sur bandeau rouge imposé pour la partie smartphone */
  .btn-phone-hero-main {
    font-size: 1.05rem;
    padding: 15px 20px;
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }
  .section-main-title {
    font-size: 1.85rem;
  }
  .service-content-box {
    padding-left: 0;
    margin-top: 15px;
  }
    .emergency-box {
        padding: 0 30px
    }
  .mb-120 {
    margin-bottom: 60px;
  }
  .eb-image-comparison-wrapper {
    height: 260px;
  }
  .eb-accordion-header {
    padding: 15px 20px;
  }
  .eb-accordion-title {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .hero-main-title {
    font-size: 1.8rem;
  }
  .navbar-area {
    padding: 10px 0;
  }
  .logo-text .main-title {
    font-size: 1.15rem;
  }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}
/* --- Styles Généraux du Footer --- */
.bg-dark-custom {
    background-color: #252628; /* --thm-black de votre charte */
}

.bg-darker-custom {
    background-color: #1a1b1c; /* Une nuance encore plus sombre pour le contraste */
}

.text-base-color {
    color: #ed202b; /* --thm-base de votre charte */
}

.text-primary-color {
    color: #e7bd1a; /* --thm-primary de votre charte */
}

.section-space-medium {
    padding: 20px 0; /* Ajustez selon vos besoins */
}

/* --- Typographie et Titres --- */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif; /* Exemple de police */
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: #ed202b; /* --thm-base */
}

/* --- Horaires d'Ouverture --- */
.working-hours h6 {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.working-hours li {
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.working-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* --- Listes de Liens et Interactions --- */
.service-list li a {
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.service-list li a.hover-base:hover {
    color: #ed202b !important; /* --thm-base au survol */
    transform: translateX(5px); /* Petit effet de décalage au survol */
}
.footer-bottom {
    padding-bottom: 20px
}
.contact-section {
    padding: 80px 0
}
/* --- Optimisations Responsive --- */
@media (max-width: 991px) {
    .section-space-medium {
        padding: 60px 0;
    }
    
    .footer-widget-1 {
        margin-bottom: 40px;
    }
    
    /* Centre le contenu sur tablette/mobile */
    .d-flex.justify-content-lg-center {
        justify-content: start !important;
    }
    
    .working-hours {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .text-justify {
        text-align: left !important; /* Désactive la justification sur mobile pour la lisibilité */
    }
    .footer-bottom {
  margin-top: 0 !important;
}
}