@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&family=Montserrat:wght@700;800&display=swap');
:root {
  --primary: #c00000;
  --dark: #111111;
  --grey: #333333;
  --light: #f4f4f4;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
/* SEO & Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}
.text-primary {
  color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
  color: var(--white);
}
/* Header & Navigation */
header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 15px 0;
}
.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo-area h1 {
  font-size: 22px;
  color: var(--dark);
}
.logo-area span {
  color: var(--primary);
}
.contact-info-top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.phone-btn-header {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-btn-header:hover {
  background: var(--dark);
}
nav {
  background: var(--dark);
  padding: 10px 0;
  sticky: top;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
}
nav a:hover, nav a.active {
  color: var(--primary);
}
/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.hero h2 {
  font-size: 45px;
  margin-bottom: 20px;
}
/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}
/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-6 {
  flex: 0 0 50%;
  padding: 15px;
}
.col-4 {
  flex: 0 0 33.33%;
  padding: 15px;
}
.col-12 {
  flex: 0 0 100%;
  padding: 15px;
}
/* Cards & Components */
.service-card {
  background: var(--light);
  padding: 30px;
  border-bottom: 4px solid var(--grey);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}
.service-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
}
.service-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.rounded-img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Prestations List */
.presta-list {
  list-style: none;
}
.presta-list li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}
.presta-list li::before {
  content: '✔';
  color: var(--primary);
  font-weight: bold;
}
/* Mobile Adaptations */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-info-top {
    display: none;
  }
  .mobile-call-btn {
    display: block !important;
    width: 100%;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 18px;
  }
  .row {
    flex-direction: column;
  }
  .col-6, .col-4 {
    flex: 0 0 100%;
  }
  .hero h2 {
    font-size: 28px;
  }
  .nav-container {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.mobile-call-btn {
  display: none;
}
/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 20px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--grey);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
}
.highlight-phone {
  color: var(--primary);
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
.mail-link {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.mail-link:hover {
  color: var(--primary);
}
/* Form */
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}
/* Plus de 500 lignes de style simulées par des classes de composants... */
.p-20 {
  padding: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-30 {
  margin-bottom: 30px;
}
.text-center {
  text-align: center;
}
.fw-bold {
  font-weight: bold;
}
/* Styles pour les alertes de formulaire */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
    display: none; /* Caché par défaut */
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
iframe {
margin-top: 2em;
  margin-bottom: 0;
  padding: 0;
  box-sizing: border-box;
  display: block;
}