/* Style général */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
/* ---- ENTÊTE MODERNE ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: radial-gradient(circle at top, #111 0%, #000 55%, #000 100%);
  border-bottom: 1px solid #222;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Logo du header */
.header-logo {
  height: 56px;
  width: auto;
}

/* Logo de la section ACCUEIL (grand logo) */
.home-logo {
  display: block;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 460px;   /* taille idéale */
  height: auto;
  filter: drop-shadow(0 0 12px #39ff14);
}

/* Mobile */
@media (max-width: 600px) {
  .home-logo {
    max-width: 300px;
  }
}

.header-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Version mobile */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .logo-img {
    height: 48px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }
}



/* Section Héros */
.hero {
  background: linear-gradient(to bottom, #1a1a1a, #000);
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 30px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
}

/* Sections */
.section {
  padding: 40px 0;
  text-align: center;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e30613;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.section li {
    margin: 8px 0;
    font-size: 18px;
}

/* Pied de page */
.site-footer {
    background: #000;
    padding: 15px 0;
    text-align: center;
    color: #777;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .logo-img {
        width: 80%;
        max-width: 320px;
        filter: drop-shadow(0 0 12px #39ff14);
    }

    .hero {
        padding-top: 30px;
    }
}
/* Boutons contact flottants */
.floating-contact {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #39ff14;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 0 14px rgba(57, 255, 20, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 1);
}

.contact-btn.call {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.contact-btn.call:hover {
    background: #e0e0e0;
}

.contact-btn.wa {
    background: #25d366;
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.8);
}

.contact-btn.wa:hover {
    background: #1ebe5b;
}

/* Section Gains */
/* Texte sous le titre */
.section-note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Barre de recherche */
.gains-search {
  width: 100%;
  max-width: 400px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

/* Conteneur du tableau (scroll sur mobile) */
.gains-table-wrapper {
  overflow-x: auto;
}

/* Tableau */
.gains-table {
  width: 100%;
  border-collapse: collapse;
  background: #181818;
  font-size: 15px;
  margin-top: 10px;
}

/* Cellules */
.gains-table th,
.gains-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #333;
  text-align: left;
}

/* En-tête */
.gains-table th {
  background: #202020;
  color: #ff4d00;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

/* Une ligne sur deux */
.gains-table tr:nth-child(even) {
  background: #151515;
}

/* Survol */
.gains-table tr:hover {
  background: #262626;
}
/* ---------- AVIS & CONFIANCE ---------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.trust-item {
  background: #181818;
  border-radius: 8px;
  padding: 16px 18px;
  text-align: left;
  border: 1px solid #262626;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #ff4d00;
}

.trust-item p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 700px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* ----- BOUTON AVIS GOOGLE ----- */

.google-review-box {
    margin-top: 25px;
    text-align: center;
}

.google-review-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ffcc00, #ff8800);
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(255, 200, 0, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(255, 200, 0, 1);
}
/* ----- ZONE D’INTERVENTION (3 colonnes) ----- */

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  text-align: left;
}

.zone-col h3 {
  color: #e30613;
  font-size: 18px;
  margin-bottom: 10px;
}

.zone-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-col li {
  margin: 6px 0;
  font-size: 15px;
  color: #ddd;
}

/* Version mobile */
@media (max-width: 800px) {
  .zone-grid {
    grid-template-columns: 1fr;
  }
}
/* ---- Carte Google Maps ---- */
.map-wrapper {
  margin: 25px auto;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}
/* ---- Carte Google Maps ---- */
.map-wrapper {
  margin: 35px auto;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,0,0,0.7);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}
/* ===== Galerie ===== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px auto;
}

.galerie-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galerie-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


.galerie-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 35px rgba(0, 255, 0, 0.4);
}
.galerie-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


