* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}
nav {
  background: #006f3c;
  padding: 15px 20px;
  position: relative;
  z-index: 10;
}
.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: white;
  font-size: 1.4em;
  text-decoration: none;
}
nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
}
nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
}
nav ul li a:hover { background: #c80000; }

/* Menu burger */
.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6em;
  cursor: pointer;
  z-index: 11;
}

.hero {
  background: url('../images/hero.webp') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  text-align: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}
.hero h1 { font-size: 2.2em; }
.hero p { font-size: 1.1em; margin: 15px 0; }

/* Sélecteur de langue */
.lang-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.lang-selector select {
  padding: 5px 10px;
  font-size: 0.9em;
  border-radius: 5px;
  border: none;
  background: rgba(255,255,255,0.8);
  cursor: pointer;
}

.widget-wrapper {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

footer {
  margin-top: 60px;
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #00d4ff;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* Mode mobile */
@media (max-width: 768px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #006f3c;
    position: absolute;
    top: 100%; /* juste en dessous de la barre */
    left: 0;
    padding: 10px 0;
  }
  .nav-links.active { display: flex; }
  
  .hero {
    padding: 40px 15px;
  }
  .hero h1 { font-size: 1.8em; }
  .hero p { font-size: 1em; }
}
.capital-flights {
  background-color: #f4f9f7;
  padding: 40px 15px; /* réduit de 60px à 40px */
  text-align: center;
}

.capital-flights .container {
  max-width: 1000px; /* limite la largeur */
  margin: 0 auto;
}

.capital-flights h2 {
  font-size: 1.4rem; /* un peu plus petit */
  color: #006f3c;
  margin-bottom: 10px; /* réduit espace sous le titre */
}

.capital-subtitle {
  max-width: 750px;
  margin: auto;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px; /* réduit espace avant le slider */
}

.capital-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 20px; /* réduit l'espace entre les pastilles */
  animation: scrollSlide 70s linear infinite; /* un peu plus rapide */
}

.slider-track span {
  background: white;
  padding: 10px 18px; /* réduit la taille des pastilles */
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 13px; /* plus petit */
  white-space: nowrap;
  color: #333;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-track span:hover {
  background: #006f3c;
  color: white;
  transform: scale(1.05);
}

