/* Reset et typographie */
* {box-sizing:border-box; margin:0; padding:0; font-family: 'Arial', sans-serif; transition:0.2s ease;}
body {background:#0e0e0e; color:#fff; line-height:1.6;}

/* Header avec photo et logo */
header {
  height: 70vh;
  background: url('taxi.webp') center/cover no-repeat;
  display:flex; justify-content:center; align-items:center; position:relative;
}

header::before {
  content:"";
  position:absolute; top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,0.6);
}

/* Logo dans le header */
.header-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 80px; /* ajuster la taille du logo */
  z-index: 10;
}

/* Overlay du texte */
.header-overlay {
  position: relative;
  text-align: center;
  color: #fff;
}
.header-overlay h1 {font-size:3rem;}
.header-overlay h1 span {color:#FFD600;}
.header-overlay p {margin:10px 0; color:#ccc;}
.cta {margin-top:20px;}
.cta a {display:inline-block; margin:8px; padding:12px 20px; border-radius:8px; text-decoration:none; font-weight:bold;}
.call {background:#FFD600; color:#000;}
.whatsapp {background:#1ebe5d; color:#fff;}
.cta a:hover {opacity:0.85; transform:scale(1.05);}

/* Section */
section {
  padding:50px 30px;
  max-width:900px;
  margin:40px auto;
  background: linear-gradient(145deg, #141414, #1c1c1c);
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.05);

  opacity:0;
  transform:translateY(30px);
  transition: all 0.8s ease-out;
}



section.appear:hover {
  transform: translateY(-3px);
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

/* Titres à gauche */

section h2 {
  text-align:center;
  color:#FFD600;
  font-size:2rem;
  margin-bottom:25px;
  letter-spacing:1px;
}


/* Ligne déco sous titre */
section h2::after {
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#FFD600;
  margin:12px auto 0 auto;
  border-radius:5px;
}


/* Texte */

section p {
  text-align:left;
  color:#ddd;
  margin-bottom:15px;
}

/* Listes stylées */

section ul {
  list-style:none;
  padding:0;
  margin:0;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}


section ul li {
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.05);
  padding:15px 18px;
  border-radius:10px;
  margin-bottom:12px;
  font-size:1rem;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}


section ul li:last-child {
  border-bottom:none;
}


section::before {
  content:"";
  display:block;
  height:3px;
  width:60px;
  background:#FFD600;
  margin:0 auto 20px auto;
  border-radius:5px;
}

/* Formulaire */
form {display:flex; flex-direction:column; gap:12px;}
input, textarea, button {padding:12px; border-radius:8px; border:none; font-size:1rem;}
input, textarea {
  background: rgba(255,255,255,0.05);
  color:#fff;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.4);
}
input:focus, textarea:focus {
  outline:none;
  border:1px solid #FFD600;
}

textarea {resize:none;}
button {
  background: linear-gradient(135deg,#FFD600,#ffb700);
  color:#000;
  font-weight:bold;
  cursor:pointer;
  letter-spacing:1px;
}
button:hover {opacity:0.85; transform:scale(1.03);}
#successMessage {text-align:center; font-weight:bold; margin-top:15px; color:#FFD600;}

/* Map */
.map-container {margin-top:20px; border-radius:10px; overflow:hidden;}

/* Footer */
/* Footer */
footer {
  text-align:center;
  padding:20px;
  color:#aaa;
  margin-top:30px;
}

footer a{
  color:#FFD600;
  text-decoration:none;
}

footer a:hover{
  text-decoration:underline;
}

/* Responsive */
@media (max-width:768px){

  header h1 {font-size:2rem;}

  section {
    padding:30px 20px;
  }

  .header-logo {
    height:50px;
  }

}

.appear {
  opacity: 1;
  transform: translateY(0);
}
/* Animation pour l'apparition des sections */



