/* ===== TAXI A.E.C — CSS PRINCIPAL ===== */
:root {
  --marine:    #1c2b4a;
  --marine-2:  #243354;
  --or:        #c8924f;
  --or-hover:  #b07a3a;
  --blanc:     #ffffff;
  --fond:      #f4f5f7;
  --texte:     #2e2e2e;
  --texte-2:   #5a5a5a;
  --ombre:     0 2px 14px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--texte);
  background: var(--blanc);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BOUTONS ===== */
.cta-btn {
  display: inline-block;
  background: var(--or);
  color: var(--blanc);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 3px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.18s;
}
.cta-btn:hover { background: var(--or-hover); }
.cta-btn.grand { font-size: 1rem; padding: 16px 38px; }
.cta-btn.outline {
  background: transparent;
  border: 2px solid var(--blanc);
  color: var(--blanc);
}
.cta-btn.outline:hover { background: rgba(255,255,255,0.12); }

/* ===== HEADER ===== */
header {
  background: var(--blanc);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8eaed;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--marine);
  letter-spacing: -0.3px;
}
.logo span { color: var(--or); }

nav ul { list-style: none; display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
nav a {
  color: var(--texte);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 3px;
  transition: color 0.15s;
}
nav a:hover { color: var(--marine); }
nav .cta-nav {
  background: var(--or);
  color: var(--blanc);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  margin-left: 6px;
}
nav .cta-nav:hover { background: var(--or-hover); color: var(--blanc); }

/* ===== HERO ===== */
.hero {
  background: var(--marine);
  color: var(--blanc);
  padding: 90px 24px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--or); font-style: normal; }
.hero p.sous-titre {
  font-size: clamp(0.97rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-infos {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 42px;
}
.hero-info-item { text-align: center; }
.hero-info-item .chiffre { font-size: 1.8rem; font-weight: 800; color: #f5b942; display: block; }
.hero-info-item .label { font-size: 0.73rem; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 1.2px; }

/* ===== SECTIONS ===== */
section { padding: 68px 0; }
section:nth-child(even) { background: var(--fond); }

.section-titre {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--marine);
  margin-bottom: 10px;
}
.section-sous-titre {
  color: var(--texte-2);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 0.99rem;
}
.filet { width: 44px; height: 3px; background: var(--or); border-radius: 2px; margin: 10px auto 0; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--ombre);
  background: #111;
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.service-img { width: 100%; height: 330px; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.04); }
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 22px 20px;
  background: linear-gradient(to top, #ffffff 70%, rgba(255,255,255,0));
}
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--marine); margin-bottom: 5px; }
.service-card p { font-size: 0.86rem; color: #444; line-height: 1.5; }

/* ===== VILLES ===== */
.villes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(max-width: 600px) { .villes-grid { grid-template-columns: 1fr; } }

.ville-card {
  background: var(--marine);
  color: var(--blanc);
  border-radius: 6px;
  padding: 30px 26px;
  border-left: 4px solid var(--or);
  transition: background 0.18s, transform 0.18s;
}
.ville-card:hover { background: var(--marine-2); transform: translateY(-2px); }
.ville-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 9px; }
.ville-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 18px; line-height: 1.6; }
.ville-card .lien-ville {
  display: inline-block;
  background: var(--or);
  color: var(--blanc);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.ville-card .lien-ville:hover { background: var(--or-hover); }

/* ===== AVANTAGES ===== */
.avantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.avantage-item {
  padding: 22px 18px;
  border-left: 3px solid var(--or);
  background: var(--blanc);
  border-radius: 0 5px 5px 0;
  box-shadow: var(--ombre);
}
.avantage-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--marine); margin-bottom: 7px; }
.avantage-item p { font-size: 0.88rem; color: var(--texte-2); }

/* ===== TÉMOIGNAGES ===== */
.temoignages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.temoignage {
  background: var(--blanc);
  border-left: 3px solid var(--or);
  padding: 24px 22px;
  border-radius: 0 5px 5px 0;
  box-shadow: var(--ombre);
}
.temoignage-etoiles { color: var(--or); font-size: 1rem; margin-bottom: 10px; }
.temoignage p { font-style: italic; margin-bottom: 12px; font-size: 0.95rem; color: var(--texte-2); }
.temoignage-auteur { font-weight: 700; color: var(--marine); font-size: 0.86rem; }