@keyframes scrollSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .capital-flights {
    padding: 30px 10px; /* encore plus compact sur mobile */
  }
  .slider-track {
    gap: 15px;
    animation-duration: 65s; /* plus rapide sur mobile */
  }
  .slider-track span {
    font-size: 12px;
    padding: 8px 15px;
  }
}
.popular-destinations {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.popular-destinations h2 {
  font-size: 1.5rem;
  color: #006f3c;
  margin-bottom: 10px;
}
.destinations-subtitle {
  max-width: 750px;
  margin: auto;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.destination-item {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.destination-item:hover {
  transform: translateY(-5px);
}
.destination-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.destination-item h3 {
  font-size: 1rem;
  margin: 10px 0 5px;
}
.destination-item p {
  font-size: 0.85rem;
  color: #444;
  padding: 0 10px;
}
.destination-item .btn {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 8px 15px;
  background: #006f3c;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}
.destination-item .btn:hover {
  background: #c80000;
}
/* Section Footer - styles globaux */
#section-footer {
  background: #f4f4f4;
  padding: 40px 20px;
  font-family: 'montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.section-footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Titres principaux */
.section-footer-title {
  color: #0A6612;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Titres secondaires */
.section-footer-subtitle {
  color: #0A6612;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.section-footer-subtitle-large {
  color: #0A6612;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

/* Liens */
.section-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.9;
}

.section-footer-links a {
  color: #0A6612;
  text-decoration: none;
}

/* Liste avec icônes personnalisées */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 30px;
}
.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0A6612;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes rotateIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-step {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-play-state: paused;
}
.rotate-icon {
  display: inline-block;
  animation: rotateIcon 1s ease;
}

/* Délais personnalisés */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.1s; }
.delay-5 { animation-delay: 1.4s; }
.delay-6 { animation-delay: 1.7s; }
.delay-7 { animation-delay: 2s; }

/* ----------- Section SEO Cards ----------- */
.seo-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.seo-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.seo-card h2 {
  color: #006f3c;
  margin-bottom: 12px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.seo-card h2 i {
  margin-right: 10px;
  color: #004d28;
}

.seo-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 12px;
}

.seo-card ul {
  padding-left: 18px;
}

.seo-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* FAQ details */
.seo-card details {
  margin: 12px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  background: #fafafa;
}

.seo-card summary {
  cursor: pointer;
  font-weight: 600;
  color: #006f3c;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-section {
    grid-template-columns: 1fr;
  }
}
/* Conseils + FAQ côte à côte */
.seo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 768px) {
  .seo-duo {
    grid-template-columns: 1fr;
  }
}

/* Style liste Conseils */
.conseils-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conseils-list li {
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  transition: all 0.6s ease;
}

/* Quand visible → animation active */
.conseils-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

.conseils-list li .icon {
  font-size: 1.1rem;
  color: #006f3c;
  margin-right: 10px;
}


.conseils-list li:nth-child(1) { animation-delay: 1.9s; }
.conseils-list li:nth-child(2) { animation-delay: 2.5s; }
.conseils-list li:nth-child(3) { animation-delay: 3s; }
.conseils-list li:nth-child(4) { animation-delay: 3.5s; }
.conseils-list li:nth-child(5) { animation-delay: 4s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.conseils-list .icon {
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Animation pour FAQ accordéon */
.faq-card details p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  margin: 0;
}

.faq-card details[open] p {
  max-height: 500px; /* assez grand pour contenir le texte */
  opacity: 1;
  margin-top: 10px;
}

/* Style général */


/* ===== Intro SEO (compacte + animation pro) ===== */
.seo-intro{
  text-align:center;
  max-width:950px;
  margin:40px auto 28px;   /* ~25% plus compact qu'avant */
  padding:14px 16px;
}

/* états init (cachés) */
.seo-title,
.seo-text{
  opacity:0;
  transform:translateY(28px);
  will-change:opacity, transform;
}

/* styles visuels */
.seo-title{
  font-size:1.8rem;
  color:#006f3c;
  margin-bottom:14px;
  font-weight:700;
}
.seo-text{
  font-size:1.05rem;
  color:#444;
  line-height:1.7;
}

/* état visible (on pose la classe sur le parent pour fiabilité) */
.seo-intro.is-visible .seo-title{
  transition:opacity .8s ease, transform .8s ease;
  opacity:1; transform:translateY(0);
}
.seo-intro.is-visible .seo-text{
  transition:opacity .8s ease .3s, transform .8s ease .3s; /* décalage 0.3s */
  opacity:1; transform:translateY(0);
}

/* accessibilité : réduire animations si utilisateur le demande */
@media (prefers-reduced-motion: reduce){
  .seo-title,.seo-text{
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}
/* ===== Nouveau style Nos Chiffres Clés ===== */
.stats-section {
  background: linear-gradient(135deg, #004d29, #00a859);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-section h2 {
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.stat-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #eaeaea;
}
/* Ajouter un + devant certains compteurs */
.stat-number.plus::before {
  content: "+";
  margin-right: 2px;
}

/* Ajouter % après un compteur */
.stat-number.percent::after {
  content: "%";
  margin-left: 2px;
}
/* === Étoiles animées === */
.stars {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  color: #ccc;
}

.stars::before {
  content: "★★★★★"; /* étoiles grises en fond */
  letter-spacing: 2px;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: #FFD700; /* or */
}

.stars-fill::before {
  content: "★★★★★"; /* étoiles dorées qui se remplissent */
  letter-spacing: 2px;
}

/* Import Google Font moderne */

body {
  font-family: 'montserrat', sans-serif;
  line-height: 1.7;
  color: #333;
}

/* ===== Section Comparateur International ===== */
#international-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}
#international-info .section-left {
  flex: 1;
  min-width: 350px;
}
#international-info .section-right {
  flex: 1;
  text-align: center;
}
#international-info img.illustration {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
}
#international-info img.illustration:hover {
  transform: scale(1.05);
}
#international-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 20px;
}
#international-info h3 {
  margin-top: 30px;
  font-weight: 600;
  color: #dc3545;
}
#international-info p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #444;
}
#international-info ul.animated-list li {
  margin: 10px 0;
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  font-weight: 500;
}
#international-info ul.animated-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  animation: popIn 0.6s ease forwards;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== HERO LOCATION ===== */
.hero-location {
  position: relative;
  background: url('https://cdn.pixabay.com/photo/2016/11/29/13/12/auto-1868726_1280.jpg') center/cover no-repeat;
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero-location .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}
.hero-location .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1.3s ease;
}
.hero-location h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-location p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  background: linear-gradient(45deg, #28a745, #dc3545);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}
.btn-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
  from {opacity: 0; transform: scale(0.7);}
  to {opacity: 1; transform: scale(1);}
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,167,69,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(220,53,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,53,69,0); }
}
.hero-content {
  position: relative;
  z-index: 2; /* ✅ Le contenu passe devant l’overlay */
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1; /* ✅ L’overlay reste derrière le texte et le bouton */
}

