@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - Palette Teal + Orange */
:root {
  --background-color: #ffffff;
  --default-color: #4a5568;
  --heading-color: #212529; /* Noir */
  --accent-color: #3d991f; /* Vert */
  --cta-color: #F39C12; /* Orange */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #e5eaee;
  --nav-hover-color: #F39C12; /* Orange */
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4a5568;
  --nav-dropdown-hover-color: #F39C12; /* Orange */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/* Global Accent Button
------------------------------*/
.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: none;
}
.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 56px;
  margin-right: 8px;
}
.header .logo h1 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--cta-color);
  border-color: var(--cta-color);
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .logo img {
    max-height: 36px;
  }
  .header .logo h1 {
    font-size: 18px;
    white-space: nowrap;
  }
  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
    font-size: 11px;
  }
}
@media (max-width: 1200px) and (max-width: 480px) {
  .header .cta-btn {
    padding: 8px;
    margin: 0 10px 0 0;
    font-size: 16px;
    line-height: 1;
    border-radius: 50%;
  }
  .header .cta-btn span {
    display: none;
  }
  .header .cta-btn i {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(33, 34, 34, 0.97);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) ul li {
    min-width: 200px;
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) ul a:hover,
  .navmenu .dropdown:not(.mega-menu-dropdown) ul .active:hover,
  .navmenu .dropdown:not(.mega-menu-dropdown) ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:not(.mega-menu-dropdown):hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown:not(.mega-menu-dropdown) .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .mega-menu-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
    background: transparent;
  }
  .navmenu .mega-menu-dropdown .mega-menu {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 700px;
    padding: 20px;
    gap: 10px;
    background: var(--nav-dropdown-background-color);
    border-radius: 4px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 14px;
    z-index: 99;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col {
    flex: 1;
    min-width: 0;
    padding: 0;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col h5 a {
    color: var(--accent-color);
    padding: 0;
    font-size: 14px;
    font-weight: 700;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col h5 a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul {
    position: static;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li {
    min-width: auto;
    padding: 0;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li a {
    padding: 6px 0;
    font-size: 13px;
    display: block;
    color: var(--nav-dropdown-color);
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 5px;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li.see-all {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li.see-all a {
    color: var(--accent-color);
    font-weight: 600;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li.see-all a i {
    margin-left: 5px;
  }
  .navmenu .mega-menu-dropdown:hover > .mega-menu {
    display: flex;
  }
  .navmenu .btn-devis-nav {
    background: var(--accent-color);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    font-weight: 400 !important;
    transition: 0.3s;
  }
  .navmenu .btn-devis-nav:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
  }
  .navmenu .btn-devis-nav:before {
    display: none !important;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .navmenu .mega-menu-dropdown .mega-menu {
    flex-direction: column;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent-color);
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col h5 a {
    color: var(--accent-color);
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul {
    margin: 0 0 10px;
    padding: 0;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li a {
    padding: 8px 10px;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li.see-all {
    margin-top: 5px;
  }
  .navmenu .mega-menu-dropdown .mega-menu .mega-menu-col > ul li.see-all a {
    color: var(--accent-color);
    font-weight: 600;
  }
  .navmenu .btn-devis-nav {
    background: var(--accent-color);
    color: #fff !important;
    margin: 10px 20px;
    padding: 12px 20px !important;
    border-radius: 4px;
    text-align: center;
    justify-content: center;
    font-weight: 400 !important;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/* Nav text sans lien (départements sans page) */
.navmenu .nav-text {
  padding: 10px 20px;
  font-size: 15px;
  color: #4a5568;
  display: block;
  font-family: var(--nav-font);
  font-weight: 500;
}

@media (max-width: 1199px) {
  .navmenu .nav-text {
    padding: 10px 20px;
    font-size: 17px;
    color: #4a5568;
    display: block;
    font-family: var(--nav-font);
    font-weight: 500;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.footer .social-links a,
.footer .social-links .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover,
.footer .social-links .social-icon:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}
.footer .footer-links ul li {
  padding: 10px 0;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul li {
  display: flex;
  align-items: center;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footer .footer-arrondissements li {
  display: block !important;
  padding: 6px 0 !important;
  line-height: 1.4;
}
.footer .footer-arrondissements li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}
.footer .footer-arrondissements li a:hover {
  color: var(--accent-color);
}
.footer .footer-contact a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.footer .footer-contact a:hover {
  color: var(--accent-color);
}
.footer h4 a {
  color: var(--heading-color);
}
.footer h4 a:hover {
  color: var(--accent-color);
}
.footer .btn-success {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #fff !important;
}
.footer .btn-success:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%) !important;
  border-color: color-mix(in srgb, var(--accent-color), #000 15%) !important;
}
.footer .text-success {
  color: var(--accent-color) !important;
}
.footer .text-success:hover {
  color: color-mix(in srgb, var(--accent-color), #fff 20%) !important;
}
.footer .footer-zone ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer .footer-zone ul li:nth-child(-n+2) {
  padding-top: 0;
}
.footer .footer-zone .zone-title {
  margin: 0 0 12px 0;
  font-weight: 600;
}
.footer .footer-zone .zone-title a {
  color: var(--heading-color);
  font-size: 14px;
}
.footer .footer-zone .zone-title a:hover {
  color: var(--accent-color);
}
.footer .footer-zone .arrondissements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.footer .footer-zone .arrondissements-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 4px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  transition: 0.2s;
}
.footer .footer-zone .arrondissements-grid a sup {
  font-size: 9px;
  margin-left: 1px;
}
.footer .footer-zone .arrondissements-grid a:hover {
  background: var(--accent-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}
.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  line-height: 1.2;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  color: #4a4a4a;
  position: relative;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
@media (max-width: 768px) {
  .section-title h2::after {
    display: block;
    margin: 10px auto 0;
  }
}
.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h1 {
  margin: 0 0 20px 0;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero .hero-description {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  font-size: 18px;
  line-height: 1.6;
}
.hero .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
  justify-content: center;
}
.hero .btn-devis {
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--accent-color);
}
.hero .btn-devis:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}
.hero .btn-phone {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid #fff;
}
.hero .btn-phone i {
  font-size: 18px;
}
.hero .btn-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.hero .hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.hero .trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.hero .trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.hero .trust-badge i {
  font-size: 28px;
  color: var(--cta-color);
}
.hero .trust-badge span {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
}
.hero .trust-badge span strong {
  font-size: 14px;
  display: block;
}
.hero .hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.hero .hero-features li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero .hero-features li i {
  color: #2ecc71;
  font-size: 20px;
}
.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}
.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}
.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero h2 {
    font-size: 32px;
  }
  .hero .hero-description {
    font-size: 16px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero .hero-btns {
    flex-direction: column;
  }
  .hero .btn-devis,
  .hero .btn-phone {
    text-align: center;
    justify-content: center;
  }
  .hero .hero-trust-badges {
    gap: 10px;
  }
  .hero .trust-badge {
    padding: 10px 14px;
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }
  .hero .trust-badge i {
    font-size: 24px;
  }
  .hero .trust-badge span {
    font-size: 11px;
  }
  .hero .trust-badge span strong {
    font-size: 12px;
  }
}
.hero .breadcrumbs {
  margin-top: 10px;
}
.hero .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.hero .breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.hero .breadcrumbs ol a .bi-house-door-fill {
  font-size: 16px;
  vertical-align: -1px;
}
.hero .breadcrumbs ol a:hover {
  color: #fff;
  text-decoration: underline;
}
.hero .breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.9);
}
.hero .breadcrumbs ol li + li {
  padding-left: 10px;
}
.hero .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works {
  padding: 60px 0;
}
.how-it-works .section-title {
  margin-bottom: 40px;
}
.how-it-works .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.how-it-works .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}
.how-it-works .step-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  height: 100%;
}
.how-it-works .step-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.how-it-works .step-card:hover .step-icon i {
  color: #fff;
  background: var(--accent-color);
}
.how-it-works .step-card .step-icon {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.how-it-works .step-card .step-icon .step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: var(--cta-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.how-it-works .step-card .step-icon i {
  font-size: 48px;
  color: var(--accent-color);
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: 0.3s;
}
.how-it-works .step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.how-it-works .step-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 0;
  }
  .how-it-works .section-title h2 {
    font-size: 26px;
  }
  .how-it-works .step-card {
    padding: 30px 20px;
  }
  .how-it-works .step-card .step-icon i {
    font-size: 40px;
    width: 70px;
    height: 70px;
  }
  .how-it-works .step-card h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Formules Section
--------------------------------------------------------------*/
.formules {
  padding: 60px 0;
}
.formules .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.formules .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.formules .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.formules .formule-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.formules .formule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}
.formules .formule-card.highlight {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}
.formules .formule-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.formules .formule-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  flex-grow: 1;
  margin-bottom: 20px;
}
.formules .formule-card .formule-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.formules .formule-card .formule-badge.formule-best {
  background: var(--accent-color);
  color: #fff;
}
.formules .formule-card.popular {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}
.formules .formule-card.popular .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.formules .formule-card .formule-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: var(--accent-color);
  color: #fff;
}
.formules .formule-card .formule-icon i {
  color: #fff;
  font-size: 32px;
}
.formules .formule-card .formule-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.formules .formule-card .formule-icon.icon-gratuit {
  background: color-mix(in srgb, #27ae60, transparent 85%);
  color: #27ae60;
}
.formules .formule-card .formule-icon.icon-remise {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}
.formules .formule-card .formule-icon.icon-payant {
  background: color-mix(in srgb, var(--cta-color), transparent 85%);
  color: var(--cta-color);
}
.formules .formule-card .formule-title {
  text-align: center;
  margin-bottom: 15px;
}
.formules .formule-card .formule-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}
.formules .formule-card .formule-title .formule-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}
.formules .formule-card .formule-title .formule-price.price-gratuit {
  color: #27ae60;
}
.formules .formule-card .formule-title .formule-price.price-payant {
  color: var(--cta-color);
}
.formules .formule-card .formule-description {
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.formules .formule-card .formule-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.formules .formule-card .formule-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.formules .formule-card .formule-features li:last-child {
  border-bottom: none;
}
.formules .formule-card .formule-features li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.formules .formule-card .formule-features li.highlight {
  font-weight: 600;
  color: var(--heading-color);
}
.formules .formule-card .formule-cta {
  text-align: center;
  margin-top: auto;
}
.formules .formule-card .formule-cta a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}
.formules .formule-card .formule-cta a.btn-primary {
  background: var(--cta-color);
  color: #fff;
}
.formules .formule-card .formule-cta a.btn-primary:hover {
  background: color-mix(in srgb, var(--cta-color), #000 15%);
  transform: translateY(-2px);
}
.formules .formule-card .formule-cta a.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.formules .formule-card .formule-cta a.btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
}
.formules .formule-card .formule-examples {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}
.formules .formule-card .formule-examples .examples-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.formules .formule-card .formule-examples p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}
.formules .formules-note p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.formules .formules-note p i {
  color: var(--accent-color);
  margin-right: 8px;
}
.formules .formules-note p a {
  color: var(--accent-color);
  font-weight: 600;
}
.formules .formules-note p a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .formules .formule-card {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .formules {
    padding: 40px 0;
  }
  .formules .section-header h2 {
    font-size: 26px;
  }
  .formules .formule-card {
    padding: 30px 25px;
  }
}

/*--------------------------------------------------------------
# Tarifs Section
--------------------------------------------------------------*/
.tarifs {
  padding: 60px 0;
}
.tarifs .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.tarifs .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.tarifs .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.tarifs .tarifs-table-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.tarifs .tarifs-table {
  width: 100%;
  border-collapse: collapse;
}
.tarifs .tarifs-table thead {
  background: var(--accent-color);
}
.tarifs .tarifs-table thead th {
  padding: 20px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}
.tarifs .tarifs-table thead th:first-child {
  padding-left: 30px;
}
.tarifs .tarifs-table thead th:last-child {
  text-align: center;
  padding-right: 30px;
}
.tarifs .tarifs-table tbody tr {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}
.tarifs .tarifs-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.tarifs .tarifs-table tbody tr:last-child {
  border-bottom: none;
}
.tarifs .tarifs-table tbody tr.highlight-row {
  background: color-mix(in srgb, var(--cta-color), transparent 92%);
}
.tarifs .tarifs-table tbody tr.highlight-row:hover {
  background: color-mix(in srgb, var(--cta-color), transparent 88%);
}
.tarifs .tarifs-table tbody tr.highlight-row .tarif-price {
  color: var(--cta-color);
}
.tarifs .tarifs-table tbody td {
  padding: 20px 15px;
  vertical-align: middle;
}
.tarifs .tarifs-table tbody td:first-child {
  padding-left: 30px;
}
.tarifs .tarifs-table tbody td:last-child {
  text-align: center;
  padding-right: 30px;
}
.tarifs .tarifs-table .tarif-type {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tarifs .tarifs-table .tarif-type .tarif-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tarifs .tarifs-table .tarif-type .tarif-icon i {
  font-size: 20px;
  color: var(--accent-color);
}
.tarifs .tarifs-table .tarif-type .tarif-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 3px 0;
}
.tarifs .tarifs-table .tarif-type .tarif-info span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.tarifs .tarifs-table .tarif-volume {
  font-size: 14px;
  color: var(--default-color);
}
.tarifs .tarifs-table .tarif-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}
.tarifs .tarifs-table .tarif-price small {
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: block;
}
.tarifs .tarifs-note,
.tarifs .tarifs-info {
  margin-top: 30px;
  padding: 25px 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}
.tarifs .tarifs-note .note-title,
.tarifs .tarifs-note .tarifs-info-title,
.tarifs .tarifs-info .note-title,
.tarifs .tarifs-info .tarifs-info-title {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tarifs .tarifs-note .note-title i,
.tarifs .tarifs-note .tarifs-info-title i,
.tarifs .tarifs-info .note-title i,
.tarifs .tarifs-info .tarifs-info-title i {
  color: var(--accent-color);
}
.tarifs .tarifs-note ul,
.tarifs .tarifs-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tarifs .tarifs-note ul li,
.tarifs .tarifs-info ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--default-color);
}
.tarifs .tarifs-note ul li i,
.tarifs .tarifs-info ul li i {
  color: var(--accent-color);
  margin-right: 10px;
}
.tarifs .tarifs-note ul li strong,
.tarifs .tarifs-info ul li strong {
  color: var(--heading-color);
}
.tarifs .tarifs-note p.tarifs-link,
.tarifs .tarifs-info p.tarifs-link {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 14px;
}
.tarifs .tarifs-note p.tarifs-link a,
.tarifs .tarifs-info p.tarifs-link a {
  color: var(--accent-color);
  font-weight: 600;
}
.tarifs .tarifs-note p.tarifs-link a:hover,
.tarifs .tarifs-info p.tarifs-link a:hover {
  text-decoration: underline;
}
.tarifs .tarifs-cta {
  text-align: center;
  margin-top: 40px;
}
.tarifs .tarifs-cta p {
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.tarifs .tarifs-cta p strong {
  color: var(--accent-color);
}
.tarifs .tarifs-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-color);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.tarifs .tarifs-cta a:hover {
  background: color-mix(in srgb, var(--cta-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--cta-color), transparent 60%);
}
@media (max-width: 768px) {
  .tarifs {
    padding: 40px 0;
  }
  .tarifs .section-header h2 {
    font-size: 26px;
  }
  .tarifs .tarifs-table thead th,
  .tarifs .tarifs-table tbody td {
    padding: 15px 10px;
  }
  .tarifs .tarifs-table thead th:first-child,
  .tarifs .tarifs-table tbody td:first-child {
    padding-left: 15px;
  }
  .tarifs .tarifs-table thead th:last-child,
  .tarifs .tarifs-table tbody td:last-child {
    padding-right: 15px;
  }
  .tarifs .tarifs-table .tarif-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tarifs .tarifs-table .tarif-type .tarif-icon {
    width: 35px;
    height: 35px;
  }
  .tarifs .tarifs-table .tarif-type .tarif-icon i {
    font-size: 16px;
  }
  .tarifs .tarifs-table .tarif-price {
    font-size: 15px;
  }
  .tarifs .tarifs-note {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .tarifs {
    overflow: visible;
  }
  .tarifs .tarifs-table-wrapper {
    background: transparent;
    box-shadow: none;
    padding-bottom: 3px;
  }
  .tarifs .tarifs-table thead {
    display: none;
  }
  .tarifs .tarifs-table tbody {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 2px;
  }
  .tarifs .tarifs-table tbody tr {
    display: block;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 12px;
    box-shadow: none;
    padding: 18px 20px;
    border: none;
  }
  .tarifs .tarifs-table tbody td {
    display: block;
    padding: 5px 0;
    text-align: left !important;
  }
  .tarifs .tarifs-table tbody td:first-child {
    padding-left: 0;
    margin-bottom: 10px;
  }
  .tarifs .tarifs-table tbody td:last-child {
    padding-right: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .tarifs .tarifs-table tbody td:before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
  }
  .tarifs .tarifs-table tbody td:first-child:before, .tarifs .tarifs-table tbody td:last-child:before {
    display: none;
  }
  .tarifs .tarifs-table .tarif-type {
    flex-direction: row;
    align-items: center;
  }
  .tarifs .tarifs-info {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Quote Form Section
--------------------------------------------------------------*/
.quote-form {
  padding: 60px 0;
}
.quote-form .intro-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .quote-form .intro-content h2 {
    font-size: 24px;
  }
}
.quote-form .intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
  text-align: justify;
}
.quote-form .intro-content p strong {
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .quote-form .intro-content p {
    font-size: 15px;
    text-align: left;
  }
}
.quote-form .intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .quote-form .intro-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .quote-form .intro-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.quote-form .intro-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--default-color);
}
.quote-form .intro-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}
.quote-form .intro-highlights .highlight-item span {
  line-height: 1.4;
}
@media (max-width: 576px) {
  .quote-form .intro-highlights .highlight-item {
    font-size: 14px;
  }
  .quote-form .intro-highlights .highlight-item i {
    font-size: 16px;
  }
}

