/* ==========================================================================
   THEME STYLE: COUVERTURE & BTP CORPORATE PREMIUM (INSPIRATION RAFTER)[cite: 6]
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN SYSTEM VARIABLES & PRESETS
   -------------------------------------------------------------------------- */
:root {
  /* Palette de Couleurs Principale */
  --primary: #ff5e14;          /* Orange Sécurité Premium */
  --primary-hover: #e04b06;
  --secondary: #1a242f;        /* Bleu Ardoise / Anthracite sombre */
  --dark-solid: #0f161c;       /* Noir Profond */
  --body-bg: #ffffff;
  --light-bg: #f4f7fa;         /* Gris Technique Structurel */
  --border-color: #e2e8f0;
  
  /* Palette de Textes */
  --text-dark: #1a2129;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  /* Typographie & Sys */
  --font-base: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-sm: 0 2px 8px rgba(15, 22, 28, 0.05);
  --shadow-md: 0 12px 34px rgba(15, 22, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 22, 28, 0.14);
}

/* --------------------------------------------------------------------------
   02. BASE RESET & ACCESSIBILITÉ
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 25px;
}

.is-layout-flex {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   03. CONFIGURATION TOP-BAR PREMIUM
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--dark-solid);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-group {
  display: flex;
  gap: 30px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-info i {
  color: var(--primary);
  font-size: 14px;
}

.urgency-badge {
  background-color: rgba(255, 94, 20, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 94, 20, 0.25);
}

/* --------------------------------------------------------------------------
   04. NOUVEAU MENU ENTÊTE COMPACT & FIABLE (HEADER / NAV)
   -------------------------------------------------------------------------- */
.main-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Design */
.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.logo-dot {
  color: var(--primary);
}

.logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: -2px;
}

/* Nav Menu Structure */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-menu ul li a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active-link::after {
  width: 100%;
}

/* Boutons Globaux */
.wp-element-button {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.25);
}

.wp-element-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.35);
}

.btn-premium-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: none;
}

.btn-premium-outline:hover {
  background-color: var(--secondary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   05. ARCHITECTURE DROPDOWN ACCESSIBLE (DESKTOP / MOBILE RECONSTRUIT)
   -------------------------------------------------------------------------- */
.dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
  transition: var(--transition-smooth);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--dark-solid);
  min-width: 280px;
  padding: 15px 0 !important;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
  flex-direction: column;
  gap: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 2000;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  padding: 12px 25px !important;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--primary) !important;
  padding-left: 30px !important;
}

@media (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* --------------------------------------------------------------------------
   06. SECTION HERO INTÉGRALE STYLE BTP CORPORATE
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  background-image: radial-gradient(rgba(255, 94, 20, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  background-color: rgba(255, 94, 20, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.feat-item {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
}

.feat-item i {
  color: var(--primary);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
}

.phone-hero-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon-box {
  background-color: #ffffff;
  color: var(--primary);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 94, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0); }
}

.phone-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
}

/* Media Wrapper Image Decorator */
.hero-media-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.exp-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.exp-txt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   07. ZONE DES PRESTATIONS DE COUVERTURE (SERVICES CONTAINER)
   -------------------------------------------------------------------------- */
.services-wrapper {
  padding: 100px 0 40px 0;
}

.section-title-container {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.section-title-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.accent-bar {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 15px auto 0 auto;
}

/* Sections Individuelles Unités */
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-flex {
  display: flex;
  align-items: center;
  gap: 70px;
}

.layout-reverse .service-flex {
  flex-direction: row-reverse;
}

.service-text-col, .service-img-col {
  width: 50%;
  flex-shrink: 0;
}

.title-with-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.service-index {
  font-size: 38px;
  font-weight: 900;
  color: rgba(15, 22, 28, 0.08);
  font-family: monospace;
}

.icon-box-service {
  background-color: rgba(255, 94, 20, 0.08);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.service-subtitle {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.service-points-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 35px;
}

.service-points-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.point-icon {
  color: var(--primary);
  font-size: 13px;
  margin-top: 4px;
}

/* Cartes Graphiques Images */
.premium-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.premium-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-image-card:hover img {
  transform: scale(1.05);
}

.card-border-decorator {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  border-radius: 4px;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   08. BLOC MAP EXTÉRIEUR
   -------------------------------------------------------------------------- */
.map-section-wrapper {
  display: block;
  width: 100%;
  background-color: var(--light-bg);
  line-height: 0;
}

/* --------------------------------------------------------------------------
   09. PIED DE PAGE CORPORATE (FOOTER)
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--dark-solid);
  color: #ffffff;
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary);
}

.brand-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  margin-bottom: 20px;
  max-width: 90%;
}

.label-decennale {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-info span, .area-info p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  margin-bottom: 15px;
}

.contact-info i, .area-info i {
  color: var(--primary);
  margin-right: 10px;
}

.f-phone a {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}
.f-phone a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   10. STRIP ET RESPONSIVE POUR ACTIONS MOBILES
   -------------------------------------------------------------------------- */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ce2c2c;
  color: #ffffff;
  z-index: 4000;
  display: none;
}

.sticky-call-link {
  display: block;
  padding: 16px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

/* Responsive Intermediaire Tablette/Mobile */
.burger-menu, .mobile-call-btn {
  display: none;
}

@media (max-width: 992px) {
  body {
    padding-bottom: 55px; /* Compense la barre sticky */
  }

  .top-bar {
    display: none;
  }
  
  .sticky-mobile-bar {
    display: block;
  }

  .header-right-action {
    display: flex;
    align-items: center;
  }

  .mobile-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ce2c2c;
    color: #ffffff;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-right: 20px;
  }

  /* Configuration du Burger */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3000;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
    border-radius: 2px;
  }

  .burger-menu.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger-menu.active span:nth-child(2) { opacity: 0; }
  .burger-menu.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Volet Mobile */
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 25px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-menu ul li a {
    display: block;
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  /* Dropdown en Accordéon Mobile */
  .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    background-color: var(--light-bg);
    box-shadow: none !important;
    border-top: none !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    transition: max-height 0.4s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 600px;
    padding: 10px 0 !important;
  }

  .dropdown-menu a {
    color: var(--secondary) !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  /* Ajustements sections */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-features-grid {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero-image-frame img {
    height: 320px;
  }

  .service-flex {
    flex-direction: column !important;
    gap: 40px;
  }

  .service-text-col, .service-img-col {
    width: 100%;
  }

  .premium-image-card img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}