@charset "UTF-8";
/* CSS Document */
/* RESET SYSTEM & BASICS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: #ffffff;
  color: #222222;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row {
  margin-right: 0;
  margin-left: 0;
}
img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
a {
  text-decoration: none;
  transition: all 0.3s ease;
}
/* TOP BAR STYLE */
.top-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 2px solid #fda12b;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info span, .top-hours span {
  margin-right: 20px;
}
.top-info i, .top-hours i {
  color: #fda12b;
  margin-right: 5px;
}
.top-info a {
  color: #ffffff;
}
.top-info a:hover {
  color: #fda12b;
}
/* NAVBAR */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 320px;
}
.logo a {
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo a span {
  color: #fda12b;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu a {
  color: #000000;
  font-weight: 600;
  margin-left: 20px;
  font-size: 14px;
  padding: 5px 0;
}
.nav-menu a:hover:not(.btn-nav) {
  color: #fda12b;
}
.btn-nav {
  background-color: #fda12b;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: bold;
}
.btn-nav:hover {
  background-color: #000000;
}
.burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #000000;
  cursor: pointer;
}
/* BANDEAU MOBILE D'URGENCE ROUGE */
.mobile-call-banner {
  display: none;
}
/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('couverture.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}
.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-content p {
  font-size: 18px;
  color: #f1f1f1;
  max-width: 850px;
  margin: 0 auto 30px auto;
}
.btn-hero-phone {
  display: inline-block;
  background-color: #db0000;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 35px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(219, 0, 0, 0.4);
}
.btn-hero-phone:hover {
  background-color: #ffffff;
  color: #db0000;
  transform: translateY(-2px);
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.btn-primary-custom {
  background-color: #fda12b;
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 4px;
}
.btn-primary-custom:hover {
  background-color: #ffffff;
  color: #fda12b;
}
.btn-secondary-custom {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 4px;
}
.btn-secondary-custom:hover {
  background-color: #ffffff;
  color: #000000;
}
/* SECTION COMMUNE */
.section-padding {
  padding: 70px 0;
}
.bg-light-custom {
  background-color: #f9f9f9;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #fda12b;
  margin: 15px auto 0 auto;
}
.section-subtitle {
  text-align: center;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 45px auto;
  font-size: 16px;
}
/* GRILLE PRESTATIONS COMPLÈTE (6 BLOCKS) */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.presta-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.presta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.presta-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.presta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.presta-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.presta-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
}
.presta-content p {
  font-size: 14.5px;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.5;
}
.presta-link {
  font-weight: 700;
  color: #fda12b;
  font-size: 14px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.presta-link:hover {
  color: #000000;
}
/* ACCORDION FAQ (ESSENTIAL BLOCKS STYLE) */
.eb-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}
.eb-accordion-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.eb-accordion-header {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}
.eb-accordion-header:hover {
  background-color: #fffaf4;
}
.eb-accordion-title {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0;
}
.eb-accordion-icon {
  font-size: 20px;
  color: #fda12b;
  transition: transform 0.3s ease;
  font-weight: bold;
}
.eb-accordion-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
.eb-accordion-content {
  padding: 0 25px 20px 25px;
  color: #444444;
  font-size: 14.5px;
  line-height: 1.6;
  border-top: 1px solid transparent;
}
/* Classes d'activation via JS ou fallback */
.eb-accordion-item.active .eb-accordion-content-wrap {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}
.eb-accordion-item.active .eb-accordion-icon {
  transform: rotate(45deg);
}
.eb-accordion-item.active .eb-accordion-content {
  border-top: 1px solid #eee;
}
/* PARALLAX & ENGAGEMENT */
.cta-banner {
  background: linear-gradient(rgba(253, 161, 43, 0.9), rgba(227, 69, 0, 0.9)), url('cta-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
}
.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.cta-banner p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px auto;
}
.btn-white {
  background-color: #ffffff;
  color: #fda12b;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 4px;
}
.btn-white:hover {
  background-color: #000000;
  color: #ffffff;
}
/* FOOTER */
.site-footer {
  background-color: #111111;
  color: #ffffff;
  padding: 5px 0 0 0;
  font-size: 14px;
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 45px 0;
}
.footer-widget h3 {
  font-size: 18px;
  color: #fda12b;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-widget p {
  color: #bbb;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #bbb;
}
.footer-links a:hover {
  color: #fda12b;
  padding-left: 5px;
}
.footer-bottom {
  background-color: #000000;
  text-align: center;
  padding: 20px 0;
  color: #888;
  border-top: 1px solid #222;
}
/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .mobile-call-banner {
    display: block;
    background-color: #db0000;
    text-align: center;
    padding: 14px 10px;
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  .mobile-call-banner a {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    display: block;
    letter-spacing: 0.5px;
  }
  .main-header {
    position: relative;
    top: 0;
  }
  .burger-menu {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  .prestations-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons a {
    width: 100%;
    max-width: 300px;
  }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}