.form-card {
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--accent-color);
  border-radius: 16px 0 0 16px;
}
.form-card .quote-invite {
  text-align: center;
  padding: 40px 20px;
}
.form-card .quote-invite .invite-icon {
  margin-bottom: 20px;
}
.form-card .quote-invite .invite-icon i {
  font-size: 60px;
  color: var(--accent-color);
}
.form-card .quote-invite h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.form-card .quote-invite p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  margin-bottom: 25px;
}
.form-card .quote-invite .btn-start-form {
  background: var(--cta-color);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-card .quote-invite .btn-start-form:hover {
  background: color-mix(in srgb, var(--cta-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--cta-color), transparent 60%);
}
.form-card .quote-invite .btn-start-form i {
  font-size: 20px;
}
.form-card .quote-invite .invite-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.form-card .quote-invite .invite-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.form-card .quote-invite .invite-features span i {
  color: var(--accent-color);
  font-size: 16px;
}
.form-card .form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-card .form-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}
.form-card .form-back {
  margin-bottom: 20px;
}
.form-card .form-back .btn-back {
  background: none;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.form-card .form-back .btn-back:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
}
.form-card .form-group {
  margin-bottom: 20px;
}
.form-card .form-group label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}
.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
  background: #fff;
}
.form-card .form-group input:focus,
.form-card .form-group select:focus,
.form-card .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.form-card .form-group input::placeholder,
.form-card .form-group select::placeholder,
.form-card .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.form-card .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-card .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.form-card .form-row {
  display: flex;
  gap: 20px;
}
.form-card .form-row .form-group {
  flex: 1;
}
@media (max-width: 576px) {
  .form-card .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.form-card .photo-upload {
  position: relative;
  border: 2px dashed color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.form-card .photo-upload:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.form-card .photo-upload.has-files {
  border-style: solid;
  border-color: var(--accent-color);
}
.form-card .photo-upload input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form-card .photo-upload .upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.form-card .photo-upload .upload-placeholder i {
  font-size: 36px;
  color: var(--accent-color);
}
.form-card .photo-upload .upload-placeholder span {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
}
.form-card .photo-upload .upload-placeholder small {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.form-card .photo-upload .photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}
.form-card .photo-upload .photo-preview:empty {
  display: none;
}
.form-card .photo-upload .photo-preview .preview-item {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.form-card .photo-upload .photo-preview .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-card .photo-upload .photo-preview .preview-item .remove-photo {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  padding: 0;
  transition: 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.form-card .photo-upload .photo-preview .preview-item .remove-photo:hover {
  background: #e74c3c;
  transform: scale(1.1);
}
.form-card .form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-card .form-submit button {
  background: var(--cta-color);
  color: #fff;
  border: none;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-card .form-submit button i {
  font-size: 18px;
}
.form-card .form-submit button:hover {
  background: color-mix(in srgb, var(--cta-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--cta-color), transparent 60%);
}
.form-card .form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.form-card .form-footer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}
.form-card .form-footer p i {
  color: var(--cta-color);
  margin-right: 5px;
}
.form-card .form-footer p.small-text {
  margin-top: 10px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.form-card .form-footer .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 30px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.form-card .form-footer .phone-link:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 768px) {
  .form-card {
    padding: 30px 20px;
  }
  .form-card .form-header h2 {
    font-size: 26px;
  }
  .form-card .form-submit button {
    width: 100%;
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img-wrapper {
  position: relative;
}
.about .about-img-wrapper img {
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about .about-img-wrapper .experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--accent-color);
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about .about-img-wrapper .experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about .about-img-wrapper .experience-badge .text {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
.about .about-content .about-intro {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about .about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
}
.about .about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.about .about-stats .stat-item {
  text-align: center;
}
.about .about-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}
.about .about-stats .stat-item .stat-label {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 5px;
}
.about .engagements-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
}
.about .engagement-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}
.about .engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.about .engagement-card .engagement-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.about .engagement-card .engagement-icon i {
  font-size: 26px;
  color: var(--accent-color);
}
.about .engagement-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.about .engagement-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}
.about .about-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about .about-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-color);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.about .about-cta .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--cta-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--cta-color), transparent 60%);
}
.about .about-cta .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  transition: 0.3s;
}
.about .about-cta .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: #fff;
}
@media (max-width: 991px) {
  .about .about-img-wrapper {
    margin-bottom: 40px;
  }
  .about .about-img-wrapper .experience-badge {
    right: 20px;
    bottom: -15px;
    padding: 15px 20px;
  }
  .about .about-img-wrapper .experience-badge .years {
    font-size: 28px;
  }
  .about .about-stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .about .about-stats .stat-item {
    flex: 1 1 calc(33% - 20px);
    min-width: 100px;
  }
  .about .about-stats .stat-item .stat-number {
    font-size: 26px;
  }
  .about .about-stats .stat-item .stat-label {
    font-size: 11px;
  }
  .about .engagement-card {
    padding: 25px 20px;
  }
  .about .about-cta {
    flex-direction: column;
    align-items: center;
  }
  .about .about-cta .btn-cta-primary,
  .about .about-cta .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}
