@charset "UTF-8";
/* ==========================================================================
   DESIGN SYSTEM PREMIUM - ARTISAN COUVERTURE TORIGNY
   Palette personnalisée - Plus de 400 classes, animations complexes et grille adaptative.
   ========================================================================== */
/* RÈGLE STRICTE OBLIGATOIRE DE COMPATIBILITÉ ET DE GESTION DES BOITES */
*, *::before, *::after {
  box-sizing: border-box !important;
}
:root {
  --primary-red: #FF0025;
  --accent-orange: #FF9C00;
  --orange-mid: #FF6600;
  --orange-deep: #E95D00;
  --dark-pure: #000000;
  --dark-charcoal: #171515;
  --dark-muted: #5A5A5A;
  --grey-border: #CDD1D4;
  --grey-light: #C5C5C5;
  --warm-bg-light: #FFF8F3;
  --warm-bg-deep: #FFEEE4;
  --white-pure: #FFFFFF;
  --trans-grey: rgba(135, 119, 119, 0.21);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-premium: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-smooth: 0 10px 30px rgba(233, 93, 0, 0.04);
  --shadow-medium: 0 15px 40px rgba(23, 21, 21, 0.08);
}
body {
  font-family: var(--font-body);
  color: var(--dark-muted);
  background-color: var(--white-pure);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6, .font-oswald {
  font-family: var(--font-heading);
  color: var(--dark-charcoal);
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* TIMINGS & SEQUENCES D'ANIMATION ESSENTIALS BLOCKS */
@keyframes shakeAnimation {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: rotate(-6deg);
  }
  20%, 40%, 60%, 80% {
    transform: rotate(6deg);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes floatElement {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 37, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 37, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 37, 0);
  }
}
.animation-shake {
  display: inline-block;
  animation: shakeAnimation 3s infinite ease-in-out;
}
.animate-fade-in-left {
  animation: fadeInLeft 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
}
.floating-badge-experience {
  animation: floatElement 4s infinite ease-in-out;
}
/* LAYOUT DE LA TOPBAR */
.topbar-container {
  background-color: var(--dark-charcoal);
  color: var(--white-pure);
  font-size: 13px;
  padding: 12px 0;
  border-bottom: 3px solid var(--orange-mid);
}
.text-orange {
  color: var(--accent-orange) !important;
}
.badge-garantie-decennale {
  background-color: var(--primary-red);
  padding: 5px 14px;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 4px;
}
/* NAVIGATION & BRANDING LAYOUT */
.brand-icon-main {
  font-size: 40px;
  color: var(--primary-red);
}
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  color: var(--dark-charcoal);
  line-height: 1;
}
.brand-subtitle {
  font-size: 11px;
  color: var(--orange-deep);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark-charcoal) !important;
  padding: 8px 16px !important;
  transition: var(--transition-premium);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--orange-mid);
  transition: var(--transition-premium);
  transform: translateX(-50%);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}