.btn-cta {
  position: relative;
  z-index: 3; /* ✅ Le bouton devient cliquable */
}


/* --- SECTION LOCATION DE VOITURE --- */
.car-section {
  display: flex;                /* mettre FAQ et visuel côte à côte */
  gap: 50px;                    /* espace entre les 2 colonnes */
  padding: 50px;
  background-color: #e8f5e9;    /* vert clair */
  color: #000000;               /* texte noir */
}

.faq-container, 
.visual-container {
  flex: 1;                      /* chaque côté prend 50% */
}

.faq-container h2, 
.visual-container h2 {
  margin-bottom: 20px;
  color: #2e7d32;               /* vert foncé pour les titres */
}

/* FAQ STYLE */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.faq-answer {
  display: none;                 /* caché par défaut */
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* VISUEL ARGUMENTS */
.visual-container .feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.visual-container .feature i {
  font-size: 24px;
  margin-right: 15px;
  color: #2e7d32;               /* icônes en vert */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .car-section {
    flex-direction: column;   /* Mettre les éléments en colonne */
    gap: 30px;                /* Réduit l’espace */
    padding: 20px;            /* Allège les marges sur mobile */
  }

  .faq-container, 
  .visual-container {
    flex: none;               /* enlève le partage 50% */
    width: 100%;              /* chaque bloc prend toute la largeur */
  }
}
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.testimonial {
  display: none;
  font-size: 1.1rem;
  color: #333;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial span {
  font-weight: bold;
  color: #444;
}

/* Pastilles */
.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #2e7d32;
}

.section-right {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.logo-square {
  width: 400px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #ddd;
}

.logo-row {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
}

.logo-row img {
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%); /* Logos en noir et blanc */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Animations défilement infini */
.logo-row.left {
  animation: slide-left 20s linear infinite;
}

.logo-row.right {
  animation: slide-right 20s linear infinite;
}

@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slide-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 500px) {
  .logo-square {
    width: 90%;
    height: 300px;
  }

  .logo-row img {
    height: 40px;
    gap: 15px;
  }
}

/* ===== Section Circuits (scopé .lkc-*) ===== */
.lkc-section { padding: 40px 0; }
.lkc-container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.lkc-title { text-align: center; margin-bottom: 24px; }