.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .row {
  justify-content: center;
}
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}
.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: 0 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}
.services .img + .details {
  margin-top: -100px;
}
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}
.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--accent-color);
}
.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}
.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}
.features .feature-box:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.features .feature-box .icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .feature-box .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}
.features .feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.features .feature-box p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}
.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.features .nav-link.active h4 {
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}
.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}
.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}
.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.services-2 .service-item .title a {
  color: var(--heading-color);
}
.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}
.services-2 .service-item:hover {
  border-color: var(--accent-color);
}
.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}
.services-2 .service-item[href] {
  text-decoration: none;
  cursor: pointer;
}
.services-2 .service-item[href] .icon {
  margin-right: 0;
  margin-bottom: 15px;
}
.services-2 .service-item[href] .title {
  color: var(--heading-color);
  margin-bottom: 5px;
}
.services-2 .service-item[href] .description {
  color: var(--accent-color);
  font-weight: 600;
}
.services-2 .service-item[href]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.services-2 .service-item[href]:hover .title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}
.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.testimonials .container {
  position: relative;
  z-index: 3;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Avis Section - Style Google Reviews
--------------------------------------------------------------*/
.avis .avis-summary {
  text-align: center;
  margin-bottom: 20px;
}
.avis .avis-summary .summary-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 25px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.avis .avis-summary .summary-rating .rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}
.avis .avis-summary .summary-rating .rating-stars {
  display: flex;
  gap: 4px;
}
.avis .avis-summary .summary-rating .rating-stars i {
  font-size: 24px;
  color: #fbbc04;
}
.avis .avis-summary .summary-rating .rating-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.avis .avis-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.avis .avis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.avis .avis-card .avis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.avis .avis-card .avis-header .avis-author h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 2px 0;
}
.avis .avis-card .avis-header .avis-author .avis-location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.avis .avis-card .avis-header .avis-google {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avis .avis-card .avis-header .avis-google img {
  width: 24px;
  height: 24px;
}
.avis .avis-card .avis-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.avis .avis-card .avis-stars i {
  font-size: 16px;
  color: #fbbc04;
}
.avis .avis-card .avis-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0 0 12px 0;
}
.avis .avis-card .avis-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.avis .avis-cta .btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a73e8;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid #1a73e8;
  transition: 0.3s;
}
.avis .avis-cta .btn-google-reviews img {
  width: 20px;
  height: 20px;
}
.avis .avis-cta .btn-google-reviews:hover {
  background: #1a73e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
}
.avis .avis-cta .btn-google-reviews:hover img {
  filter: brightness(0) invert(1);
}
.avis .avis-cta .avis-cta-text {
  margin-top: 15px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.avis .avis-cta .avis-cta-text a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}
.avis .avis-cta .avis-cta-text a:hover {
  text-decoration: underline;
}
.avis .btn-google-avis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a73e8;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #e8e8e8;
  transition: 0.3s;
}
.avis .btn-google-avis img {
  width: 20px;
  height: 20px;
}
.avis .btn-google-avis:hover {
  border-color: #1a73e8;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .avis .avis-summary .summary-rating {
    padding: 20px 30px;
  }
  .avis .avis-summary .summary-rating .rating-number {
    font-size: 40px;
  }
  .avis .avis-summary .summary-rating .rating-stars i {
    font-size: 20px;
  }
  .avis .avis-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Zone d'intervention Section
--------------------------------------------------------------*/
.zone-intervention {
  padding: 60px 0;
}
.zone-intervention .section-title {
  padding-bottom: 15px;
  margin-bottom: 0;
}
.zone-intervention .zone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .zone-intervention .zone-cards {
    grid-template-columns: 1fr;
  }
}
.zone-intervention .zone-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.zone-intervention .zone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.zone-intervention .zone-card.zone-card-paris {
  grid-column: span 2;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
@media (max-width: 991px) {
  .zone-intervention .zone-card.zone-card-paris {
    grid-column: span 1;
  }
}
.zone-intervention .zone-card.zone-card-paris .zone-icon {
  background: var(--accent-color) !important;
}
.zone-intervention .zone-card.zone-card-paris .zone-icon i {
  color: #fff !important;
}
.zone-intervention .zone-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.zone-intervention .zone-card-header .zone-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  flex-shrink: 0;
}
.zone-intervention .zone-card-header .zone-icon i {
  font-size: 26px;
  color: var(--accent-color);
}
.zone-intervention .zone-card-header .zone-title h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}
.zone-intervention .zone-card-header .zone-title span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.zone-intervention .zone-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 15px;
}
.zone-intervention .zone-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.zone-intervention .zone-villes .ville-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  font-size: 13px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.zone-intervention .zone-villes .ville-tag:hover {
  background: var(--accent-color);
  color: #fff;
}
.zone-intervention .zone-villes .ville-tag i {
  font-size: 12px;
  color: var(--accent-color);
}
.zone-intervention .zone-villes .ville-tag:hover i {
  color: #fff;
}
.zone-intervention .zone-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.zone-intervention .zone-card-link:hover {
  gap: 12px;
}
.zone-intervention .zone-card-link i {
  font-size: 16px;
}
.zone-intervention .departements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 576px) {
  .zone-intervention .departements-grid {
    grid-template-columns: 1fr;
  }
}
.zone-intervention .departement-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.zone-intervention .departement-item h4 .dept-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.zone-intervention .departement-item .dept-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.zone-intervention .departement-item .dept-villes a {
  font-size: 13px;
  color: var(--default-color);
  text-decoration: none;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.zone-intervention .departement-item .dept-villes a:hover {
  background: var(--accent-color);
  color: #fff;
}
.zone-intervention .zone-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.zone-intervention .zone-cta p {
  font-size: 18px;
  color: var(--default-color);
  margin-bottom: 20px;
}
.zone-intervention .zone-cta .btn-zone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zone-intervention .zone-cta .btn-zone:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.zone-intervention .zone-cta .btn-zone i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .zone-intervention {
    padding: 40px 0;
  }
  .zone-intervention .zone-card {
    padding: 20px;
  }
  .zone-intervention .zone-card-header .zone-icon {
    width: 45px;
    height: 45px;
  }
  .zone-intervention .zone-card-header .zone-icon i {
    font-size: 22px;
  }
  .zone-intervention .zone-card-header .zone-title h3 {
    font-size: 18px;
  }
  .zone-intervention .departements-grid {
    gap: 15px;
  }
  .zone-intervention .departement-item h4 {
    font-size: 14px;
  }
  .zone-intervention .departement-item h4 .dept-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
.zone-intervention .zone-content .zone-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 25px;
}
.zone-intervention .zone-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.zone-intervention .zone-content .zone-cities {
  margin-bottom: 20px;
}
.zone-intervention .zone-content .zone-cities .city-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zone-intervention .zone-content .zone-cities .city-list ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--default-color);
}
.zone-intervention .zone-content .zone-cities .city-list ul li i {
  color: var(--accent-color);
  font-size: 14px;
}
.zone-intervention .zone-content .zone-cities .city-list ul li a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s;
}
.zone-intervention .zone-content .zone-cities .city-list ul li a:hover {
  color: var(--accent-color);
}
.zone-intervention .zone-content .zone-cities .city-list.city-list-grid ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media (max-width: 576px) {
  .zone-intervention .zone-content .zone-cities .city-list.city-list-grid ul {
    grid-template-columns: 1fr;
  }
}
.zone-intervention .zone-content .zone-cities .city-list.city-list-grid ul li {
  padding: 6px 0;
  font-size: 14px;
}
.zone-intervention .zone-content .zone-cities .zone-more {
  margin-top: 10px;
}
.zone-intervention .zone-content .zone-cities .zone-more a {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.zone-intervention .zone-content .zone-cities .zone-more a:hover {
  text-decoration: underline;
}
.zone-intervention .zone-content .zone-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
  text-align: left;
}
.zone-intervention .zone-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 30px;
}
.zone-intervention .zone-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .zone-intervention .zone-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .zone-intervention .zone-city-grid {
    grid-template-columns: 1fr;
  }
}
.zone-intervention .zone-city-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.zone-intervention .zone-city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.zone-intervention .zone-city-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.zone-intervention .zone-city-card:hover::before {
  transform: scaleY(1);
}
.zone-intervention .zone-city-card:hover .zone-city-icon {
  background: var(--accent-color);
}
.zone-intervention .zone-city-card:hover .zone-city-icon i {
  color: #fff;
}
.zone-intervention .zone-city-card:hover .zone-city-arrow {
  opacity: 1;
  transform: translateX(0);
}
.zone-intervention .zone-city-card span {
  flex: 1;
}
.zone-intervention .zone-city-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}
.zone-intervention .zone-city-icon i {
  font-size: 18px;
  color: var(--accent-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}
.zone-intervention .zone-city-arrow {
  font-size: 14px;
  color: var(--accent-color);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.zone-intervention .zone-city-featured {
  grid-column: span 3;
  padding: 22px 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}
@media (max-width: 768px) {
  .zone-intervention .zone-city-featured {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .zone-intervention .zone-city-featured {
    grid-column: span 1;
  }
}
.zone-intervention .zone-city-featured .zone-city-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--accent-color);
}
.zone-intervention .zone-city-featured .zone-city-icon i {
  font-size: 24px;
  color: #fff;
}
.zone-intervention .zone-city-featured .zone-city-info {
  flex: 1;
}
.zone-intervention .zone-city-featured .zone-city-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}
.zone-intervention .zone-city-featured .zone-city-info span {
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.zone-intervention .zone-city-featured:hover .zone-city-icon {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}
.zone-intervention .btn-zone-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zone-intervention .btn-zone-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.zone-intervention .btn-zone-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zone-intervention .btn-zone-secondary i {
  font-size: 16px;
}
.zone-intervention .btn-zone-secondary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .zone-intervention .zone-content .zone-cta {
    flex-direction: column;
  }
  .zone-intervention .zone-content .zone-cta .btn-zone-primary,
  .zone-intervention .zone-content .zone-cta .btn-zone-secondary {
    justify-content: center;
    width: 100%;
  }
}