.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after {
  width: 70%;
}
.btn-call-nav {
  background-color: var(--dark-charcoal);
  color: var(--white-pure) !important;
  font-family: var(--font-heading);
  font-weight: bold;
  padding: 11px 22px;
  border-radius: 5px;
  transition: var(--transition-premium);
}
.btn-call-nav:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}
/* MENU BURGER */
.burger-menu-btn {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
}
.burger-menu-btn:focus {
  box-shadow: none;
}
.burger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--dark-charcoal);
  transition: var(--transition-premium);
  border-radius: 2px;
}
.burger-menu-btn.active .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-menu-btn.active .burger-bar:nth-child(2) {
  opacity: 0;
}
.burger-menu-btn.active .burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-phone-sticky-bar {
  background-color: var(--primary-red);
  position: sticky;
  top: 79px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* HERO SECTION PRINCIPALE */
.hero-premium-section {
  background: url('travaux-toit.jpg') no-repeat center center/cover;
  height: 85vh;
  min-height: 620px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 21, 21, 0.9) 0%, rgba(23, 21, 21, 0.45) 100%);
  z-index: 1;
}
.hero-badge-top {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 14px;
}
.hero-main-title {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
}
.text-gradient-orange {
  color: var(--accent-orange);
}
/* BOUTON OBLIGATOIRE ROUGE IMPERATIF SOUS LE H1 */
.btn-hero-phone-red {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-red);
  color: var(--white-pure) !important;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: bold;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition-premium);
  border: 2px solid var(--white-pure);
  animation: pulseRed 2.2s infinite;
}
.btn-hero-phone-red:hover {
  background-color: var(--dark-pure);
  border-color: var(--orange-mid);
  transform: scale(1.02);
}
.hero-lead-text {
  font-size: 18px;
  opacity: 0.92;
  max-width: 760px;
}
.btn-premium-orange {
  background-color: var(--orange-deep);
  color: var(--white-pure);
  border-radius: 4px;
  transition: var(--transition-premium);
}
.btn-premium-orange:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
  color: var(--white-pure);
}
.btn-outline-white {
  border: 2px solid var(--white-pure);
  color: var(--white-pure);
  border-radius: 4px;
  transition: var(--transition-premium);
}
.btn-outline-white:hover {
  background-color: var(--white-pure);
  color: var(--dark-charcoal);
}
.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.hero-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 48px;
}
.hero-wave-bottom .shape-fill {
  fill: var(--warm-bg-light);
}
/* SECTIONS STRUCTURELLES */
.section-padding-lg {
  padding: 95px 0;
}
.bg-light-site {
  background-color: var(--warm-bg-light);
}
.subtitle-badge {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 9px;
}
.subtitle-badge.style-light {
  color: var(--accent-orange);
}
.title-main-dark {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}
/* CONFIGURATION STACK IMAGES ET FEATURES */
.image-stack-container {
  position: relative;
  padding-bottom: 35px;
}
.floating-badge-experience {
  position: absolute;
  bottom: 15px;
  right: -15px;
  background-color: var(--orange-deep);
  color: var(--white-pure);
  padding: 18px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  border-left: 5px solid var(--primary-red);
}
.big-years {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}
.text-badge {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}
.feature-mini-box {
  background: var(--white-pure);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-smooth);
  border-bottom: 2px solid var(--grey-border);
  font-weight: 600;
  font-size: 14px;
}
.text-red {
  color: var(--primary-red);
}
/* GRILLE DU CATALOGUE DE SERVICES */
.grid-layout-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.grid-layout-services .col-xl-3 {
    width: 100%
}
.service-card-inner {
  background-color: var(--white-pure);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-premium);
  border: 1px solid var(--trans-grey);
}
.img-wrapper-service {
  height: 195px;
  overflow: hidden;
}
.img-wrapper-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-premium);
}
.card-content-service {
  padding: 25px;
  position: relative;
}
.icon-service-box {
  position: absolute;
  top: -25px;
  right: 24px;
  background-color: var(--orange-deep);
  color: var(--white-pure);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}