/* ===== CTA BANDEAU ===== */
.cta-bandeau {
  background: var(--marine);
  padding: 68px 24px;
  text-align: center;
}
.cta-bandeau h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: var(--blanc); margin-bottom: 12px; }
.cta-bandeau p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 26px; font-size: 0.97rem; }
.cta-tel { display: block; margin-top: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.cta-tel a { color: var(--blanc); font-weight: 700; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: #eceef2; padding: 11px 24px; font-size: 0.82rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; max-width: 1080px; margin: 0 auto; }
.breadcrumb li::after { content: ' ›'; color: #aaa; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--marine); font-weight: 500; }
.breadcrumb a:hover { color: var(--or); }

/* ===== PAGE VILLE ===== */
.ville-hero {
  background: var(--marine);
  color: var(--blanc);
  padding: 74px 24px 64px;
  text-align: center;
}
.ville-hero h1 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.ville-hero h1 em { color: var(--or); font-style: normal; }
.ville-hero p { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 28px; }

.bloc-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
@media(max-width: 700px) { .bloc-2col { grid-template-columns: 1fr; } }

.bloc-texte h2 { font-size: 1.45rem; font-weight: 800; color: var(--marine); margin-bottom: 12px; }
.bloc-texte h3 { font-size: 1.05rem; font-weight: 700; color: var(--marine); margin: 20px 0 7px; }
.bloc-texte p, .bloc-texte ul { margin-bottom: 13px; }
.bloc-texte ul { padding-left: 20px; }
.bloc-texte ul li { margin-bottom: 5px; }

.info-box {
  background: var(--marine);
  color: var(--blanc);
  border-radius: 6px;
  padding: 28px;
}
.info-box h3 { color: var(--or); font-size: 1rem; margin-bottom: 18px; }
.info-box-item { margin-bottom: 13px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.info-box-item:last-of-type { border-bottom: none; }
.info-box-item strong { display: block; color: var(--blanc); font-size: 0.86rem; margin-bottom: 2px; }
.info-box-item span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.info-box .cta-btn { width: 100%; text-align: center; margin-top: 18px; display: block; }

.faq-item { border-bottom: 1px solid #e2e5eb; padding: 16px 0; }
.faq-item h3 { font-size: 0.99rem; font-weight: 700; color: var(--marine); margin-bottom: 7px; }
.faq-item p { font-size: 0.93rem; color: var(--texte-2); }

/* ===== FOOTER ===== */
footer { background: var(--marine); color: rgba(255,255,255,0.55); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 34px; margin-bottom: 34px; }
.footer-col h4 {
  color: var(--blanc);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.86rem; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--or); }
.footer-col p { font-size: 0.86rem; line-height: 1.8; }
.logo-footer { font-size: 1.25rem; font-weight: 900; color: var(--blanc); margin-bottom: 9px; }
.logo-footer span { color: var(--or); }
.footer-tel { font-size: 1.2rem; font-weight: 800; color: var(--or); display: block; margin-bottom: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--or); }

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  /* Header */
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 1.25rem; }
  nav ul { gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
  /* Masquer les liens secondaires sur mobile, garder l'essentiel */
  nav li:not(:last-child) { display: none; }
  nav .cta-nav { margin-left: 0; padding: 11px 18px; font-size: 0.85rem; }

  /* Hero */
  .hero { padding: 48px 16px 36px; }
  .hero h1 { font-size: 1.75rem; }
  .hero p.sous-titre { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .cta-btn.grand { font-size: 1rem; padding: 16px 24px; text-align: center; width: 100%; }
  .cta-btn.outline { text-align: center; width: 100%; }
  .hero-infos { gap: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; margin-top: 36px; }
  .hero-info-item { padding: 12px 8px; }
  .hero-info-item .chiffre { font-size: 1.5rem; }

  /* Sections */
  section { padding: 48px 0; }
  .section-titre { font-size: 1.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-img { height: 240px; }

  /* Villes */
  .villes-grid { grid-template-columns: 1fr; gap: 14px; }
  .ville-card { padding: 22px 20px; }

  /* Avantages */
  .avantages-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Témoignages */
  .temoignages-grid { grid-template-columns: 1fr; }

  /* CTA bandeau */
  .cta-bandeau { padding: 48px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Bloc 2col pages ville */
  .bloc-2col { grid-template-columns: 1fr; gap: 28px; }

  /* Body padding pour sticky CTA */
  body { padding-bottom: 70px; }
}

@media(max-width: 480px) {
  .avantages-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.68rem; padding: 4px 12px; }
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-call {
  display: none;
}
@media(max-width: 768px) {
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--or);
    color: var(--blanc);
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.18);
  }
  .sticky-call:hover { background: var(--or-hover); }
}