.service-content .feature-box,
.zone-intervention .feature-box,
.features .feature-box {
  background: var(--surface-color);
  padding: 30px 20px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.service-content .feature-box:hover,
.zone-intervention .feature-box:hover,
.features .feature-box:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.service-content .feature-box .icon-box,
.zone-intervention .feature-box .icon-box,
.features .feature-box .icon-box {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.service-content .feature-box .icon-box img,
.zone-intervention .feature-box .icon-box img,
.features .feature-box .icon-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50%;
}
.service-content .feature-box i,
.zone-intervention .feature-box i,
.features .feature-box i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}
.service-content .feature-box h4,
.zone-intervention .feature-box h4,
.features .feature-box h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.service-content .feature-box p,
.zone-intervention .feature-box p,
.features .feature-box p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 10px 0;
  line-height: 1.6;
  flex-grow: 1;
}
.service-content .feature-box p:last-of-type,
.zone-intervention .feature-box p:last-of-type,
.features .feature-box p:last-of-type {
  margin-bottom: 10px;
}
.service-content .feature-box p.text-muted,
.zone-intervention .feature-box p.text-muted,
.features .feature-box p.text-muted {
  flex-grow: 0;
  margin-bottom: 10px;
}
.service-content .feature-box p a,
.zone-intervention .feature-box p a,
.features .feature-box p a {
  color: var(--accent-color);
  text-decoration: none;
}
.service-content .feature-box p a:hover,
.zone-intervention .feature-box p a:hover,
.features .feature-box p a:hover {
  text-decoration: underline;
}
.service-content .feature-box > a,
.zone-intervention .feature-box > a,
.features .feature-box > a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}
.service-content .feature-box > a:hover,
.zone-intervention .feature-box > a:hover,
.features .feature-box > a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .service-content .feature-box,
  .zone-intervention .feature-box,
  .features .feature-box {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  .service-content .feature-box i,
  .zone-intervention .feature-box i,
  .features .feature-box i {
    font-size: 30px;
  }
  .service-content .feature-box h4,
  .zone-intervention .feature-box h4,
  .features .feature-box h4 {
    font-size: 16px;
  }
}
.service-content .cta-box,
.zone-intervention .cta-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.service-content .cta-box h3,
.zone-intervention .cta-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.service-content .cta-box p,
.zone-intervention .cta-box p {
  color: var(--default-color);
  margin-bottom: 20px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.btn-cta-primary i {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Grille complète des arrondissements (page hub Paris)
--------------------------------------------------------------*/
.arrondissements-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .arrondissements-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 400px) {
  .arrondissements-full-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.arrondissements-full-grid .arr-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.arrondissements-full-grid .arr-link-item sup {
  font-size: 10px;
  margin-left: 2px;
}
.arrondissements-full-grid .arr-link-item:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.arrondissements-full-grid .arr-link-item.highlight {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}
.arrondissements-full-grid .arr-link-item.highlight:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-content img {
  transition: 0.3s;
}
.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}
.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}
.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}
.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.team .member .social a:hover {
  color: var(--accent-color);
}
.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.service-details .service-content .lead {
  font-size: 17px;
  color: var(--default-color);
  margin-bottom: 15px;
}
.service-details .service-highlights {
  margin-top: 25px;
}
.service-details .service-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.service-details .service-highlights .highlight-item i {
  font-size: 22px;
  color: var(--accent-color);
}
.service-details .service-highlights .highlight-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
}
.service-details .service-highlights.service-highlights-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.service-details .service-highlights.service-highlights-inline .highlight-item {
  padding: 6px 0;
}
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .accordion-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.faq .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  background: var(--surface-color);
  padding: 18px 20px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2331af07'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq .accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq .accordion-collapse.show {
  max-height: 500px;
}
.faq .accordion-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
}
.faq .accordion-body a {
  color: var(--accent-color);
  font-weight: 500;
}
.faq .accordion-body a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Qui Sommes-Nous Page Sections
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Values Section (Nos valeurs)
--------------------------------------------------------------*/
.values .engagement-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}
.values .engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.values .engagement-card .engagement-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.values .engagement-card .engagement-icon i {
  font-size: 30px;
  color: var(--accent-color);
}
.values .engagement-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.values .engagement-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Why Us Section (Pourquoi nous choisir)
--------------------------------------------------------------*/
.why-us .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-us .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}
.why-us .why-us-content .why-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us .why-us-content .why-item .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}
.why-us .why-us-content .why-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.why-us .why-us-content .why-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}
.why-us img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: var(--accent-color);
}
.cta h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 0;
}
.cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta a.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.cta a.btn-cta-primary:hover {
  background: #1a1a1a;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.cta a.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid #fff;
  transition: 0.3s;
}
.cta a.btn-cta-secondary:hover {
  background: #fff;
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
  .cta h2 {
    font-size: 26px;
  }
  .cta p {
    font-size: 16px;
  }
  .cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta .cta-buttons .btn-cta-primary,
  .cta .cta-buttons .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta.section {
  padding: 60px 0;
}
.cta.section.dark-background {
  background: var(--accent-color);
}
.cta.section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.cta.section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.cta.section .btn-cta-primary,
.cta.section .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  color: var(--accent-color);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}
.cta.section .btn-cta-primary:hover,
.cta.section .btn-cta:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.cta.section .btn-cta-primary:hover i,
.cta.section .btn-cta:hover i {
  color: #fff;
}
.cta.section .btn-cta-primary i,
.cta.section .btn-cta i {
  font-size: 16px;
  margin: 0;
  color: var(--accent-color);
}
.cta.section .col-lg-4 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cta.section {
    text-align: center;
  }
  .cta.section .col-lg-4 {
    margin-top: 25px;
    justify-content: center !important;
  }
  .cta.section .btn-cta-primary,
  .cta.section .btn-cta {
    margin: 0 !important;
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .cta.section {
    padding: 50px 0;
  }
  .cta.section h2 {
    font-size: 24px;
  }
  .cta.section p {
    font-size: 15px;
  }
  .cta.section .col-lg-4 {
    width: 100%;
  }
  .cta.section .btn-cta-primary,
  .cta.section .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# CTA Devis Rapide
--------------------------------------------------------------*/
.cta-devis {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0f7f0 0%, #fff 100%);
}

.cta-devis-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent-color);
  position: relative;
}
@media (max-width: 768px) {
  .cta-devis-card {
    padding: 40px 25px;
  }
}

.cta-devis-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.cta-devis-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.cta-devis h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cta-devis h2 {
    font-size: 24px;
  }
}

.cta-devis-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 25px;
}

.btn-cta-devis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}
.btn-cta-devis:hover {
  background: rgb(209.5879518072, 132.6506024096, 10.6120481928);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  color: #fff;
}
.btn-cta-devis i {
  font-size: 20px;
}

.cta-devis-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.cta-devis-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}
.cta-devis-features span i {
  color: var(--accent-color);
  font-size: 16px;
}
@media (max-width: 576px) {
  .cta-devis-features {
    gap: 15px;
  }
  .cta-devis-features span {
    font-size: 13px;
  }
}

.cta-devis-phone {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}
.cta-devis-phone p {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}
.cta-devis-phone p i {
  color: var(--accent-color);
  margin-right: 5px;
}

.btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-phone-cta:hover {
  background: rgb(209.5879518072, 132.6506024096, 10.6120481928);
  transform: translateY(-2px);
  color: #fff;
}
.btn-phone-cta i {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Rachat Mobilier - Catalogue Style
--------------------------------------------------------------*/
/* Catalogue Grid */
.catalogue-grid .catalogue-item {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.catalogue-grid .catalogue-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.catalogue-grid .catalogue-item:hover .catalogue-img img {
  transform: scale(1.05);
}
.catalogue-grid .catalogue-item .catalogue-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.catalogue-grid .catalogue-item .catalogue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catalogue-grid .catalogue-item .catalogue-img .catalogue-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.catalogue-grid .catalogue-item .catalogue-img .placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
}
.catalogue-grid .catalogue-item .catalogue-content {
  padding: 25px;
}
.catalogue-grid .catalogue-item .catalogue-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.catalogue-grid .catalogue-item .catalogue-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
}
.catalogue-grid .catalogue-item .catalogue-content .price-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.catalogue-grid .catalogue-item .catalogue-content .price-range .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}
.catalogue-grid .catalogue-item .catalogue-content .price-range .price-note {
  font-size: 0.75rem;
  color: #999;
}

/* Examples Section */
.examples-section .example-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-left: 4px solid var(--accent-color);
}
.examples-section .example-card .example-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.examples-section .example-card .example-header .example-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.examples-section .example-card .example-header .example-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.examples-section .example-card .example-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}
.examples-section .example-card .example-details {
  margin-bottom: 20px;
}
.examples-section .example-card .example-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}
.examples-section .example-card .example-details .detail-row:last-child {
  border-bottom: none;
}
.examples-section .example-card .example-details .detail-row .label {
  color: #666;
}
.examples-section .example-card .example-details .detail-row .value {
  font-weight: 600;
  color: var(--heading-color);
}
.examples-section .example-card .example-result {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.examples-section .example-card .example-result .result-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}
.examples-section .example-card .example-result .result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}
.examples-section .example-card .example-result .result-value.positive {
  color: #28a745;
}
.examples-section .example-card .example-result .result-value.neutral {
  color: var(--accent-color);
}
.examples-section .example-card .example-result .result-value.reduced {
  color: #ffc107;
}