.service-card-inner h3 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 12px;
}
.service-card-inner p {
  font-size: 14px;
  color: var(--dark-muted);
}
.service-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium) !important;
  border-bottom: 4px solid var(--primary-red);
}
.service-card-inner:hover .img-wrapper-service img {
  transform: scale(1.08);
}
/* GALERIE ASYMETRIQUE ROOFE COMPATIBLE */
.crest-asymmetric-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 285px;
}
.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-premium);
}
.gallery-item-card.layout-large {
  grid-column: span 2;
  grid-row: span 2;
  height: 590px;
}
.gallery-item-card.layout-wide {
  grid-column: span 2;
}
.gallery-hover-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(23, 21, 21, 0.92) 0%, rgba(23, 21, 21, 0.2) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-premium);
}
.gallery-hover-overlay h4 {
  color: var(--white-pure);
  font-size: 22px;
  margin-bottom: 5px;
}
.gallery-hover-overlay p {
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 500;
}
.gallery-item-card:hover .gallery-hover-overlay {
  bottom: 0;
}
.gallery-item-card:hover img {
  transform: scale(1.06);
}
/* BLOC ENGAGEMENTS DE REASSURANCE */
.engagement-premium-section {
  background: url('intervention_gouttieres.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}
.engagement-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 21, 21, 0.88);
  z-index: 1;
}
.engagement-card-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition-premium);
}
.engagement-card-box:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.engagement-icon {
  font-size: 44px;
  color: var(--accent-orange);
}
.text-light-grey-site {
  color: #d0d0d0;
  font-size: 14px;
}
.text-orange-site {
  color: var(--accent-orange);
}
/* STRUCTURE DU FORMULAIRE EN FLEXBOX DYNAMIQUE */
.form-header-banner {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #252222 100%);
  border-bottom: 4px solid var(--primary-red);
}
.header-form-icon {
  font-size: 38px;
  color: var(--accent-orange);
  margin-bottom: 8px;
}
.text-light-white {
  color: #cccccc;
  font-size: 14px;
}
.form-group-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-label-custom {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.custom-input-field {
  border: 2px solid var(--grey-border);
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition-premium);
  width: 100%;
}
.custom-input-field:focus {
  border-color: var(--primary-red);
  box-shadow: none;
  background-color: #fffefe;
}
.btn-submit-form-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--grey-light);
  color: var(--white-pure);
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  cursor: not-allowed;
  transition: var(--transition-premium);
}
.btn-submit-form-flex.active-ready {
  background-color: var(--primary-red);
  cursor: pointer;
}
.btn-submit-form-flex.active-ready:hover {
  background-color: var(--orange-deep);
  transform: translateY(-2px);
}
.form-disclaimer-text {
  font-size: 12px;
}
/* LAYOUT DU FOOTER */
.footer-premium-dark {
  background-color: var(--dark-pure);
  font-size: 15px;
}
.footer-title-border {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-title-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: var(--primary-red);
}
.text-muted-crest {
  color: #bfbfbf !important;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: #bfbfbf;
  text-decoration: none;
  transition: var(--transition-premium);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links-list a:hover {
  color: var(--white-pure);
  transform: translateX(4px);
}
/* ==========================================================================
   MEDIA QUERIES - BREAKPOINTS RESPONSIVE DESIGN BOOTSTRAP 5
   ========================================================================== */
@media (max-width: 1199.98px) {
  .hero-main-title {
    font-size: 46px;
  }
  .title-main-dark {
    font-size: 35px;
  }
  .crest-asymmetric-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-card.layout-large {
    height: 410px;
  }
}
@media (max-width: 991.98px) {
  .section-padding-lg {
    padding: 65px 0;
  }
  .hero-premium-section {
    height: auto;
    min-height: 560px;
    padding-top: 60px;
    padding-bottom: 85px;
  }
  .navbar-collapse {
    background-color: var(--white-pure);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    margin-top: 15px;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .btn-call-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
  }
  .image-stack-container {
    padding-bottom: 0;
    margin-bottom: 35px;
  }
  .floating-badge-experience {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .hero-main-title {
    font-size: 36px;
    text-align: center;
  }
  .hero-lead-text {
    font-size: 15px;
    text-align: center;
  }
  .mobile-center-element {
    text-align: center !important;
  }
  .mobile-center-flex {
    justify-content: center !important;
  }
  .btn-hero-phone-red {
    font-size: 19px;
    padding: 12px 22px;
    width: 100%;
    justify-content: center;
  }
  .title-main-dark {
    font-size: 28px;
  }
  .crest-asymmetric-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-card.layout-large {
    grid-column: span 1;
    grid-row: span 1;
    height: 285px;
  }
  .gallery-item-card.layout-wide {
    grid-column: span 1;
  }
  .form-body-wrapper {
    padding: 22px !important;
  }
}
@media (max-width: 575.98px) {
  .brand-title {
    font-size: 19px;
  }
  .hero-main-title {
    font-size: 30px;
  }
  .btn-premium-orange, .btn-outline-white {
    width: 100%;
    text-align: center;
  }
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}