/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= BODY ================= */
body {
  background: #050b1d;
  color: #fff;
  padding-top: 70px;
}

/* ================= HEADER ================= */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(5,11,29,0.95);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 38px;
}

.topbar span {
  font-weight: 600;
  font-size: 1.05rem;
}

/* NAV DESKTOP */
#navMenu {
  display: flex;
}

#navMenu a {
  margin-left: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ================= BURGER ================= */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ================= HERO ================= */
.hero {
  height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(5,11,29,0.75), rgba(5,11,29,0.75)),
    url("assets/hero-bg.webp") center / cover no-repeat;
}

.hero-box {
  max-width: 900px;
  background: rgba(0,0,0,0.45);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.hero-logo {
  width: 110px;
  margin-bottom: 20px;
}

.hero span {
  color: #f5c542;
}

.subtitle {
  margin-top: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 26px;
  margin: 14px 10px 0;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.3s;
}

.hero-actions a.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.blue {
  background: #1e90ff;
  color: #fff;
}

.gold {
  background: #f5c542;
  color: #000;
}

.btn:hover {
  transform: scale(1.07);
}

/* ================= SECTIONS ================= */
.section {
  padding: 90px 20px;
  text-align: center;
}

.section.dark {
  background: #0b1638;
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(180deg, #08163a, #050b1d);
  padding: 40px 30px;
  border-radius: 22px;
  transition: 0.4s;
}

.service-card i {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30,144,255,0.25);
}

/* ================= PLATEFORMES ================= */
.platform-title {
  margin-top: 70px;
  font-size: 1.3rem;
  color: #f5c542;
}

.platforms-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.platform-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.platform-card:hover {
  background: #1e90ff;
  transform: scale(1.05);
}

/* ================= AGENCES ================= */
.agences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.agence {
  background: #050b1d;
  padding: 35px;
  border-radius: 20px;
}

.agence-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* ================= FORM ================= */
.reclamation-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reclamation-form input,
.reclamation-form select,
.reclamation-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: none;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  z-index: 999;
}

/* ================= ANIMATIONS ================= */
.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.js .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE MOBILE ================= */
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  #navMenu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #050b1d;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  #navMenu.active {
    display: flex;
  }

  #navMenu a {
    padding: 18px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-box {
    padding: 35px 25px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #030716;
  padding: 70px 20px 20px;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #f5c542;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-col a {
  color: #25d366;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-logo {
  width: 90px;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-col a {
    display: block;
    margin-top: 8px;
  }
}