/* Stats Banner */
.stats-banner {
  background: var(--accent-color);
  padding: 40px 0;
  color: white;
}
.stats-banner .stat-item {
  text-align: center;
  padding: 20px;
}
.stats-banner .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.stats-banner .stat-item .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 40px 0;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #eee;
  top: 0;
}
@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }
}
.process-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
}
.process-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .process-timeline .timeline-item .timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
  }
}
.process-timeline .timeline-item .timeline-marker i {
  font-size: 1.5rem;
  color: white;
}
.process-timeline .timeline-item .timeline-marker .step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--heading-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}
.process-timeline .timeline-item .timeline-content {
  width: 45%;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .process-timeline .timeline-item .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
}
.process-timeline .timeline-item .timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.process-timeline .timeline-item .timeline-content p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}
.process-timeline .timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: calc(50% + 50px);
}
@media (max-width: 768px) {
  .process-timeline .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
}
.process-timeline .timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 50px);
}
@media (max-width: 768px) {
  .process-timeline .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
  }
}

/*--------------------------------------------------------------
# Devis Page Section
--------------------------------------------------------------*/
.devis-main {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .devis-main .row {
    flex-direction: column-reverse;
  }
  .devis-main .col-lg-5 {
    margin-bottom: 30px;
  }
  .devis-main .col-lg-5 .info-card:not(.contact-card) {
    display: none;
  }
}
.devis-main .form-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .devis-main .form-wrapper {
    padding: 25px 20px;
  }
}
.devis-main .form-wrapper .form-header {
  margin-bottom: 30px;
}
.devis-main .form-wrapper .form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.devis-main .form-wrapper .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}
.devis-main .devis-full-form .form-section {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.devis-main .devis-full-form .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.devis-main .devis-full-form .form-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.devis-main .devis-full-form .form-section h3 .section-number {
  width: 28px;
  height: 28px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.devis-main .devis-full-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .devis-main .devis-full-form .form-row {
    grid-template-columns: 1fr;
  }
}
.devis-main .devis-full-form .form-row.single {
  grid-template-columns: 1fr;
}
.devis-main .devis-full-form .form-group.full-width {
  grid-column: 1/-1;
}
.devis-main .devis-full-form .form-group label {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}
.devis-main .devis-full-form .form-group input[type=text],
.devis-main .devis-full-form .form-group input[type=email],
.devis-main .devis-full-form .form-group input[type=tel],
.devis-main .devis-full-form .form-group select,
.devis-main .devis-full-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
  background: var(--surface-color);
  color: var(--default-color);
}
.devis-main .devis-full-form .form-group input[type=text]:focus,
.devis-main .devis-full-form .form-group input[type=email]:focus,
.devis-main .devis-full-form .form-group input[type=tel]:focus,
.devis-main .devis-full-form .form-group select:focus,
.devis-main .devis-full-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.devis-main .devis-full-form .form-group input[type=text]::placeholder,
.devis-main .devis-full-form .form-group input[type=email]::placeholder,
.devis-main .devis-full-form .form-group input[type=tel]::placeholder,
.devis-main .devis-full-form .form-group select::placeholder,
.devis-main .devis-full-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.devis-main .devis-full-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.devis-main .devis-full-form .radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .devis-main .devis-full-form .radio-group {
    grid-template-columns: 1fr;
  }
}
.devis-main .devis-full-form .radio-group .radio-label {
  display: block;
  cursor: pointer;
}
.devis-main .devis-full-form .radio-group .radio-label input[type=radio] {
  display: none;
}
.devis-main .devis-full-form .radio-group .radio-label input[type=radio]:checked + .radio-text {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.devis-main .devis-full-form .radio-group .radio-label input[type=radio]:checked + .radio-text strong {
  color: var(--accent-color);
}
.devis-main .devis-full-form .radio-group .radio-label .radio-text {
  display: block;
  padding: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.devis-main .devis-full-form .radio-group .radio-label .radio-text strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.devis-main .devis-full-form .radio-group .radio-label .radio-text small {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
}
.devis-main .devis-full-form .radio-group .radio-label .radio-text:hover {
  border-color: var(--accent-color);
}
.devis-main .devis-full-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.devis-main .devis-full-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: 0.3s;
}
.devis-main .devis-full-form .checkbox-group .checkbox-label:hover {
  border-color: var(--accent-color);
}
.devis-main .devis-full-form .checkbox-group .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-color);
}
.devis-main .devis-full-form .checkbox-group .checkbox-label .checkbox-text {
  font-size: 14px;
  color: var(--default-color);
}
.devis-main .devis-full-form .checkbox-group .checkbox-label .checkbox-text i {
  color: var(--accent-color);
  margin-right: 8px;
}
.devis-main .devis-full-form .checkbox-group .checkbox-label .checkbox-text a {
  color: var(--accent-color);
  text-decoration: underline;
}
.devis-main .devis-full-form .file-upload {
  position: relative;
}
.devis-main .devis-full-form .file-upload input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.devis-main .devis-full-form .file-upload .file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}
.devis-main .devis-full-form .file-upload .file-upload-label i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 10px;
}
.devis-main .devis-full-form .file-upload .file-upload-label span {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 5px;
}
.devis-main .devis-full-form .file-upload .file-upload-label small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
}
.devis-main .devis-full-form .file-upload:hover .file-upload-label {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}
.devis-main .devis-full-form .file-upload .photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.devis-main .devis-full-form .file-upload .photo-preview:empty {
  display: none;
}
.devis-main .devis-full-form .file-upload .photo-preview .preview-item {
  position: relative;
  width: 70px;
  text-align: center;
}
.devis-main .devis-full-form .file-upload .photo-preview .preview-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.devis-main .devis-full-form .file-upload .photo-preview .preview-item .remove-photo {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  padding: 0;
  transition: 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.devis-main .devis-full-form .file-upload .photo-preview .preview-item .remove-photo:hover {
  background: #e74c3c;
  transform: scale(1.1);
}
.photo-preview .preview-item .preview-name {
  display: block;
  font-size: 10px;
  color: #888;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.devis-main .devis-full-form .form-hint {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 8px;
}
.devis-main .devis-full-form .form-hint i {
  color: var(--accent-color);
  margin-right: 5px;
}
.devis-main .devis-full-form .form-submit {
  text-align: center;
  margin-top: 30px;
}
.devis-main .devis-full-form .form-submit .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.devis-main .devis-full-form .form-submit .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.devis-main .devis-full-form .form-submit .form-legal {
  margin-top: 15px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.devis-main .devis-full-form .form-submit .form-legal i {
  color: #28a745;
  margin-right: 5px;
}
.devis-main .devis-full-form .loading,
.devis-main .devis-full-form .error-message,
.devis-main .devis-full-form .sent-message,
.devis-form .loading,
.devis-form .error-message,
.devis-form .sent-message {
  display: none;
  text-align: center;
  padding: 15px;
  margin-top: 15px;
  border-radius: 8px;
}
.devis-main .devis-full-form .loading,
.devis-form .loading {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}
.devis-main .devis-full-form .error-message,
.devis-form .error-message {
  background: #fce4e4;
  color: #c0392b;
}
.devis-main .devis-full-form .sent-message,
.devis-form .sent-message {
  background: #d4edda;
  color: #155724;
}
.devis-main .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.devis-main .info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.devis-main .info-card h3 i {
  color: var(--accent-color);
  margin-right: 8px;
}
.devis-main .contact-card {
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: #fff;
}
.devis-main .contact-card .info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.devis-main .contact-card .info-icon i {
  font-size: 28px;
}
.devis-main .contact-card h3 {
  color: #fff;
}
.devis-main .contact-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}
.devis-main .contact-card .phone-link {
  display: inline-block;
  background: #fff;
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}
.devis-main .contact-card .phone-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.devis-main .contact-card .availability {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.devis-main .engagements-card .engagements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.devis-main .engagements-card .engagements-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.devis-main .engagements-card .engagements-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.devis-main .engagements-card .engagements-list li i {
  color: #28a745;
  font-size: 18px;
  margin-top: 2px;
}
.devis-main .engagements-card .engagements-list li strong {
  display: block;
  color: var(--heading-color);
  font-size: 14px;
}
.devis-main .engagements-card .engagements-list li span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.devis-main .testimonial-card {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
}
.devis-main .testimonial-card .quote-icon {
  color: var(--accent-color);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}
.devis-main .testimonial-card .testimonial-text {
  font-style: italic;
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.6;
}
.devis-main .testimonial-card .testimonial-author strong {
  display: block;
  color: var(--heading-color);
}
.devis-main .testimonial-card .testimonial-author span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.devis-main .testimonial-card .testimonial-author .stars {
  margin-top: 5px;
}
.devis-main .testimonial-card .testimonial-author .stars i {
  color: #ffc107;
  font-size: 14px;
}
.devis-main .zone-card .zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.devis-main .zone-card .zone-tags a {
  display: inline-block;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}
.devis-main .zone-card .zone-tags a:hover {
  background: var(--accent-color);
  color: #fff;
}

.tarifs-preview .tarif-card {
  display: block;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.3s;
}
.tarifs-preview .tarif-card i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.tarifs-preview .tarif-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.tarifs-preview .tarif-card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}
.tarifs-preview .tarif-card .more {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.tarifs-preview .tarif-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.tarifs-preview .tarif-card.gratuit {
  background: color-mix(in srgb, #28a745, transparent 95%);
}
.tarifs-preview .tarif-card.gratuit i {
  color: #28a745;
}
.tarifs-preview .tarif-card.gratuit .price {
  color: #28a745;
}
.tarifs-preview .tarif-card.gratuit:hover {
  border-color: #28a745;
}

/*--------------------------------------------------------------
# Blog Section - Liste des articles
--------------------------------------------------------------*/
.blog .no-articles {
  padding: 60px 30px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}
.blog .no-articles i {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.blog .no-articles h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.blog .no-articles p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}
.blog .blog-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.blog .blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog .blog-card .blog-img {
  overflow: hidden;
  height: 200px;
}
.blog .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog .blog-card .blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog .blog-card .blog-content .blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}
.blog .blog-card .blog-content .blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog .blog-card .blog-content .blog-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}
.blog .blog-card .blog-content .blog-title a:hover {
  color: var(--accent-color);
}
.blog .blog-card .blog-content .blog-excerpt {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}
.blog .blog-card .blog-content .blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 15px;
}
.blog .blog-card .blog-content .blog-meta i {
  margin-right: 5px;
}
.blog .blog-card .blog-content .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.blog .blog-card .blog-content .blog-link:hover {
  gap: 10px;
}

