:root {

  --red: #e60000;

  --dark: #1a1a1a;

  --white: #ffffff;

  --gray: #f4f6f8;

}
 
* {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}
 
body {

  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  background: var(--white);

  color: var(--dark);

  overflow-x: hidden;

  scroll-behavior: smooth;

  line-height: 1.6;

}
 
/* === TICKER (BANDEAU DÉFILANT) === */

.ticker-wrap {

  background: var(--dark);

  color: var(--white);

  padding: 10px 0;

  border-bottom: 3px solid var(--red);

  overflow: hidden;

}
 
.ticker {

  display: flex;

  white-space: nowrap;

  animation: moveTicker 30s linear infinite;

}
 
.ticker span {

  margin-right: 50px;

  font-weight: 700;

  text-transform: uppercase;

  font-size: 0.9rem;

  display: inline-flex;

  align-items: center;

  gap: 8px;

}
 
.ticker i {

  color: var(--red);

}
 
@keyframes moveTicker {

  0% { transform: translateX(0); }

  100% { transform: translateX(-100%); }

}
 
/* === HEADER & NAV === */

header {

  background: var(--dark);

  padding: 15px 5%;

  position: sticky;

  top: 0;

  z-index: 1000;

  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}
 
nav {

  display: flex;

  justify-content: space-between;

  align-items: center;

  max-width: 1200px;

  margin: 0 auto;

}
 
.logo-area {

  display: flex;

  align-items: center;

  gap: 15px;

}
 
.main-logo {

  height: 55px;

  width: auto;

}
 
.brand {

  display: flex;

  flex-direction: column;

  line-height: 1.1;

}
 
.brand-top {

  font-size: 1.5rem;

  font-weight: 900;

  color: var(--white);

}
 
.nav-right a {

  text-decoration: none;

}
 
.phone-btn {

  background: var(--red);

  color: var(--white);

  padding: 10px 20px;

  border-radius: 50px;

  font-weight: 800;

  font-size: 1rem;

  transition: 0.3s;

  display: inline-flex;

  align-items: center;

  gap: 10px;

}
 
.pulsate {

  animation: pulsateEffect 2s infinite;

}
 
@keyframes pulsateEffect {

  0% { box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7); }

  70% { box-shadow: 0 0 0 10px rgba(230, 0, 0, 0); }

  100% { box-shadow: 0 0 0 0 rgba(230, 0, 0, 0); }

}
 
/* === HERO SECTION === */

.hero {

  min-height: 80vh; 

  /* Correction image .jpg et ajout d'un filtre sombre pour lisibilité */

  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url("image_fond.jpg") no-repeat center center/cover;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 80px 20px;

}
 
.hero-content {

  color: var(--white);

  max-width: 800px;

  width: 100%;

}
 
.hero h1 {

  font-size: 3.5rem;

  font-weight: 900;

  line-height: 1.2;

  margin-bottom: 15px;

}
 
.hero h1 span {

  color: var(--red);

}
 
.hero p {

  font-size: 1.25rem;

  margin-bottom: 30px;

  font-weight: 500;

}
 
.hero-actions {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

}
 
.cta-important,

.cta-secondary {

  padding: 16px 32px;

  border-radius: 5px;

  text-decoration: none;

  font-weight: 800;

  font-size: 1.1rem;

  transition: transform 0.2s;

  display: inline-block;

}
 
.cta-important {

  background: var(--red);

  color: var(--white);

}
 
.cta-secondary {

  background: var(--white);

  color: var(--dark);

}
 
/* === STATS BAR === */

.stats-bar {

  display: flex;

  justify-content: space-around;

  background: var(--dark);

  color: var(--white);

  padding: 40px 5%;

  text-align: center;

  border-top: 4px solid var(--red);

  flex-wrap: wrap;

  gap: 30px;

}
 
.stat {

  flex: 1;

  min-width: 150px;

}
 
.counter {

  font-size: 3rem;

  color: var(--red);

  font-weight: 900;

  display: block;

  line-height: 1;

  margin-bottom: 5px;

}
 
.stat p {

  font-size: 1rem;

  text-transform: uppercase;

  letter-spacing: 1px;

  opacity: 0.9;

}
 
/* === SERVICES === */

.services {

  padding: 80px 5%;

  text-align: center;

  background: var(--white);

}
 
