﻿ .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: #093BAC;
    color: #ffffff;
}
.btn-primary:hover { background: #1558b8; }

/* BOUTON SECONDAIRE */
.btn-secondary {
    background: #093BAC;
    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;
    color:#000;
}

.about-content h2 span {
    color: #093BAC;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 15px;
}

/* BOUTON */
.about-content .btn-style-one {
    margin-top: 20px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #093BAC, #093BAC);
    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;
}


/* ================================
   RESPONSIVE
================================ */


 .hero-taxi {
    position: relative;
    height: 600px;
  
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

:root {
  --primary-color: #093BAC;
  --bg-light: #f6f7f9;
  --text-dark: #1f2937;
  --text-light: #6b7280;
}

/* Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  color: var(--text-dark);
  margin-top: 10px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Icon */
.icon-box {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Text */
.service-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: #374151 !important;
  line-height: 1.6;
}

/* Suppression image de fond */
.card-bg {
  display: none;
}
.divider { width: 60px; height: 3px; background: var(--primary-color); margin: 20px auto; }

.subtitle { color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 14px; } 






.sec-title.centered {
  text-align: center;
  margin-bottom: 50px;
}

.sec-title .title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4298ee;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
}

.sec-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.3;
}

/* CARTE VILLE */
.city-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(66, 152, 238, 0.15);
}

.city-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-icon svg {
  flex-shrink: 0;
}

.city-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.city-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.city-name a:hover {
  color: #4298ee;
}

/* BOUTON */
.btn-all-cities {
  display: inline-block;
  padding: 14px 32px;
  background: #4298ee;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-all-cities:hover {
  background: #3182ce;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sec-title h2 { font-size: 24px; }
  .city-card { padding: 16px; }
}

@media (max-width: 576px) {
  .sec-title h2 { font-size: 20px; }
  .city-card { padding: 12px; }
}



:root {
  --taxi-gold: #f5b400;
  --taxi-dark: #1a1a1a;
  --taxi-gray: #555555;
  --taxi-bg: #fdfdfd;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.taxi-section {
  padding: 80px 20px;
  background-color: var(--taxi-bg);
  color: var(--taxi-dark);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.taxi-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Typographie */
.taxi-full h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--taxi-dark);
}

.taxi-full h3 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--taxi-dark);
}

.taxi-full p {
  font-size: 1.1rem;
  color: var(--taxi-gray);
  margin-bottom: 20px;
}

.taxi-full i {
  color: #093BAC;
  margin-right: 12px;
}

/* Grille de cartes */
.taxi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.taxi-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.taxi-card:hover {
  transform: translateY(-5px);
}

.taxi-card h3 {
  display: flex;
  align-items: flex-start;
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--taxi-dark);
}

.taxi-card i {
  font-size: 1.5rem;
  background: rgba(245, 180, 0, 0.1);
  padding: 12px;
  border-radius: 10px;
}

.taxi-card p {
  font-size: 1rem;
  color: var(--taxi-gray);
  margin-bottom: 15px;
}

/* Liste à puces */
.taxi-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  size :15px;
}

.taxi-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--taxi-gray);
}

.taxi-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--taxi-gold);
  font-weight: bold;
}

.taxi-conclusion {
  font-weight: 500;
  border-left: 4px solid #093BAC;
  padding-left: 20px;
  margin-top: 40px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .taxi-section {
    padding: 40px 15px;
  }
  
  .taxi-full h2 {
    font-size: 1.75rem;
  }
  
  .taxi-cards {
    grid-template-columns: 1fr;
  }

  .taxi-card {
    padding: 25px;
  }
}