/*--------------------------------------------------------------
# Article Page - Nouveau design
--------------------------------------------------------------*/
.blog-article-page .article-breadcrumb {
  padding: 15px 0;
  padding-top: 100px;
  background: #1e1e1e;
}
.blog-article-page .article-breadcrumb .breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.blog-article-page .article-breadcrumb .breadcrumbs ol li::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.blog-article-page .article-breadcrumb .breadcrumbs ol li:last-child::after {
  display: none;
}
.blog-article-page .article-breadcrumb .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.blog-article-page .article-breadcrumb .breadcrumbs ol li a:hover {
  color: var(--accent-color);
}
.blog-article-page .article-breadcrumb .breadcrumbs ol li.current {
  color: rgba(255, 255, 255, 0.5);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-article-page .article-header {
  padding: 50px 0 30px;
  text-align: center;
}
.blog-article-page .article-header .article-category {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-article-page .article-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .blog-article-page .article-header h1 {
    font-size: 28px;
  }
}
.blog-article-page .article-header .article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.blog-article-page .article-header .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-article-page .article-header .article-meta .meta-item i {
  color: var(--accent-color);
  font-size: 16px;
}
.blog-article-page .article-hero {
  padding-bottom: 40px;
}
.blog-article-page .article-hero .hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.blog-article-page .article-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-article-page .article-main {
  padding-top: 20px;
}
.blog-article-page .sticky-sidebar {
  position: sticky;
  top: 100px;
}
.blog-article-page .toc-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.blog-article-page .toc-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-article-page .toc-card h4 i {
  color: var(--accent-color);
}
.blog-article-page .toc-card .toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-article-page .toc-card .toc-nav ul li {
  margin-bottom: 10px;
}
.blog-article-page .toc-card .toc-nav ul li a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  display: block;
  padding: 6px 12px;
  border-left: 2px solid transparent;
  transition: 0.3s;
  line-height: 1.4;
}
.blog-article-page .toc-card .toc-nav ul li a:hover {
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.blog-article-page .cta-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.blog-article-page .cta-card .cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.blog-article-page .cta-card .cta-icon i {
  font-size: 28px;
}
.blog-article-page .cta-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-article-page .cta-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}
.blog-article-page .cta-card .btn-cta-primary {
  display: block;
  background: #fff;
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}
.blog-article-page .cta-card .btn-cta-primary i {
  margin-right: 6px;
}
.blog-article-page .cta-card .btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.blog-article-page .cta-card .btn-cta-phone {
  display: block;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.blog-article-page .cta-card .btn-cta-phone i {
  margin-right: 6px;
}
.blog-article-page .cta-card .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.blog-article-page .author-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.blog-article-page .author-card .author-avatar {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.blog-article-page .author-card .author-avatar i {
  font-size: 30px;
  color: var(--accent-color);
}
.blog-article-page .author-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.blog-article-page .author-card p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  margin-bottom: 15px;
}
.blog-article-page .author-card .author-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-article-page .author-card .author-stats .stat {
  text-align: center;
}
.blog-article-page .author-card .author-stats .stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}
.blog-article-page .author-card .author-stats .stat span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-article-page .article-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--default-color);
}
.blog-article-page .article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 45px 0 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-article-page .article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.blog-article-page .article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 30px 0 15px;
}
.blog-article-page .article-body p {
  margin-bottom: 20px;
}
.blog-article-page .article-body a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-article-page .article-body a:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
}
.blog-article-page .article-body ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}
.blog-article-page .article-body ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.blog-article-page .article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}
.blog-article-page .article-body strong {
  color: var(--heading-color);
  font-weight: 600;
}
.blog-article-page .article-body blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.blog-article-page .article-body blockquote p {
  margin: 0;
}
.blog-article-page .article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-article-page .article-footer .share-section {
  text-align: center;
}
.blog-article-page .article-footer .share-section .share-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.blog-article-page .article-footer .share-section .share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn.facebook {
  background: #1877f2;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn.twitter {
  background: #000;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn.linkedin {
  background: #0a66c2;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn.whatsapp {
  background: #25d366;
}
.blog-article-page .article-footer .share-section .share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .blog-article-page .article-sidebar {
    margin-bottom: 30px;
  }
  .blog-article-page .article-main .row {
    flex-direction: column;
  }
  .blog-article-page .article-main .row .col-lg-3:last-child {
    order: -1;
  }
  .blog-article-page .cta-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    text-align: left;
    gap: 10px 15px;
  }
  .blog-article-page .cta-card .cta-icon {
    grid-row: 1/3;
    margin: 0;
    width: 50px;
    height: 50px;
  }
  .blog-article-page .cta-card .cta-icon i {
    font-size: 22px;
  }
  .blog-article-page .cta-card h4 {
    margin: 0;
    align-self: end;
  }
  .blog-article-page .cta-card p {
    margin: 0;
    align-self: start;
    grid-column: 2;
  }
  .blog-article-page .cta-card .btn-cta-primary,
  .blog-article-page .cta-card .btn-cta-phone {
    grid-column: 1/-1;
  }
  .blog-article-page .author-card {
    display: none;
  }
}
/*--------------------------------------------------------------
# Related Articles
--------------------------------------------------------------*/
.related-articles .blog-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-articles .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.related-articles .blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.related-articles .blog-card .blog-img {
  overflow: hidden;
  height: 200px;
}
.related-articles .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.related-articles .blog-card .blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-articles .blog-card .blog-content .blog-category {
  display: inline-block;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}
.related-articles .blog-card .blog-content .blog-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.related-articles .blog-card .blog-content .blog-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s;
}
.related-articles .blog-card .blog-content .blog-title a:hover {
  color: var(--accent-color);
}
.related-articles .blog-card .blog-content .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: auto;
}
.related-articles .blog-card .blog-content .blog-link:hover {
  gap: 10px;
}

/*--------------------------------------------------------------
# Template Débarras + Ville (Page Paris Hub)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero avec stats
--------------------------------------------------------------*/
.debarras-ville-page .hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
}
.debarras-ville-page .hero .hero-badge i {
  color: var(--accent-color);
}
.debarras-ville-page .hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.debarras-ville-page .hero .hero-stats .stat-item {
  text-align: center;
}
.debarras-ville-page .hero .hero-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.debarras-ville-page .hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
@media (max-width: 767px) {
  .debarras-ville-page .hero .hero-stats {
    gap: 25px;
  }
  .debarras-ville-page .hero .hero-stats .stat-item .stat-value {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Réassurance Bandeau Simple
--------------------------------------------------------------*/
.reassurance {
  padding: 25px 0;
  background: var(--surface-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.reassurance .reassurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  font-size: 15px;
  color: var(--default-color);
}
.reassurance .reassurance-item i {
  font-size: 20px;
  color: var(--accent-color);
}
@media (max-width: 767px) {
  .reassurance .reassurance-item {
    font-size: 13px;
    gap: 8px;
  }
  .reassurance .reassurance-item i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Formules (Gratuit / Facturé / Indemnisé)
--------------------------------------------------------------*/
.formules .formule-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.formules .formule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.formules .formule-card.highlight {
  border-color: var(--accent-color);
}
.formules .formule-card.highlight .formule-badge {
  display: inline-block;
}
.formules .formule-card .formule-badge {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.formules .formule-card .formule-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.formules .formule-card .formule-icon i {
  font-size: 28px;
  color: #fff;
}
.formules .formule-card .formule-icon.green {
  background: linear-gradient(135deg, #28a745, #20c997);
}
.formules .formule-card .formule-icon.blue {
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}
.formules .formule-card .formule-icon.gold {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}
.formules .formule-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.formules .formule-card .formule-condition {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}
.formules .formule-card .formule-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}
.formules .formule-card .formule-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.formules .formule-card .formule-details li:last-child {
  border-bottom: none;
}
.formules .formule-card .formule-details li i {
  color: var(--accent-color);
  font-size: 16px;
}
.formules .formule-card .formule-result {
  font-size: 16px;
  color: var(--heading-color);
  margin: 0;
  padding-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 85%);
}
.formules .formule-card .formule-result strong {
  color: var(--accent-color);
  font-size: 20px;
}

/*--------------------------------------------------------------
# Interventions Grid
--------------------------------------------------------------*/
.interventions .intervention-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: 100%;
}
.interventions .intervention-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.interventions .intervention-card:hover .icon i {
  background: var(--accent-color);
  color: #fff;
}
.interventions .intervention-card .icon {
  margin-bottom: 20px;
}
.interventions .intervention-card .icon i {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.interventions .intervention-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.interventions .intervention-card h3 a {
  color: var(--heading-color);
  text-decoration: none;
}
.interventions .intervention-card h3 a:hover {
  color: var(--accent-color);
}
.interventions .intervention-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Arrondissements
--------------------------------------------------------------*/
.arrondissements .arrondissement-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.arrondissements .arrondissement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}
.arrondissements .arrondissement-card:hover .arr-link {
  color: var(--accent-color);
  gap: 8px;
}
.arrondissements .arrondissement-card.highlight {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}
.arrondissements .arrondissement-card .arr-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.arrondissements .arrondissement-card .arr-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  min-width: 60px;
  text-align: center;
}
.arrondissements .arrondissement-card .arr-number sup {
  font-size: 14px;
}
.arrondissements .arrondissement-card .arr-content {
  flex: 1;
}
.arrondissements .arrondissement-card .arr-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}
.arrondissements .arrondissement-card .arr-content p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 0 8px 0;
  line-height: 1.4;
}
.arrondissements .arrondissement-card .arr-content .arr-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.arrondissements .other-arrondissements {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.arrondissements .other-arrondissements h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
}
.arrondissements .other-arrondissements .arr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.arrondissements .other-arrondissements .arr-grid .arr-item {
  background: var(--surface-color);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
}
.arrondissements .other-arrondissements .arr-grid .arr-item:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.arrondissements .other-arrondissements .arr-grid .arr-item sup {
  font-size: 10px;
}

