* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("images/hero.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-text {
  color: #4da3ff;
  margin: 20px 0;
}

.cta-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* VIDEO */
.video-section {
  padding: 40px 20px;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
}

/* BACKGROUND IMAGE */
.bg-topo {
  position: relative;
  height: 280px;
  margin: 50px 0;
}

.bg-topo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/EGT.jpg") center/contain no-repeat;
  opacity: 0.12;
}

/* SERVICES */
.service {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.service img {
  width: 45%;
  border-radius: 10px;
}

.service.reverse {
  flex-direction: row-reverse;
}

/* TRUST */
.trust {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.trust ul {
  list-style: none;
}

.trust li {
  margin: 10px 0;
}

/* MAP */
.map-section {
  text-align: center;
  padding: 40px 20px;
}

.map-btn {
  display: inline-block;
  background: #0a5c36;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.whatsapp-float img {
  width: 35px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
  }

  .service img {
    width: 100%;
  }

  .hero {
    height: 80vh;
  }
}
.header {
  background: #0c3b5e;
  padding: 20px;
  text-align: center;
}

.logo {
  color: #8bc34a;
  font-weight: bold;
  margin-bottom: 15px;
}

.nav a {
  display: block;
  color: #8bc34a;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
}
.hero {
  background: #6e6e6e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 28px;
}

.hero p {
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.blue { background: #0c3b5e; }
.yellow { background: #f5c400; color: #000; }
.green { background: #2e7d32; }
.delivery {
  background: #f5c400;
  text-align: center;
  padding: 40px 20px;
}

.delivery h2 {
  margin-bottom: 10px;
}
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact input,
.contact textarea {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  display: block;
}

.contact button {
  background: #25d366;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  margin-top: 15px;
}
.footer {
  background: #0c3b5e;
  color: white;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero,
.bg-topo {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
background-size: cover;
.video-section {
  width: 100%;
  padding: 20px;
  background: #000;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 900px;
  height: auto;
}
body {
  margin: 0;
  padding: 0;
}

section {
  padding-left: 15px;
  padding-right: 15px;
}
.video-section {
  width: 100%;
  background: #000;
  padding: 0;
  margin: 0;
}

.video-section video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
/* =========================
   CORRECTION STRUCTURE MOBILE
   ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* HERO */
  .hero {
    width: 100%;
    text-align: center;
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* BOUTONS SERVICES */
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .buttons a {
    width: 85%;
    max-width: 300px;
    text-align: center;
  }

  /* BLOCS IMAGES / BACKGROUND */
  .bg-topo,
  .video-section {
    width: 100%;
    margin: 0 auto;
  }

  /* CONTACT / FORM */
  .contact-form {
    width: 100%;
    padding: 0;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }

  /* BOUTON WHATSAPP */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    z-index: 999;
  }
}
.localisation-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-localisation {
  background-color: #0a5c2d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-localisation:hover {
  background-color: #08824a;
}
.maps-btn {
  text-align: center;
  margin-top: 12px;
}

.maps-btn a {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.maps-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.logo-band {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(to right, #f8f8f8, #ffffff, #f8f8f8);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background: #0b3a5a;
  color: #7CFF6B;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: #7a7a7a; /* ou image */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 500px;
}

.hero-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BOUTONS */
.btn {
  padding: 14px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.blue { background: #0b3a5a; }
.yellow { background: #f5c400; color: #000; }
.green { background: #2e7d32; }

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }

  .services {
    flex-direction: row;
  }

  .btn {
    flex: 1;
    text-align: center;
  }
}
.video-section {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

.video-section video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #000;
}

