@charset "UTF-8";
/* ==========================================================================
   1. DESIGN SYSTEM STRUCTURE — DESIGN TOKENS & ADVANCED ECOSYSTEM
      Palette de couleurs étendue et variables dynamiques complexes
   ========================================================================== */ 
:root {
  /* Color Palette tokens */
  --roofer-white: #F9FDF6; /* Fond clair et lumineux */
  --roofer-primary: #12131A; /* Noir Profond */
  --roofer-dark-box: #18191F; /* Anthracite de contraste */
  --roofer-navy: #3C3F56; /* Bleu Sourd Fond de Bloc */
  --roofer-slate: #575B7D; /* Slate/Gris d'appui */
  --roofer-accent: #8A8EAD; /* Accent structurel */
  /* Extended Fluid Brand Colors */
  --roofer-accent-light: rgba(138, 142, 173, 0.15);
  --roofer-accent-glow: rgba(138, 142, 173, 0.4);
  --roofer-success: #2E7D32;
  --roofer-error: #C62828;
  /* Typography Tokens */
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
  /* Fluid Typography Engine (Responsive sans Breakpoints via clamp) */
  --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --fs-section-title: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  --fs-body: clamp(0.95rem, 0.2vw + 0.85rem, 1.1rem);
  /* Structural Shadows */
  --shadow-natural: 0 15px 35px rgba(18, 19, 26, 0.06);
  --shadow-deep: 0 30px 60px rgba(18, 19, 26, 0.12);
  --shadow-glow: 0 0 25px rgba(138, 142, 173, 0.25);
  /* Micro-Interactions System (Cubic Bézier Pro) */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.65, 0.265, 1.55);
}

/* ==========================================================================
   2. BASE SYSTEM CORE & GLOBAL RESETS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box !important;
  outline-color: var(--roofer-accent);
}
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-jakarta);
  color: var(--roofer-primary);
  background-color: var(--roofer-white);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: var(--fs-body);
}
/* Selection Dynamic Contrast */ 
::-selection {
  background-color: var(--roofer-primary);
  color: var(--roofer-white);
}
/* Utility Layout Structural Weight */
.section-padding-roofer {
  padding: clamp(60px, 8vw, 110px) 0;
}
.bg-roofer-soft {
  background-color: rgba(138, 142, 173, 0.06);
}
.bg-roofer-dark {
  background-color: var(--roofer-dark-box);
}
.bg-roofer-navy {
  background-color: var(--roofer-navy);
}
.bg-roofer-black {
  background-color: #0b0c10;
}

/* ==========================================================================
   3. TOPBAR & HEADERS COMPONENTS
   ========================================================================== */
.roofer-topbar {
  background-color: var(--roofer-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(249, 253, 246, 0.07);
  padding: 10px 0;
}
.text-roofer-accent {
  color: var(--roofer-accent);
  transition: var(--transition-fast);
}
.text-roofer-accent:hover {
  color: var(--roofer-white);
}
/* Rofgard Navbar Layout (Massive, Stable, Rectangulaire) */
.main-roofer-nav {
  background-color: var(--roofer-white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 19, 26, 0.05);
  transition: var(--transition-smooth);
  z-index: 1030;
}
.main-roofer-nav.navbar-fixed-roofer {
  padding: 14px 0;
  background-color: rgba(249, 253, 246, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-natural);
}
.brand-box-icon {
  font-size: 26px;
  color: var(--roofer-navy);
  margin-right: 12px;
  transition: var(--transition-bounce);
}
.main-roofer-nav:hover .brand-box-icon {
  transform: rotate(8deg) scale(1.05);
}
.brand-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  display: block;
  color: var(--roofer-primary);
  line-height: 1.1;
}
.brand-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--roofer-slate);
  display: block;
  letter-spacing: 1.5px;
  margin-top: 2px;
}
/* Nav links Interactive Timeline Animation effect */
.nav-link-roofer {
  color: var(--roofer-primary);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  transition: var(--transition-fast);
  text-decoration: none;
  position: relative;
}
.nav-link-roofer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 2px;
  background-color: var(--roofer-navy);
  transition: var(--transition-fast);
}
.nav-link-roofer:hover {
  color: var(--roofer-navy);
}
.nav-link-roofer:hover::after {
  width: calc(100% - 36px);
}
.btn-roofer-phone {
  background-color: var(--roofer-navy);
  color: var(--roofer-white) !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-roofer-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
  z-index: -1;
}
.btn-roofer-phone:hover::before {
  left: 100%;
}
.btn-roofer-phone:hover {
  background-color: var(--roofer-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-natural);
}

