@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   VARIABLES DE COULEUR & CONFIGURATION DE BASE (Style ThemeForest)
   ========================================================================== */ :root {
  --primary: #0F172A;
  --secondary: #F8FAFC;
  --text: #475569;
  --accent: #1C7CAC;
  --accent-hover: #155e82;
  --white: #ffffff;
  --danger: #dc2626;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --transition: all 0.3s ease-in-out;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--secondary);
}
body {
  line-height: 1.7;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.top-bar a:hover {
  color: var(--accent);
}
.top-bar .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}
.top-bar-emergency {
  background-color: var(--danger);
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: bold;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.9;
  }
}
/* ==========================================================================
   HEADER & NAVIGATION ACTIVE/RESPONSIVE
   ========================================================================== */
.main-header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-menu {
  display: flex;
  gap: 20px;
}
.nav-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-phone {
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-phone:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}
.cta-nav-mobile {
  display: none;
}
/* Bouton Burger Mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
/* Animations Burger Actif */
.burger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('images/reparation-remplacement-tuiles-mimbaste.jpg') no-repeat center center/cover;
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
}
.hero-content {
  max-width: 850px;
  margin: 0 auto;
}
.hero-subtitle {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(28, 124, 172, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.hero-section p {
  font-size: 18px;
  color: rgba(248, 250, 254, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.btn-accent, .btn-secondary {
  padding: 15px 32px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
}
.btn-secondary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}
/* ==========================================================================
   BADGES RAILS
   ========================================================================== */
.features-badges {
  max-width: 1200px;
  margin: -50px auto 50px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.badges-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-around;
  padding: 30px;
  gap: 20px;
}
.badge-item {
  text-align: center;
  flex: 1;
}
.badge-item i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 15px;
}
.badge-item h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.badge-item p {
  font-size: 14px;
  color: var(--text);
}
/* ==========================================================================
   SECTIONS PRESTATIONS (SERVICES DYNAMIQUES FLEX)
   ========================================================================== */
.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.service-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.service-image {
  flex: 1;
}
.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 400px;
}
.service-text {
  flex: 1;
}
.section-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.tag-emergency {
  color: var(--danger);
}
.service-text h2 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.service-text p {
  margin-bottom: 25px;
  color: var(--text);
}
.service-list {
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--primary);
}
.service-list li i {
  color: var(--accent);
  margin-top: 4px;
}
/* Structure alternative inversée pour le rythme visuel */
.service-section.alternate .service-container {
  flex-direction: row-reverse;
}
/* Alerte Fuite Spécifique */
.emergency-highlight {
  background-color: rgba(220, 38, 38, 0.03);
  border: 2px dashed rgba(220, 38, 38, 0.15);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
}
.inline-call {
  margin-top: 25px;
  background-color: var(--danger);
}
.inline-call:hover {
  background-color: #b91c1c;
}
/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.main-footer {
  background-color: var(--primary);
  color: rgba(248, 250, 254, 0.7);
  padding: 70px 20px 20px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-info {
  flex: 2;
  max-width: 500px;
}
.footer-info h3, .footer-links h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-info p {
  margin-bottom: 15px;
}
.footer-contact-item {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-item i {
  color: var(--accent);
}
.footer-links {
  flex: 1;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: rgba(248, 250, 254, 0.7);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(248, 250, 254, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-cta-btn {
  background-color: rgba(28, 124, 172, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.footer-cta-btn:hover {
  background-color: var(--accent);
  color: var(--white);
}
/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES COMPLÈTES)
   ========================================================================== */
@media (max-width: 992px) {
  .service-container, .service-section.alternate .service-container {
    flex-direction: column;
    gap: 30px;
  }
  .service-image img {
    height: 300px;
  }
  .hero-section h1 {
    font-size: 36px;
  }
  .badges-container {
    flex-direction: column;
    gap: 30px;
  }
  .features-badges {
    margin-top: -20px;
  }
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  /* Menu rideau mobile */
  .nav-menu {
    position: fixed;
    top: 103px; /* Évite de couvrir la topbar + header */
    left: -100%;
    width: 100%;
    height: calc(100vh - 103px);
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 18px;
  }
  .nav-link:hover {
    background-color: var(--secondary);
    border-bottom: 1px solid transparent;
  }
  .cta-nav-mobile {
    display: block;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 15px;
    margin: 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  .top-bar-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .top-bar .separator {
    display: none;
  }
  .top-bar span {
    display: block;
    margin-bottom: 2px;
  }
  .header-right .btn-phone {
    padding: 10px 15px;
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}