 .awards-section .award-block h3 {
  color: #fff;
}


/* OVERLAY SOMBRE PRO */
.hero-taxi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.60) 55%,
        rgba(0,0,0,0.25) 100%
    );
    z-index: 1;
}

/* CONTAINER */
.hero-taxi .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* CONTENU ALIGNÉ À GAUCHE */
.hero-content {
    max-width: 720px;
    text-align: left;
}

/* TITRE */
.hero-content h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

/* TEXTE */
.hero-text {
    color: #eaeaea;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 38px;
}

/* BOUTONS */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons a {
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* BOUTON PRINCIPAL */
.btn-primary {
    background: #1f6fe5;
    color: #ffffff;
}
.btn-primary:hover { background: #1558b8; }

/* BOUTON SECONDAIRE */
.btn-secondary {
    background: #2f86ff;
    color: #ffffff;
}
.btn-secondary:hover { background: #1f6fe5; }

/* BOUTON OUTLINE */
.btn-outline {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.22);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-taxi {
        min-height: 90vh;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* SECTION */
.about-section-modern {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
/* IMAGES */
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* IMAGE PRINCIPALE */
.about-images img.big {
    grid-column: span 2;
    height: 400px;
}


/* ✅ MOBILE FIX — MÊME DESIGN */
@media (max-width: 768px) {
    .about-images {
        grid-template-columns: repeat(2, 1fr); /* 🔒 on garde 2 colonnes */
        gap: 14px;
    }

    .about-images img {
        height: 80px;  /* hauteur réduite pour mobile */
    }

    .about-images img.big {
        grid-column: span 2; /* 🔒 reste pleine largeur */
        height: 260px;
    }
}



/* TEXTE */
.about-content .badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(66,152,238,.1);
    color: #4298ee;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #4298ee;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* BOUTON */
.about-content .btn-style-one {
    margin-top: 20px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #4298ee, #1f6fe5);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(66,152,238,.35);
    transition: .3s;
}

.about-content .btn-style-one:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-images img,
    .about-images img.big {
        height: 250px;
    }
}


  /* SECTION */
.destinations-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.destinations-section .sec-title h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.destinations-section .sec-title p {
  color: #6c757d;
  font-size: 16px;
}

/* GRID */
.destinations-grid {
  margin-top: 50px;
  row-gap: 30px;
}

/* CARD */
.city-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.city-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.city-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #4298ee;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.city-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* DESCRIPTION */
.city-desc {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 18px;
}

/* LINK */
.city-link {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.city-link span {
  transition: transform 0.3s ease;
}

.city-link:hover span {
  transform: translateX(4px);
}

/* BUTTON */
.btn-all-cities {
  display: inline-block;
  background: #4298ee;
  color: #000;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-all-cities:hover {
  background: #4298ee;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .destinations-section .sec-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .destinations-section {
    padding: 60px 0;
  }
}
/* SECTION */
.destinations-section {
  padding: 80px 0 120px; /* haut 80px, gauche/droite 0, bas 120px */
  background: #f8f9fb;
}

/* Responsive */
@media (max-width: 991px) {
  .destinations-section {
    padding-bottom: 100px; /* un peu moins sur tablette */
  }
}

@media (max-width: 575px) {
  .destinations-section {
    padding-bottom: 80px; /* encore moins sur mobile */
  }
}

/* ================================
   SECTION DESTINATIONS
================================ */
.destinations-section {
    padding: 80px 0;
    background: #f7fbff;
}

/* ================================
   TITRE
================================ */
.destinations-section .sec-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.destinations-section .sec-title p {
    font-size: 16px;
    color: #666;
}

/* ================================
   GRID (ESPACES ENTRE BLOCS)
================================ */
.destinations-grid {
    margin-top: 40px;
}

/* Bootstrap fallback (si g-* absent) */
.destinations-grid > [class*="col-"] {
    margin-bottom: 30px;
}

/* ================================
   CARTE VILLE
================================ */
.city-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ================================
   HEADER CARTE
================================ */
.city-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.city-icon {
    width: 44px;
    height: 44px;
    background: #4298ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.city-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* ================================
   DESCRIPTION
================================ */
.city-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* ================================
   LISTE SERVICES
================================ */
.city-services {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.city-services li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.city-services li::before {
    content: "➜";
    color: #4298ee;
    font-weight: bold;
}

/* ================================
   BOUTON
================================ */
.btn-reserver {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 14px 20px;
    background: #4298ee;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reserver:hover {
    background: #000;
    color: #4298ee;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .city-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 0;
    }

    .city-name {
        font-size: 20px;
    }
}

.footer-destinations {
    padding-bottom: 120px;
    overflow: hidden;   /* empêche le footer de remonter */
    position: relative;
   
}

@media (max-width: 768px) {
    .footer-destinations {
        padding-bottom: 160px;
    }
}
.footer-destinations .btn-all-cities {
    margin-bottom: 60px;
    display: inline-block;
}
.footer-destinations .text-center {
    margin-bottom: 60px;
}