.services h2, .map-area h2, .reviews-section h2 {

  font-size: 2.2rem;

  margin-bottom: 10px;

  font-weight: 800;

}
 
.service-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;

  margin-top: 50px;

  max-width: 1200px;

  margin-left: auto;

  margin-right: auto;

}
 
.service-card {

  background: var(--gray);

  padding: 40px 30px;

  border-radius: 12px;

  transition: 0.3s;

  position: relative;

  overflow: hidden;

}
 
.service-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 10px 20px rgba(0,0,0,0.1);

  background: var(--white);

  border: 1px solid #eee;

}
 
.service-card i {

  font-size: 3rem;

  color: var(--red);

  margin-bottom: 20px;

}
 
.service-card h3 {

  font-size: 1.5rem;

  margin-bottom: 15px;

  font-weight: 800;

}
 
/* === REVIEWS (AVIS GOOGLE) === */

.reviews-section {

  padding: 80px 5%;

  background: var(--gray);

  text-align: center;

}
 
.review-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

  max-width: 1200px;

  margin: 0 auto;

  margin-top: 40px;

}
 
.review-card {

  background: var(--white);

  padding: 30px;

  border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);

  text-align: left;

  border-left: 4px solid var(--red);

}
 
.stars {

  color: #ffc107;

  font-size: 1.2rem;

  margin-bottom: 15px;

  letter-spacing: 2px;

}
 
.review-card p {

  font-style: italic;

  font-size: 1rem;

  color: #555;

  margin-bottom: 20px;

}
 
.author {

  font-weight: 800;

  color: var(--dark);

  text-transform: uppercase;

  font-size: 0.9rem;

}
 
.google-btn {

  display: inline-block;

  background: #fff;

  color: #4285F4;

  padding: 15px 30px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  transition: 0.3s;

  border: 1px solid #eee;

}
 
.google-btn:hover {

  transform: translateY(-3px);

  box-shadow: 0 6px 15px rgba(0,0,0,0.15);

}
 
.google-btn i {

  margin-right: 10px;

}
 
/* === MAP & FOOTER === */

.map-area {

  padding: 60px 5%;

  background: var(--white);

  text-align: center;

}
 
.map-box {

  margin-top: 30px;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

  max-width: 1200px;

  margin-left: auto;

  margin-right: auto;

}
 
footer {

  background: var(--dark);

  color: #bbb;

  padding: 40px 5%;

  text-align: center;

  border-top: 4px solid var(--red);

}
 
footer p {

  margin-bottom: 10px;

}
 
footer strong {

  color: var(--white);

  font-size: 1.2rem;

}
 
/* =========================================

   RESPONSIVE MOBILE (SMARTPHONES)

========================================= */

@media (max-width: 768px) {

  /* Ticker */

  .ticker span {

    font-size: 0.75rem;

    margin-right: 30px;

  }
 
  /* Header */

  header { padding: 10px 15px; }

  nav { flex-direction: column; gap: 15px; }
 
  .logo-area { justify-content: center; }

  .main-logo { height: 45px; }

  .nav-right { width: 100%; }
 
  .phone-btn {

    width: 100%;

    justify-content: center;

    padding: 14px;

    font-size: 1.1rem;

  }
 
  /* Hero */

  .hero {

    min-height: 60vh;

    padding: 60px 15px;

    background-position: 65% center;

  }
 
  .hero h1 { font-size: 2.2rem; }

  .hero p { font-size: 1rem; padding: 0 10px; }
 
  .hero-actions {

    flex-direction: column;

    width: 100%;

  }
 
  .cta-important, .cta-secondary {

    width: 100%;

    text-align: center;

    margin: 0;

  }
 
  /* Stats */

  .stats-bar {

    flex-direction: column;

    padding: 40px 20px;

  }

  .stat {

    border-bottom: 1px solid #333;

    padding-bottom: 20px;

  }

  .stat:last-child {

    border-bottom: none;

    padding-bottom: 0;

  }
 
  /* General Sections */

  .services, .map-area, .reviews-section {

    padding: 50px 20px;

  }
 
  .service-grid, .review-grid {

    grid-template-columns: 1fr;

  }
 
  .services h2, .map-area h2, .reviews-section h2 {

    font-size: 1.8rem;

  }

  iframe { height: 300px; }

}
 