/* ==========================================================================
   4. HERO SECTION (Heavy Typography & Fluid Engine)
   ========================================================================== */
.roofer-hero {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(138, 142, 173, 0.05) 0%, transparent 50%);
}
.roofer-badge-line {
  display: inline-block;
  border-left: 3px solid var(--roofer-accent);
  padding-left: 12px;
  color: var(--roofer-accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title-main {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  animation: fadeInUp 0.8s var(--transition-smooth);
}
.text-accent-highlight {
  color: var(--roofer-accent);
  position: relative;
  display: inline-block;
}
.hero-paragraph {
  max-width: 720px;
  color: #d1d5db;
  font-size: 18px;
  animation: fadeInUp 1s var(--transition-smooth);
}
/* Action Buttons Design Micro-mechanics */
.btn-roofer-action {
  background-color: var(--roofer-white);
  color: var(--roofer-primary);
  border: none;
  border-radius: 2px;
  padding: 14px 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-bounce);
}
.btn-roofer-action:hover {
  background-color: var(--roofer-accent);
  color: var(--roofer-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.btn-roofer-outline {
  border: 2px solid var(--roofer-accent);
  color: var(--roofer-white);
  border-radius: 2px;
  padding: 12px 30px;
  font-weight: 700;
  transition: var(--transition-smooth);
}
.btn-roofer-outline:hover {
  background-color: var(--roofer-accent);
  color: var(--roofer-primary);
  transform: scale(1.02);
}

/* ==========================================================================
   5. METRICS ARCHITECTURE (Poids sémantique visuel)
   ========================================================================== */
.metric-card-wrapper {
  padding: 20px;
  transition: var(--transition-smooth);
}
.metric-card-wrapper:hover {
  transform: translateY(-5px);
}
.metric-sep {
  width: 35px;
  height: 3px;
  background-color: var(--roofer-accent);
  margin: 12px 0;
  transition: width 0.3s ease;
}
.metric-card-wrapper:hover .metric-sep {
  width: 60px;
}
.text-muted-crest {
  color: #b4b7c5 !important;
}

/* ==========================================================================
   6. SECTION BLOCKS & TEXT GENERATION HEADINGS
   ========================================================================== */
.roofer-section-tag {
  color: var(--roofer-slate);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 6px;
}
.roofer-section-title {
  color: var(--roofer-primary);
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.roofer-heading-line {
  width: 45px;
  height: 4px;
  background-color: var(--roofer-navy);
  margin-top: 15px;
  transition: width 0.4s ease-in-out;
}
/* Dynamic Interaction triggers line expansion on hover of parent content */
.section-header-holder:hover .roofer-heading-line {
  width: 90px;
}

/* ==========================================================================
   7. SERVICE BLOCKS (Asymmetric Grid & Isometric Elevate)
   ========================================================================== */
.roofer-service-block {
  background: var(--roofer-white);
  border: 1px solid rgba(18, 19, 26, 0.08);
  border-radius: 2px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.roofer-service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--roofer-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.roofer-service-block:hover::before {
  transform: scaleX(1);
}
.roofer-service-block:hover {
  box-shadow: var(--shadow-deep);
  border-color: var(--roofer-accent);
  transform: translateY(-8px);
}
.block-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.block-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(18, 19, 26, 0.4));
  opacity: 0;
  transition: var(--transition-fast);
}
.roofer-service-block:hover .block-img-wrapper::after {
  opacity: 1;
}
.block-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.roofer-service-block:hover .block-img-wrapper img {
  transform: scale(1.08) rotate(1deg);
}
.block-content-pad {
  padding: 30px;
}
.block-title {
  color: var(--roofer-primary);
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}
.roofer-service-block:hover .block-title {
  color: var(--roofer-navy);
}
.block-dynamic-footer {
  margin-top: 15px;
}
.btn-block-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--roofer-navy);
  text-decoration: none;
  transition: var(--transition-fast);
}
.btn-block-link .icon-move {
  transition: transform 0.3s ease;
  display: inline-block;
}
.roofer-service-block:hover .btn-block-link .icon-move {
  transform: translateX(5px);
}

/* ==========================================================================
   8. ASYMMETRIC IMAGE HOLDER & FLOATING SHAPES
   ========================================================================== */
.roofer-asymmetric-image-holder {
  padding-right: 20px;
  position: relative;
}
.image-roofer-style {
  border-radius: 2px;
  box-shadow: 15px 15px 0px var(--roofer-navy);
  transition: var(--transition-smooth);
}
.roofer-asymmetric-image-holder:hover .image-roofer-style {
  box-shadow: 25px 25px 0px var(--roofer-accent);
  transform: translate(-5px, -5px);
}
.floating-experience-box {
  position: absolute;
  bottom: -15px;
  right: 5px;
  min-width: 120px;
  background-color: var(--roofer-primary);
  box-shadow: var(--shadow-deep);
  padding: 20px;
  border-radius: 2px;
  animation: floatVertical 4s ease-in-out infinite;
}
.feature-icon-bullet {
  background-color: rgba(93, 97, 125, 0.1);
  color: var(--roofer-navy);
  padding: 12px;
  font-size: 20px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}
.roofer-feature-row:hover .feature-icon-bullet {
  background-color: var(--roofer-navy);
  color: var(--roofer-white);
  transform: scale(1.1);
}

/* ==========================================================================
   9. HIGH-CONVERTING FORM FIELDS SECURITY STRUCTURE
   ========================================================================== */
.roofer-form-wrapper {
  background-color: var(--roofer-white);
  box-shadow: 0 40px 80px rgba(18, 19, 26, 0.18);
  border-radius: 4px !important;
  padding: clamp(25px, 5vw, 50px);
  border: 1px solid rgba(138, 142, 173, 0.1);
}
.roofer-field-group {
  position: relative;
  margin-bottom: 24px;
}
.roofer-field {
  border: 1px solid #e1e5eb !important;
  background-color: #fcfdfe !important;
  padding: 14px 18px !important;
  font-size: 15px;
  border-radius: 2px !important;
  width: 100%;
  transition: var(--transition-fast) !important;
}
.roofer-field:focus {
  border-color: var(--roofer-navy) !important;
  background-color: #ffffff !important;
  box-shadow: var(--shadow-natural) !important;
  transform: scale(1.005);
}
/* Dynamic validation indicator line */
.roofer-field:focus + .field-focus-line {
  width: 100%;
}
.btn-roofer-submit {
  background-color: var(--roofer-primary);
  color: var(--roofer-white);
  border: none;
  border-radius: 2px;
  padding: 16px 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
  box-shadow: var(--shadow-natural);
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.btn-roofer-submit:hover {
  background-color: var(--roofer-slate);
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px);
}
.btn-roofer-submit:disabled {
  background-color: var(--roofer-accent) !important;
  cursor: not-allowed;
  transform: none;
}
.alert-roofer {
  border-radius: 2px;
  font-weight: 600;
  border: none;
  padding: 16px;
}

/* ==========================================================================
   10. MAPS, WRAPPERS & MODERN STRUCTURAL ENGINE
   ========================================================================== */
.roofer-map-container {
  display: block;
  line-height: 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
  filter: grayscale(40%) contrast(105%);
  transition: var(--transition-smooth);
}
.roofer-map-container:hover {
  filter: grayscale(0%) contrast(100%);
}
.roofer-footer {
  background-color: var(--roofer-primary);
  color: var(--roofer-white);
  padding: 80px 0 40px 0;
}

/* ==========================================================================
   11. KEYFRAMES MOTIONS ENGINE (Pure dynamic acceleration)
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-flash {
  animation: flashEffect 2.5s infinite ease-in-out;
}
@keyframes flashEffect {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.98);
  }
}

/* ==========================================================================
   12. SENSITIVE REDUCED MOTION MANAGEMENT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
iframe {
  display: block;
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}