/*--------------------------------------------------------------
# Écologie Section améliorée
--------------------------------------------------------------*/
.ecologie h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.ecologie .lead {
  font-size: 17px;
  color: var(--default-color);
  margin-bottom: 25px;
}
.ecologie .eco-stats {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.ecologie .eco-stats .eco-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}
.ecologie .eco-stats .eco-stat .eco-percent {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.ecologie .eco-stats .eco-stat .eco-label {
  font-size: 13px;
  color: var(--default-color);
  line-height: 1.4;
}
.ecologie .eco-stats .eco-stat .eco-label small {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 11px;
  margin-top: 3px;
}
.ecologie .eco-partners {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.ecologie .eco-partners h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
  text-align: center;
}
.ecologie .eco-partners .partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ecologie .eco-partners .partner-logos .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.ecologie .eco-partners .partner-logos .partner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.ecologie .eco-partners .partner-logos .partner i {
  font-size: 28px;
  color: var(--accent-color);
}
.ecologie .eco-partners .partner-logos .partner span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Pourquoi nous choisir (Reason cards)
--------------------------------------------------------------*/
.pourquoi .reason-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: 100%;
}
.pourquoi .reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.pourquoi .reason-card:hover .icon i {
  background: var(--accent-color);
  color: #fff;
}
.pourquoi .reason-card .icon {
  margin-bottom: 20px;
}
.pourquoi .reason-card .icon i {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.pourquoi .reason-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.pourquoi .reason-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Process Section (Comment ça marche)
--------------------------------------------------------------*/
.process .step-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}
.process .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.process .step-card:hover .step-number {
  background: var(--accent-color);
  color: #fff;
}
.process .step-card .step-number {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.process .step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.process .step-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Introduction SEO (contenu éditorial)
--------------------------------------------------------------*/
.intro-seo .intro-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  text-align: left;
}
@media (max-width: 768px) {
  .intro-seo .intro-content h2 {
    font-size: 24px;
  }
}
.intro-seo .intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
  text-align: justify;
}
.intro-seo .intro-content p strong {
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .intro-seo .intro-content p {
    font-size: 15px;
    text-align: left;
  }
}
.intro-seo .intro-content .intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  justify-content: flex-start;
}
.intro-seo .intro-content .intro-highlights .highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}
.intro-seo .intro-content .intro-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 16px;
}
@media (max-width: 576px) {
  .intro-seo .intro-content .intro-highlights .highlight-item {
    padding: 8px 14px;
    font-size: 13px;
  }
}
.intro-seo .form-card {
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.intro-seo .form-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--accent-color);
  border-radius: 16px 0 0 16px;
}
@media (max-width: 991px) {
  .intro-seo .form-card {
    position: relative;
    top: 0;
    margin-top: 30px;
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Tarifs Section avec cards
--------------------------------------------------------------*/
.tarifs .tarif-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}
.tarifs .tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.tarifs .tarif-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.tarifs .tarif-card .price {
  font-size: 15px;
  color: var(--default-color);
  margin-bottom: 10px;
}
.tarifs .tarif-card .price strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
  margin-top: 5px;
}
.tarifs .tarif-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}
.tarifs .tarif-info .info-box {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  padding: 20px 25px;
  text-align: left;
  max-width: 700px;
}
.tarifs .tarif-info .info-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-top: 2px;
}
.tarifs .tarif-info .info-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero Ville - Fond sombre uni centré
--------------------------------------------------------------*/
.hero-ville-dark {
  background: #1e1e1e;
  padding: 120px 0 80px;
}
.hero-ville-dark .hero-content {
  color: #fff;
}
.hero-ville-dark .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero-ville-dark .hero-content .hero-badge i {
  color: var(--accent-color);
}
.hero-ville-dark .hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #fff !important;
  font-family: var(--default-font);
  font-style: normal;
}
@media (max-width: 768px) {
  .hero-ville-dark .hero-content h1 {
    font-size: 32px;
  }
}
.hero-ville-dark .hero-content .hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-ville-dark .hero-content .hero-subtitle {
    font-size: 16px;
  }
}
.hero-ville-dark .hero-content .hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.hero-ville-dark .hero-content .hero-cta .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-ville-dark .hero-content .hero-cta .btn-primary-hero:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.hero-ville-dark .hero-content .hero-cta .btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-ville-dark .hero-content .hero-cta .btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.hero-ville-dark .hero-content .hero-trust {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-ville-dark .hero-content .hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-ville-dark .hero-content .hero-trust .trust-item i {
  color: var(--accent-color);
}
.hero-ville-dark .hero-content .hero-trust .trust-item strong {
  color: #fff;
}

/*--------------------------------------------------------------
# Pourquoi nous choisir
--------------------------------------------------------------*/
.pourquoi-nous .content-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}
.pourquoi-nous .content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}
.pourquoi-nous .content-text p a {
  color: var(--accent-color);
  text-decoration: underline;
}
.pourquoi-nous .avantages-list .avantage-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
}
.pourquoi-nous .avantages-list .avantage-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}
.pourquoi-nous .avantages-list .avantage-item .avantage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pourquoi-nous .avantages-list .avantage-item .avantage-icon i {
  font-size: 22px;
  color: var(--accent-color);
}
.pourquoi-nous .avantages-list .avantage-item .avantage-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.pourquoi-nous .avantages-list .avantage-item .avantage-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Section Écologie
--------------------------------------------------------------*/
.ecologie .content-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.ecologie .content-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}
.ecologie .content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}
.ecologie .content-text .list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ecologie .content-text .list-styled li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--default-color);
}
.ecologie .content-text .list-styled li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}
.ecologie img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Réassurance
--------------------------------------------------------------*/
.reassurance {
  padding: 40px 0;
}
.reassurance .reassurance-item {
  text-align: center;
  padding: 20px;
}
.reassurance .reassurance-item .reassurance-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.reassurance .reassurance-item .reassurance-icon i {
  font-size: 24px;
  color: var(--accent-color);
}
.reassurance .reassurance-item .reassurance-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}
.reassurance .reassurance-item .reassurance-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Services Grid
--------------------------------------------------------------*/
.services-grid .service-link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.services-grid .service-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
}
.services-grid .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}
.services-grid .service-box:hover i {
  background: var(--accent-color);
  color: #fff;
}
.services-grid .service-box i {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: 0.3s;
}
.services-grid .service-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.services-grid .service-box p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Intro Locale (SEO)
--------------------------------------------------------------*/
.intro-locale .intro-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}
.intro-locale .intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}
.intro-locale .intro-content p a {
  color: var(--accent-color);
  text-decoration: underline;
}
.intro-locale .intro-content .intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.intro-locale .intro-content .intro-highlights .highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--default-color);
}
.intro-locale .intro-content .intro-highlights .highlight i {
  color: var(--accent-color);
  font-size: 18px;
}

/*--------------------------------------------------------------
# Galerie Avant/Après
--------------------------------------------------------------*/
.galerie .galerie-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 350px;
}
.galerie .galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .galerie .galerie-item {
    height: 280px;
  }
}
.galerie .galerie-item .galerie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.galerie .galerie-item .galerie-caption .badge-before,
.galerie .galerie-item .galerie-caption .badge-after {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.galerie .galerie-item .galerie-caption .badge-before {
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
}
.galerie .galerie-item .galerie-caption .badge-after {
  background: rgba(40, 167, 69, 0.9);
  color: #fff;
}

/*--------------------------------------------------------------
# Zone Ville
--------------------------------------------------------------*/
.zone-ville .zone-content {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.zone-ville .zone-content .villes-proches {
  margin-top: 30px;
}
.zone-ville .zone-content .villes-proches h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.zone-ville .zone-content .villes-proches .villes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone-ville .zone-content .villes-proches .villes-list .ville-tag {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.zone-ville .zone-content .villes-proches .villes-list .ville-tag:hover {
  background: var(--accent-color);
  color: #fff;
}
.zone-ville .zone-content .btn-zone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.zone-ville .zone-content .btn-zone:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

/*--------------------------------------------------------------
# CTA Final
--------------------------------------------------------------*/
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
}
.cta-final h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .cta-final h2 {
    font-size: 28px;
  }
}
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.cta-final .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .cta-buttons .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-final .cta-buttons .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.cta-final .cta-buttons .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-final .cta-buttons .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.cta-final .cta-reassurance {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-final .cta-reassurance i {
  color: var(--accent-color);
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Mobile Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-ville-dark {
    padding: 100px 0 60px;
  }
  .reassurance .reassurance-item {
    padding: 15px 10px;
  }
  .reassurance .reassurance-item .reassurance-value {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .hero-ville-dark {
    padding: 90px 0 50px;
  }
  .hero-ville-dark .hero-content .hero-cta {
    flex-direction: column;
  }
  .hero-ville-dark .hero-content .hero-cta .btn-primary-hero,
  .hero-ville-dark .hero-content .hero-cta .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
  .hero-ville-dark .hero-content .hero-trust {
    gap: 15px;
  }
  .zone-ville .zone-content {
    padding: 25px;
  }
}
/* ==========================================
   WIDGET SIMULATEUR DE PRIX - STYLES (SCSS)
   Débarras Maison 
   ========================================== */
.simulator-widget-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: linear-gradient(135deg, #F39C12 0%, #f5ab35 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}
.simulator-widget-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
}
.simulator-widget-btn-icon {
  font-size: 20px;
}

.simulator-widget-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  backdrop-filter: blur(3px);
  animation: simFadeIn 0.3s ease;
}
.simulator-widget-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

@keyframes simFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.simulator-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: simSlideUp 0.4s ease;
}
.simulator-container * {
  box-sizing: border-box;
}

@keyframes simSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.simulator-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}
.simulator-close-btn:hover {
  background: #ffffff;
  transform: rotate(90deg);
}

.sim-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 25px 35px;
}
.sim-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.sim-header-bottom {
  text-align: center;
}

.sim-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sim-brand-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sim-brand-name {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: var(--heading-font);
  color: #ffffff;
}
.sim-brand-tagline {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  line-height: 1;
  color: #ffffff;
}

.sim-logo {
  font-size: 40px;
}

.sim-cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #F39C12;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sim-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #d68910;
}

.sim-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-family: var(--heading-font);
  color: #ffffff;
}

.sim-subtitle {
  opacity: 0.95;
  font-size: 15px;
  margin: 0;
  color: #ffffff;
}

.sim-how-it-works {
  background: #0f0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-toggle-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 18px 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.sim-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sim-toggle-btn .text {
  flex: 1;
  text-align: left;
}

.sim-toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255, 255, 255, 0.15);
}
.sim-toggle-content.open {
  max-height: 1000px;
}

.sim-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sim-arrow.open {
  transform: rotate(180deg);
}

.sim-steps-list {
  padding: 25px 35px;
}

.sim-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #ffffff;
}
.sim-step-item:last-child {
  margin-bottom: 0;
}

.sim-step-number {
  font-size: 24px;
  line-height: 1;
}

.sim-step-text {
  font-size: 15px;
  line-height: 1.5;
  padding-top: 3px;
}

.sim-explanation-text {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.sim-explanation-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.sim-explanation-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  color: #ffffff;
}
.sim-explanation-text strong {
  font-weight: 600;
}

