/* ============================================================
   TAXITOPARIS.COM - Feuille de style complète et optimisée
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

/* --- Variables globales --- */
:root {
  --primary: #ffcc33;
  --primary-d: #ffb800;
  --dark: #0a1a33;
  --dark2: #102b4f;
  --text: #0a1a33;
  --text-light: #3b4a63;
  --white: #fff;
  --grey: #f0ece4;
  --radius: 14px;
  --shadow: 0 4px 10px rgba(10,26,51,0.05), 0 14px 30px rgba(10,26,51,0.08);
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-display: "Manrope", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --max-w: 1140px;
  --transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset + base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 16px !important; /* Empêche le zoom auto sur iOS */
}

/* --- Utilitaires --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--grey);
}

.text-center {
  text-align: center;
}

/* --- Titres de sections --- */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 48px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
  min-height: 40px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 800;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.3rem;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-left: 10px;
}

/* --- Menu Mobile --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1101;
  border-radius: 10px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
  position: absolute;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

/* État ouvert — transformation en X */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Overlay sombre derrière le menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-overlay.visible {
  opacity: 1;
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-overlay { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    transition: color .15s, padding-left .15s;
  }
  .nav-links a:hover { color: var(--primary); padding-left: 8px; }
  .nav-links a.active { color: var(--primary); }
  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 24px !important;
    background: var(--primary) !important;
    color: var(--dark) !important;
    width: 100% !important;
    justify-content: center !important;
    border-radius: 999px !important;
    text-align: center;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0f3460 100%);
  color: var(--white);
  padding: 80px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Hero Card (Prix rapides) --- */
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 25px;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.quick-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: #fff;
  transition: background var(--transition);
}

a.quick-price:hover {
  background: rgba(255,255,255,0.15);
}

.quick-price .price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.hero-card-cta {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero { padding: 42px 0 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-card { margin: 0 auto; max-width: 500px; width: 100%; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-trust { grid-template-columns: 1fr; gap: 8px; }
  .badge { white-space: normal; line-height: 1.4; }
}

/* ============================================================
   BLOC OFFICIEL (3 arguments)
   ============================================================ */
.officiel-banner {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.officiel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.officiel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.officiel-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.oi-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.14);
  font-size: 1.4rem;
}

.oi-titre {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.oi-desc {
  color: var(--text-light);
  font-size: 0.92rem;
}

@media (max-width: 992px) {
  .officiel-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TARIFS (Cartes)
   ============================================================ */
.tarifs {
  padding: 80px 0;
  background: #f8f9fc;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tarif-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tarif-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tarif-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tarif-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.tarif-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1;
}

.tarif-price sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.tarif-features {
  text-align: left;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tarif-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tarif-features li::before {
  content: "✓";
  color: var(--primary-d);
  font-weight: bold;
}

.tarif-features li:last-child {
  border-bottom: none;
}

.tarif-link {
  display: inline-block;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.tarif-link:hover {
  color: var(--primary-d);
}

/* Carte mise en avant (Orly) */
.tarif-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.15);
  position: relative;
}

.tarif-featured::before {
  content: "Le plus demandé";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
}

.tarifs-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 0.95rem;
  background: rgba(245, 197, 24, 0.1);
  padding: 15px;
  border-radius: 8px;
  border: 1px dashed var(--primary-d);
}

/* ============================================================
   RESERVER & DEVIS (Formulaire)
   ============================================================ */
.reserver {
  padding: 80px 0 40px;
}

.reserver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.reserver-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.reserver-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.reserver-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.reserver-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.devis {
  padding: 40px 0 80px;
}

.devis-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #eee;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.95rem;
}

input, select {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fafafa;
  transition: border-color var(--transition);
}

input:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .devis-form { padding: 25px 20px; }
}

/* ============================================================
   AVANTAGES
   ============================================================ */
.avantages {
  padding: 80px 0;
  background: #f8f9fc;
}

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.avantage-card {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #eee;
  transition: var(--transition);
}

.avantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.avantage-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.avantage-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.avantage-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================================
   FAQ (Accordéon natif HTML)
   ============================================================ */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #eee;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none; /* Cache la flèche native */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* Pour Safari */
}

/* Icône personnalisée + ou - */
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-d);
  font-weight: 400;
}

.faq-item[open] summary {
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 20px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--primary-d);
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 80px 0;
  background: #f8f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0 30px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-desc {
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px; /* Petit effet au survol */
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
  color: var(--primary);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links a:hover { padding-left: 0; }
}