.lkc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.lkc-card {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--lkc-border, #e5e7eb);
  border-top: 6px solid var(--lkc-accent, #cbd5e1);
  border-radius: 12px;
  padding: 16px;
  background: var(--lkc-card-bg, #fff);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lkc-card:focus { outline: 2px solid #df1f1f; outline-offset: 2px; }
.lkc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.08); }
.lkc-card.is-active { border-top-color: #017e1a; }

.lkc-card-title { margin: 0 0 6px; font-size: 1.125rem; }
.lkc-card-desc { margin: 0; color: #555; font-size: .95rem; }

.lkc-forms {
  display: block; /* valeur par défaut, mais évite l’avertissement */
}
.lkc-form[hidden] { display: none !important; }

.lkc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lkc-field { display: flex; flex-direction: column; }
.lkc-field label { font-weight: 600; margin-bottom: 6px; }
.lkc-field input,
.lkc-field select,
.lkc-field textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.lkc-col-2 { grid-column: span 2; }

.lkc-btn {
  margin-top: 18px;
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: #155ab6;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter .15s ease-in-out;
}
.lkc-btn:hover { filter: brightness(0.95); }

@media (max-width: 768px) {
  .lkc-grid { grid-template-columns: 1fr; }
  .lkc-col-2 { grid-column: span 1; }
}

/* Message de confirmation élégant */
.confirm-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0A6612; /* vert harmonisé */
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Icône check animé */
.confirm-message svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .confirm-message {
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}

/* Structure des sections */
.content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap; /* responsive */
}

.section-left, .section-right {
  flex: 1;
  min-width: 280px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0b2033;
}

/* Liste animée */
.animated-list {
  list-style: none;
  padding: 0;
}

.animated-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-bottom: 12px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 24px;
}

.animated-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #159101;
  font-weight: bold;
}

/* Quand visible via JS */
.animated-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bouton animé */
.btn-animated {
  background: #159101;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-animated:hover {
  background: #0d6c05;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* Montserrat Regular */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
       url('/fonts/montserrat/Montserrat-Regular.woff') format('woff');
  font-display: swap;
}

/* Montserrat SemiBold */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
       url('/fonts/montserrat/Montserrat-SemiBold.woff') format('woff');
}

/* Utilisation globale */
body {
  font-family: 'Montserrat', sans-serif;
}

/* ======================= */
/* Cookie Consent JetLaka  */
/* ======================= */

#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  max-width: 95%;
  width: 450px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, bottom 0.4s ease;
}

#cookie-consent.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}

#cookie-consent p {
  margin: 0;
  line-height: 1.4;
}

#cookie-consent .cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-consent button {
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#cookie-consent button.accept {
  background-color: #00A86B;
  color: #fff;
}

#cookie-consent button.accept:hover {
  background-color: #007F50;
}

#cookie-consent button.decline {
  background-color: #555;
  color: #fff;
}

#cookie-consent button.decline:hover {
  background-color: #333;
}

@media (max-width: 500px){
  #cookie-consent {
    font-size: 13px;
    padding: 12px 16px;
    width: 90%;
  }
  #cookie-consent .cookie-buttons {
    flex-direction: column;
    gap: 6px;
  }
}

/* Cookie Banner */
#cookie-consent {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 99999;
  font-size: 14px;
}

#cookie-consent.show {
  display: flex;
}

#cookie-consent .text {
  flex: 1 1 100%;
  margin-bottom: 10px;
  text-align: center;
}

#cookie-consent .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex: 1 1 100%;
}

#cookie-consent button {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

#cookie-consent button.accept {
  background: #00A86B;
  color: #fff;
}

#cookie-consent button.decline {
  background: #666;
  color: #fff;
}

@media (min-width: 600px) {
  #cookie-consent {
    flex-wrap: nowrap;
  }
  #cookie-consent .text {
    flex: 1 1 auto;
    margin-bottom: 0;
    text-align: left;
  }
  #cookie-consent .buttons {
    flex: 0 0 auto;
  }
}

/* Style global pour tous les H2 */
h2 {
  font-size: 24px;       /* Taille par défaut sur grand écran */
  font-weight: 600;      /* Semi-gras pour la lisibilité */
  line-height: 1.4;      /* Espacement entre lignes */
  margin-bottom: 15px;   /* Espace sous le H2 */
  color: #222;           /* Couleur texte sobre et SEO-friendly */
  text-align: center;    /* Centrage du sous-titre (optionnel) */
}

/* Responsive : tablettes et mobiles */
@media (max-width: 768px) {
  h2 {
    font-size: 18px;     /* Plus petit pour tenir sur mobile */
    line-height: 1.3;    /* Espacement réduit */
    margin-bottom: 10px;
  }
}