.sim-progress-bar {
  height: 5px;
  background: #e9ecef;
  position: relative;
}

.sim-progress-fill {
  height: 100%;
  background: #F39C12;
  width: 0%;
  transition: width 0.4s ease;
}

.sim-content {
  padding: 40px 35px;
}

.sim-step {
  display: none;
}
.sim-step.active {
  display: block;
  animation: simFadeInStep 0.5s ease;
}

@keyframes simFadeInStep {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sim-step-badge {
  display: inline-block;
  background: #1a1a2e;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sim-step-title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.sim-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.sim-option-card {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}
.sim-option-card:hover {
  border-color: #F39C12;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}
.sim-option-card.selected {
  border-color: #F39C12;
  background: #fff8ed;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.sim-card-icon {
  font-size: 45px;
  margin-bottom: 12px;
}

.sim-card-title {
  font-weight: 600;
  color: #212529;
  font-size: 16px;
}

.sim-card-sublabel {
  font-size: 13px;
  color: #6c757d;
  margin-top: 5px;
}

.sim-form-group {
  margin-bottom: 25px;
}

.sim-form-label {
  display: block;
  margin-bottom: 10px;
  color: #4a5568;
  font-weight: 600;
  font-size: 15px;
}

.sim-form-input,
.sim-form-select,
.sim-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.sim-form-input:focus,
.sim-form-select:focus,
.sim-form-textarea:focus {
  outline: none;
  border-color: #F39C12;
}

.sim-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.sim-yes-no-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.sim-yes-no-card {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.sim-yes-no-card:hover {
  border-color: #F39C12;
  background: #f8f9fa;
}
.sim-yes-no-card.selected {
  border-color: #F39C12;
  background: #fff8ed;
  color: #d68910;
}

.sim-dependencies-section {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}
.sim-dependencies-section h3 {
  font-size: 18px;
  color: #212529;
  margin-bottom: 20px;
  font-weight: 600;
}

.sim-info-box {
  background: #e7f3ff;
  border-left: 4px solid #0d6efd;
  padding: 16px 18px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}
.sim-info-box strong {
  color: #0d6efd;
}

.sim-price-display {
  background: linear-gradient(135deg, #fff5e6, #fff0db);
  border: 2px solid #F39C12;
  border-radius: 8px;
  padding: 35px;
  text-align: center;
  margin-bottom: 30px;
}
.sim-price-display .label {
  color: #4a5568;
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 500;
}
.sim-price-display .price {
  font-size: 48px;
  font-weight: 700;
  color: #F39C12;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}
.sim-price-display .subtitle {
  color: #6c757d;
  font-size: 15px;
}

.sim-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.sim-button-group {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.sim-btn {
  flex: 1;
  padding: 16px 30px;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sim-btn-primary {
  background: #F39C12;
  color: #ffffff;
}
.sim-btn-primary:hover {
  background: rgb(209.5879518072, 132.6506024096, 10.6120481928);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}
.sim-btn-secondary {
  background: #6c757d;
  color: #ffffff;
}
.sim-btn-secondary:hover {
  background: #5a6268;
}

.sim-success-message {
  text-align: center;
  padding: 50px 20px;
}
.sim-success-message .icon {
  font-size: 90px;
  margin-bottom: 25px;
}
.sim-success-message h2 {
  color: #F39C12;
  margin-bottom: 18px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.sim-success-message p {
  color: #4a5568;
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .simulator-widget-btn {
    bottom: 15px;
    left: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .simulator-container {
    max-height: 95vh;
  }
  .sim-header {
    padding: 20px;
  }
  .sim-header-top {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .sim-brand-name {
    font-size: 22px;
  }
  .sim-logo {
    font-size: 32px;
  }
  .sim-title {
    font-size: 20px;
  }
  .sim-subtitle {
    font-size: 14px;
  }
  .sim-cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .sim-content {
    padding: 30px 20px;
  }
  .sim-options-grid {
    grid-template-columns: 1fr;
  }
  .sim-step-title {
    font-size: 21px;
  }
  .sim-price-display .price {
    font-size: 40px;
  }
  .sim-form-grid {
    grid-template-columns: 1fr;
  }
  .sim-toggle-btn {
    padding: 15px 20px;
    font-size: 15px;
  }
  .sim-steps-list {
    padding: 20px;
  }
  .sim-explanation-text p {
    font-size: 13px;
  }
  .sim-explanation-text h4 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .simulator-widget-btn {
    bottom: 15px;
    left: 15px;
    padding: 10px 18px;
    font-size: 14px;
    gap: 8px;
  }
  .simulator-widget-btn .simulator-widget-btn-icon {
    font-size: 18px;
  }
  .sim-brand-name {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Mentions Legales
--------------------------------------------------------------*/
.mentions-legales {
  padding: 60px 0;
}
.mentions-legales .legal-block {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.mentions-legales .legal-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mentions-legales .legal-block h2 i {
  font-size: 24px;
  color: var(--accent-color);
}
.mentions-legales .legal-block h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}
.mentions-legales .legal-block h3:first-of-type {
  margin-top: 0;
}
.mentions-legales .legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 12px;
}
.mentions-legales .legal-content p:last-child {
  margin-bottom: 0;
}
.mentions-legales .legal-content p strong {
  color: var(--heading-color);
}
.mentions-legales .legal-content ul {
  margin: 15px 0;
  padding-left: 20px;
}
.mentions-legales .legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.mentions-legales .legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}
.mentions-legales .legal-content ul li strong {
  color: var(--heading-color);
}
.mentions-legales .legal-content a {
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s ease;
}
.mentions-legales .legal-content a:hover {
  color: color-mix(in srgb, var(--accent-color), #000 20%);
}
@media (max-width: 768px) {
  .mentions-legales {
    padding: 40px 0;
  }
  .mentions-legales .legal-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  .mentions-legales .legal-block h2 {
    font-size: 18px;
  }
  .mentions-legales .legal-block h2 i {
    font-size: 20px;
  }
  .mentions-legales .legal-block h3 {
    font-size: 16px;
  }
  .mentions-legales .legal-content p,
  .mentions-legales .legal-content ul li {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Presentation Section
--------------------------------------------------------------*/
.presentation {
  padding: 60px 0 0;
}
.presentation .presentation-header {
  margin-bottom: 50px;
}
.presentation .presentation-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  margin-bottom: 18px;
}
.presentation h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.3;
}
.presentation .presentation-subtitle {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.presentation .presentation-content p {
  color: var(--default-color);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 15px;
}
.presentation .presentation-content p strong {
  color: var(--heading-color);
}
.presentation .presentation-cta {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.presentation .btn-presentation-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.presentation .btn-presentation-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: #fff;
}
.presentation .btn-presentation-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.presentation .btn-presentation-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.presentation .presentation-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.presentation .point-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}
.presentation .point-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}
.presentation .point-item:hover .point-icon {
  background: var(--accent-color);
}
.presentation .point-item:hover .point-icon i {
  color: #fff;
}
.presentation .point-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.presentation .point-icon i {
  font-size: 22px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}
.presentation .point-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}
.presentation .point-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
}
.presentation .presentation-stats {
  margin-top: 60px;
  padding: 40px 0;
  background: var(--accent-color);
}
.presentation .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.presentation .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.presentation .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.presentation .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
@media (max-width: 991px) {
  .presentation h2 {
    font-size: 28px;
  }
  .presentation .presentation-subtitle {
    font-size: 15px;
  }
  .presentation .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .presentation .stat-number {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .presentation {
    padding: 40px 0 0;
  }
  .presentation .presentation-header {
    margin-bottom: 35px;
  }
  .presentation h2 {
    font-size: 24px;
  }
  .presentation .point-item {
    padding: 16px;
    gap: 14px;
  }
  .presentation .point-icon {
    width: 44px;
    height: 44px;
  }
  .presentation .point-icon i {
    font-size: 20px;
  }
  .presentation .point-content h4 {
    font-size: 15px;
  }
  .presentation .presentation-stats {
    margin-top: 40px;
    padding: 30px 0;
  }
  .presentation .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .presentation .stat-number {
    font-size: 26px;
  }
  .presentation .stat-label {
    font-size: 13px;
  }
  .presentation .presentation-cta {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .presentation .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Carrousel Réalisations Avant/Après
--------------------------------------------------------------*/
.realisations {
  overflow: hidden;
}

.realisations-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
}
.carousel-item.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.carousel-item.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}
.carousel-item.slide-in-left {
  transform: translateX(-100%);
  opacity: 0;
}
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  padding: 40px 20px 50px;
  text-align: center;
}
.carousel-caption h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.carousel-caption p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}
.carousel-caption i {
  color: var(--accent-color);
  margin-right: 4px;
}

/* Boutons navigation */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0;
  opacity: 0.9;
}
.carousel-control i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.carousel-control:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.carousel-control.prev {
  left: 12px;
}
.carousel-control.next {
  right: 12px;
}

/* Indicateurs (dots) */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  height: 20px;
  margin: 0 auto;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: block;
}
.carousel-indicator.active {
  background: var(--accent-color);
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
}
.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption h3 {
    font-size: 18px;
  }
  .carousel-caption p {
    font-size: 13px;
  }
  .carousel-control {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    font-size: 14px;
  }
  .carousel-control.prev {
    left: 8px;
  }
  .carousel-control.next {
    right: 8px;
  }
}
/*--------------------------------------------------------------
# Section Quartiers
--------------------------------------------------------------*/
.quartiers .quartier-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.quartiers .quartier-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.quartiers .quartier-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quartiers .quartier-card h3 i {
  color: var(--accent-color);
  font-size: 18px;
}
.quartiers .quartier-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}
.quartiers .quartier-card p strong {
  color: var(--heading-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# 404 Error Page
--------------------------------------------------------------*/
.error-page .header {
  --background-color: rgba(33, 34, 34, 0.97);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.section-404 {
  padding: 120px 0 80px;
  display: block;
}
.section-404 .error-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}
.section-404 h1 {
  font-size: 120px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  line-height: 1;
}
.section-404 .lead {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.section-404 p {
  color: var(--default-color);
  margin-bottom: 30px;
}
.section-404 .error-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.section-404 .error-links .btn-devis {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--cta-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.section-404 .error-links .btn-devis:hover {
  background-color: #d4860d;
}
.section-404 .error-links .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.section-404 .error-links .btn-phone:hover {
  background-color: #2d7316;
}
@media (max-width: 768px) {
  .section-404 {
    padding: 100px 0 60px;
  }
  .section-404 h1 {
    font-size: 80px;
  }
  .section-404 .lead {
    font-size: 18px;
  }
}