/* ============================================================
   BOUTON WHATSAPP FLOTTANT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: calc(25px + env(safe-area-inset-bottom));
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition);
  color: #fff;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
/* ============================================================
   PAGES INTERNES (CDG, Orly, etc.)
   ============================================================ */

/* Fil d'Ariane & Navigation Sémantique */
.breadcrumb { padding: 14px 0; font-size: 0.85rem; color: var(--text-light); background: var(--white); border-bottom: 1px solid #eee; }
.breadcrumb a { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--dark); text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: #ccc; }

.cocon-nav { background: var(--grey); border-bottom: 2px solid var(--primary); padding: 12px 0; }
.cocon-pilier { font-weight: 700; font-size: 0.85rem; color: var(--dark); background: var(--primary); padding: 5px 14px; border-radius: 6px; }
.cocon-enfants { display: flex; gap: 8px; flex-wrap: wrap; }
.cocon-enfants a { font-size: 0.85rem; color: var(--text-light); background: var(--white); border: 1px solid #ddd; padding: 4px 12px; border-radius: 6px; }
.cocon-enfants a:hover { border-color: var(--primary); color: var(--dark); }
.cocon-current { font-size: 0.85rem; font-weight: 700; color: var(--dark); background: var(--white); border: 2px solid var(--primary); padding: 4px 12px; border-radius: 6px; }

/* Carte Tarif Focus */
.tarif-focus-card { background: var(--white); border: 3px solid var(--primary); border-radius: var(--radius); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; box-shadow: var(--shadow); }
@media (max-width: 768px) { .tarif-focus-card { grid-template-columns: 1fr; padding: 24px; } }
.tarif-main { text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.tarif-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 700; }
.tarif-prix-focus { font-size: 4.5rem; font-weight: 900; color: var(--dark); line-height: 1; margin: 10px 0; }
.tarif-prix-focus sup { font-size: 2rem; vertical-align: super; }
.tarif-unique { display: inline-block; background: #e6f9ee; color: #1a7a3c; font-size: 0.85rem; font-weight: 700; padding: 5px 14px; border-radius: 12px; margin-top: 15px; }

.tarif-details { border-left: 1px solid #eee; padding-left: 24px; }
@media (max-width: 768px) { .tarif-details { border-left: none; border-top: 1px solid #eee; padding-left: 0; padding-top: 20px; } }
.tarif-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; }
.tarif-row:last-child { border-bottom: none; }
.tarif-row .val { font-weight: 700; color: var(--dark); }
.badge-inclus { background: #e6f9ee; color: #1a7a3c; font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 10px; }

/* Contenu SEO (Textes, Tableaux, Alertes) */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.8rem; font-weight: 800; margin: 40px 0 20px; color: var(--dark); }
.content-section h2:first-child { margin-top: 0; }
.content-section p { margin-bottom: 18px; font-size: 1.05rem; color: var(--text-light); }
.info-vert { background: #e6f9ee; border-left: 4px solid #25a244; padding: 20px; border-radius: 4px; margin: 24px 0; color: #1a4a2e; }
.warn-box { background: #fff8e1; border-left: 4px solid var(--primary); padding: 20px; border-radius: 4px; margin: 24px 0; color: #7a5800; }

.steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num { background: var(--primary); color: var(--dark); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.step-content .titre { font-weight: 700; font-size: 1.1rem; color: var(--dark); margin-bottom: 4px; }

.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 8px; border: 1px solid #eee; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { background: var(--dark); color: var(--white); padding: 14px; text-align: left; }
td { padding: 14px; border-bottom: 1px solid #eee; color: var(--text-light); }
tr:nth-child(even) td { background: #fafafa; }

.cta-mid { background: var(--dark); color: var(--white); text-align: center; padding: 40px 24px; border-radius: var(--radius); margin: 50px 0; }
.cta-mid h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--white); }
.cta-mid p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 24px; }
.cta-mid .prix-inline { color: var(--primary); font-weight: 700; }
/* ============================================================
   PAGES INTERNES (CDG, Orly, etc.)
   ============================================================ */

/* Fil d'Ariane & Navigation Sémantique */
.breadcrumb { padding: 14px 0; font-size: 0.85rem; color: var(--text-light); background: var(--white); border-bottom: 1px solid #eee; }
.breadcrumb a { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--dark); text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: #ccc; }

.cocon-nav { background: var(--grey); border-bottom: 2px solid var(--primary); padding: 12px 0; }
.cocon-pilier { font-weight: 700; font-size: 0.85rem; color: var(--dark); background: var(--primary); padding: 5px 14px; border-radius: 6px; }
.cocon-enfants { display: flex; gap: 8px; flex-wrap: wrap; }
.cocon-enfants a { font-size: 0.85rem; color: var(--text-light); background: var(--white); border: 1px solid #ddd; padding: 4px 12px; border-radius: 6px; }
.cocon-enfants a:hover { border-color: var(--primary); color: var(--dark); }
.cocon-current { font-size: 0.85rem; font-weight: 700; color: var(--dark); background: var(--white); border: 2px solid var(--primary); padding: 4px 12px; border-radius: 6px; }

/* Carte Tarif Focus */
.tarif-focus-card { background: var(--white); border: 3px solid var(--primary); border-radius: var(--radius); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; box-shadow: var(--shadow); }
@media (max-width: 768px) { .tarif-focus-card { grid-template-columns: 1fr; padding: 24px; } }
.tarif-main { text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.tarif-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 700; }
.tarif-prix-focus { font-size: 4.5rem; font-weight: 900; color: var(--dark); line-height: 1; margin: 10px 0; }
.tarif-prix-focus sup { font-size: 2rem; vertical-align: super; }
.tarif-unique { display: inline-block; background: #e6f9ee; color: #1a7a3c; font-size: 0.85rem; font-weight: 700; padding: 5px 14px; border-radius: 12px; margin-top: 15px; }

.tarif-details { border-left: 1px solid #eee; padding-left: 24px; }
@media (max-width: 768px) { .tarif-details { border-left: none; border-top: 1px solid #eee; padding-left: 0; padding-top: 20px; } }
.tarif-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; }
.tarif-row:last-child { border-bottom: none; }
.tarif-row .val { font-weight: 700; color: var(--dark); }
.badge-inclus { background: #e6f9ee; color: #1a7a3c; font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 10px; }

/* Contenu SEO (Textes, Tableaux, Alertes) */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.8rem; font-weight: 800; margin: 40px 0 20px; color: var(--dark); }
.content-section h2:first-child { margin-top: 0; }
.content-section p { margin-bottom: 18px; font-size: 1.05rem; color: var(--text-light); }
.info-vert { background: #e6f9ee; border-left: 4px solid #25a244; padding: 20px; border-radius: 4px; margin: 24px 0; color: #1a4a2e; }
.warn-box { background: #fff8e1; border-left: 4px solid var(--primary); padding: 20px; border-radius: 4px; margin: 24px 0; color: #7a5800; }

.steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num { background: var(--primary); color: var(--dark); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.step-content .titre { font-weight: 700; font-size: 1.1rem; color: var(--dark); margin-bottom: 4px; }

.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 8px; border: 1px solid #eee; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { background: var(--dark); color: var(--white); padding: 14px; text-align: left; }
td { padding: 14px; border-bottom: 1px solid #eee; color: var(--text-light); }
tr:nth-child(even) td { background: #fafafa; }

.cta-mid { background: var(--dark); color: var(--white); text-align: center; padding: 40px 24px; border-radius: var(--radius); margin: 50px 0; }
.cta-mid h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--white); }
.cta-mid p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 24px; }
.cta-mid .prix-inline { color: var(--primary); font-weight: 700; }
/* ============================================================
   BARRE CONFIANCE / AVIS
   ============================================================ */
.trust-bar { background: #fff; border-bottom: 1px solid #e8e3d8; padding: 14px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-rating { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dark); flex-shrink: 0; }
.trust-stars { color: #f5a623; font-size: 18px; letter-spacing: 1px; }
.trust-score { font-weight: 800; font-size: 18px; color: var(--dark); }
.trust-count { font-size: 13px; color: var(--text-light); text-decoration: underline; text-underline-offset: 2px; }
.trust-sep { width: 1px; height: 32px; background: #e8e3d8; flex-shrink: 0; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge-item { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ============================================================
   CTA STICKY MOBILE
   ============================================================ */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px; background: #fff; border-top: 1px solid #e8e3d8; box-shadow: 0 -4px 20px rgba(10,26,51,0.10); gap: 10px; align-items: center; transform: translateY(100%); transition: transform .3s ease; }
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-call { background: transparent; border: 1.5px solid var(--dark); color: var(--dark); white-space: nowrap; flex-shrink: 0; }
.sticky-wa { flex: 0 0 auto; justify-content: center; font-size: 12px; padding: 10px 12px; }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  .trust-sep { display: none; }
  .trust-badges { gap: 8px; }
  .trust-badge-item { font-size: 12px; }
  /* Masquer le bouton flottant WhatsApp sur mobile — remplacé par la barre sticky */
  .wa-float { display: none; }
  /* Eviter que la barre sticky couvre le contenu du footer */
  body { padding-bottom: 70px; }
}
