        :root {
            --primary-blue: #1a668c;
            --secondary-blue: #2a7ca8;
            --success-green: #6fb565;
            --vibrant-orange: #ff6e1b;
            --light-orange: #ff8a45;
            --bg-light: #f9fafb;
            --text-dark: #333333;
            --text-light: #f9fafb;
              --primary-blue: #1a668c;
                    --secondary-green: #6fb565;
                    --accent-orange: #ff6e1b;
                    --light-bg: #f9fafb;
            --shadow: 0 8px 30px rgba(26, 102, 140, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
              

                /* Classes utilitaires */
                .bg-secondary-green { background-color: var(--secondary-green) !important; }
                .bg-accent-orange { background-color: var(--accent-orange) !important; }
                .bg-light-bg { background-color: var(--light-bg) !important; }

                .text-secondary-green { color: var(--secondary-green) !important; }
                .text-accent-orange { color: var(--accent-orange) !important; }

           
                .btn-accent-orange {
                    background-color: var(--accent-orange);
                    border-color: var(--accent-orange);
                    color: var(--text-light);
                }
                .btn-accent-orange:hover {
                    background-color: #e05c15;
                    border-color: #e05c15;
                }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
            padding-top: 80px;
            /* Pour compenser le header fixe */
        }

        /* Classes utilitaires */
        .text-primary-blue {
            color: var(--primary-blue) !important;
        }

        .text-secondary-blue {
            color: var(--secondary-blue) !important;
        }

        .text-success-green {
            color: var(--success-green) !important;
        }

        .text-vibrant-orange {
            color: var(--vibrant-orange) !important;
        }

        .bg-primary-blue {
            background-color: var(--primary-blue) !important;
        }

        .bg-secondary-blue {
            background-color: var(--secondary-blue) !important;
        }

        .bg-success-green {
            background-color: var(--success-green) !important;
        }

        .bg-vibrant-orange {
            background-color: var(--vibrant-orange) !important;
        }

        .bg-light-custom {
            background-color: var(--bg-light) !important;
        }

        .btn-primary-blue {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
        }

        .btn-primary-blue:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            color: white;
        }

        .btn-success-green {
            background-color: var(--success-green);
            border-color: var(--success-green);
            color: white;
        }

        .btn-success-green:hover {
            background-color: #5da354;
            border-color: #5da354;
            color: white;
        }

        .btn-vibrant-orange {
            background-color: var(--vibrant-orange);
            border-color: var(--vibrant-orange);
            color: white;
        }

        .btn-vibrant-orange:hover {
            background-color: var(--light-orange);
            border-color: var(--light-orange);
            color: white;
        }

        .shadow-custom {
            box-shadow: var(--shadow) !important;
        }

        .rounded-custom {
            border-radius: var(--border-radius) !important;
        }

        .transition {
            transition: var(--transition) !important;
        }

        /* Animation de base */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .fade-in {
            animation: fadeIn 0.5s ease;
        }

        /* Header et Navigation */
        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
        }

        .logo span:nth-child(1) {
            color: var(--vibrant-orange);
        }

        .logo span:nth-child(2) {
            color: var(--text-light);
        }

        .logo span:nth-child(3) {
            color: var(--success-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--vibrant-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--vibrant-orange);
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }


        .navbar-brand {
            font-size: 1.5rem;
        }

        

        .nav-link:hover,
        .nav-link.active {
            color: white !important;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            padding: 0.5rem 0;
        }

        .dropdown-item {
            padding: 0.5rem 1.5rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background-color: var(--primary-blue);
            color: white;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
                padding: 1rem;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                margin-top: 0.5rem;
            }

            .nav-link {
                margin: 0.2rem 0;
            }
        }


        .btn-auth {
            background: var(--vibrant-orange);
            color: var(--text-light);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-auth:hover {
            background: var(--light-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 110, 27, 0.3);
        }

        /* Hero Section avec Slides */
       /* ===== VARIABLES ===== */
    .hero-trust-section {
        --primary-blue: #1a668c;
        --secondary-blue: #2a7ca8;
        --success-green: #6fb565;
        --vibrant-orange: #ff6e1b;
        --light-orange: #ff8a45;
        --bg-light: #f9fafb;
        --text-light: #f9fafb;
        --shadow: 0 8px 30px rgba(26, 102, 140, 0.15);
        --radius: 12px;
        --transition: all 0.3s ease;
    }
    
    /* ===== HERO SECTION ===== */
    .hero-trust-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 0 80px;
        overflow: hidden;
        color: var(--text-light);
    }
    
    /* Background */
    .hero-trust-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -2;
    }
    
    .hero-trust-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: bgZoom 20s ease-in-out infinite alternate;
    }
    
    @keyframes bgZoom {
        0% { transform: scale(1); }
        100% { transform: scale(1.1); }
    }
    
    .hero-trust-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(26, 102, 140, 0.9) 0%,
            rgba(26, 102, 140, 0.7) 50%,
            rgba(26, 102, 140, 0.85) 100%);
    }
    
    .hero-trust-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 20% 80%,
            rgba(111, 181, 101, 0.2) 0%,
            transparent 50%
        );
        z-index: -1;
    }
    
    /* Logo */
    .hero-trust-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        letter-spacing: -1px;
    }
    
    .logo-part-1 { color: var(--vibrant-orange); }
    .logo-part-2 { color: var(--text-light); }
    .logo-part-3 { color: var(--success-green); }
    
    .hero-tagline .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--text-light);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    /* Titre */
    .hero-trust-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-trust-title .highlight {
        color: var(--vibrant-orange);
        position: relative;
        display: inline-block;
    }
    
    .hero-trust-title .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--success-green);
        opacity: 0.3;
        z-index: -1;
        border-radius: 4px;
    }
    
    /* Sous-titre */
    .hero-trust-subtitle {
        font-size: 1.3rem;
        line-height: 1.6;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
        opacity: 0.95;
        font-weight: 300;
    }
    
    /* Statistiques */
    .trust-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .trust-stat-item {
        text-align: center;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--vibrant-orange);
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    .trust-stat-divider {
        width: 1px;
        height: 40px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Badges de confiance */
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    
    .trust-badge-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.2rem 1.5rem;
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: var(--transition);
        min-width: 250px;
    }
    
    .trust-badge-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--vibrant-orange);
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--vibrant-orange), var(--light-orange));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }
    
    .badge-content {
        flex: 1;
    }
    
    .badge-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .badge-desc {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    

    /* Section principale */
.why-choose-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle, rgba(26, 102, 140, 0.03) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 5%); }
}

/* Titres */
.section-title {
  color: #1a668c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a668c, #ff6e1b);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Cartes features */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 110, 27, 0.1), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #ff6e1b;
  box-shadow: 0 15px 40px rgba(26, 102, 140, 0.15);
}

/* Icônes */
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
}

.feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.bg-primary-blue {
  background: linear-gradient(135deg, #1a668c, #2a7a9f);
  box-shadow: 0 8px 20px rgba(26, 102, 140, 0.3);
}

.bg-success-green {
  background: linear-gradient(135deg, #6fb565, #5a9d50);
  box-shadow: 0 8px 20px rgba(111, 181, 101, 0.3);
}

.bg-vibrant-orange {
  background: linear-gradient(135deg, #ff6e1b, #ff8c42);
  box-shadow: 0 8px 20px rgba(255, 110, 27, 0.3);
}

/* Textes */
.feature-card h3 {
  color: #1a668c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.feature-card:hover h3 {
  color: #ff6e1b;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
    /* end pourquoi nous */

    /* nos vol */
/* Section principale */
.flights-section {
  background: #ffffff;
  position: relative;
}

.flights-section .section-title {
  color: #1a668c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.flights-section .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a668c, #ff6e1b);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.flights-section .section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Carte de vol */
.flight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid #f9fafb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.flight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a668c, #ff6e1b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.flight-card:hover::before {
  transform: scaleX(1);
}

.flight-card:hover {
  transform: translateY(-10px);
  border-color: #1a668c;
  box-shadow: 0 15px 40px rgba(26, 102, 140, 0.15);
}

/* Header */
.flight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.flight-number {
  font-weight: 700;
  color: #1a668c;
  font-size: 1.1rem;
}

.airline-badge {
  background: #f9fafb;
  color: #1a668c;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Route */
.flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.airport-info {
  text-align: center;
  flex: 1;
}

.airport-code {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a668c;
  margin-bottom: 0.5rem;
}

.time {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Chemin de vol */
.flight-path {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1a668c, #ff6e1b);
  z-index: 1;
}

.flight-path i {
  position: relative;
  z-index: 2;
  color: #ff6e1b;
  font-size: 1.5rem;
  background: #ffffff;
  padding: 0 0.5rem;
  animation: fly 2s infinite ease-in-out;
}

@keyframes fly {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.flight-card:hover .flight-path i {
  animation-duration: 1s;
}

/* Footer */
.flight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px dashed #f9fafb;
}

.price .label {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.price .amount {
  display: block;
  color: #ff6e1b;
  font-size: 1.8rem;
  font-weight: 700;
}

.btn-reserve {
  background: linear-gradient(135deg, #ff6e1b, #ff8c42);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 110, 27, 0.3);
}

.btn-reserve:hover {
  background: linear-gradient(135deg, #1a668c, #2a7a9f);
  box-shadow: 0 6px 20px rgba(26, 102, 140, 0.4);
  transform: scale(1.05);
}

/* Badge vol direct */
.badge-direct {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #6fb565, #5a9d50);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(111, 181, 101, 0.3);
}

/* Bouton voir tout */
.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1a668c;
  border: 2px solid #1a668c;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-see-all:hover {
  background: #1a668c;
  color: #ffffff;
  transform: translateX(5px);
}

.btn-see-all i {
  transition: transform 0.3s ease;
}

.btn-see-all:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .flight-card {
    margin-bottom: 2rem;
  }
  
  .airport-code {
    font-size: 1.5rem;
  }
  
  .price .amount {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .flight-route {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flight-path {
    transform: rotate(90deg);
  }
  
  .flight-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .btn-reserve {
    width: 100%;
  }
}

/* Centrage de la section */
.flights-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Centrer les cartes (important si moins de 3 vols) */
.flights-section .row {
  justify-content: center;
}
    /* end vol */
    /* CTA */
    .hero-cta {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    
    .btn-hero-primary {
        background: linear-gradient(135deg, var(--vibrant-orange), var(--light-orange));
        color: white;
        padding: 1.2rem 2.5rem;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(255, 110, 27, 0.3);
        border: none;
    }
    
    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 110, 27, 0.4);
        color: white;
    }
    
    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: white;
        padding: 1.2rem 2.5rem;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: white;
        transform: translateY(-3px);
        color: white;
    }
    
  /* ===== VARIABLES ===== */

/* ===== SECTION STYLES ===== */
.accommodations-section {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.accommodations-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 102, 140, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    transform: translate(100px, -100px);
    z-index: 1;
}

.accommodations-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 110, 27, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50px, 50px);
    z-index: 1;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--vibrant-orange), var(--light-orange));
    border-radius: 2px;
}

/* ===== GRID SYSTEM - NOUVELLE STRUCTURE ===== */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cartes par ligne sur grand écran */
    gap: 25px;
}

/* 3 cartes par ligne sur écran moyen */
@media (max-width: 1200px) {
    .accommodations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 cartes par ligne sur tablette */
@media (max-width: 992px) {
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 carte par ligne sur mobile */
@media (max-width: 768px) {
    .accommodations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== BOUTONS ===== */
.btn-accommodation-all {
    transition: all 0.3s ease;
    border: none;
}

.btn-accommodation-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 110, 27, 0.3);
    color: white;
    text-decoration: none;
}

.btn-filter {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 102, 140, 0.3);
}

/* ===== CARTES D'HÉBERGEMENT ===== */
.accommodation-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(26, 102, 140, 0.1);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 102, 140, 0.2);
    border-color: var(--primary-blue);
}

/* Image */
.accommodation-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.accommodation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.accommodation-card:hover .accommodation-img {
    transform: scale(1.1);
}

/* Badges */
.accommodation-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 102, 140, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.accommodation-availability {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.accommodation-availability.available {
    background: rgba(111, 181, 101, 0.9);
}

.accommodation-availability.limited {
    background: rgba(255, 193, 7, 0.9);
}

.accommodation-availability.unavailable {
    background: rgba(220, 53, 69, 0.9);
}

/* Contenu */
.accommodation-content {
    padding: 20px;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}

.accommodation-name {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 56px;
}

.accommodation-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.accommodation-location i {
    font-size: 1rem;
}

.accommodation-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.accommodation-category {
    background: rgba(26, 102, 140, 0.1);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.accommodation-rooms {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Prix */
.accommodation-pricing {
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.price-amount {
    color: var(--success-green);
    font-size: 1.4rem;
    font-weight: 700;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
}

.price-estimate {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* Actions */
.accommodation-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
}

.btn-details {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-details:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 102, 140, 0.3);
    color: white;
    text-decoration: none;
}

.btn-book {
    background: var(--success-green);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-book:hover {
    background: #5da354;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 181, 101, 0.3);
    color: white;
    text-decoration: none;
}

/* Bouton Voir plus */
.btn-see-more {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-see-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 102, 140, 0.4);
    color: white;
    text-decoration: none;
}

.btn-see-more i:last-child {
    transition: transform 0.3s ease;
}

.btn-see-more:hover i:last-child {
    transform: translateX(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accommodation-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Animation delays pour chaque carte */
.accommodation-item:nth-child(4n+1) { animation-delay: 0.1s; }
.accommodation-item:nth-child(4n+2) { animation-delay: 0.2s; }
.accommodation-item:nth-child(4n+3) { animation-delay: 0.3s; }
.accommodation-item:nth-child(4n+4) { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .accommodations-section {
        padding: 3rem 0 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .accommodation-content {
        padding: 15px;
    }
    
    .btn-filter {
        padding: 6px 15px;
        font-size: 0.875rem;
        margin-bottom: 5px;
    }
    
    .btn-accommodation-all {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-see-more {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .accommodation-name {
        min-height: auto;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .accommodation-image {
        height: 180px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .accommodation-actions {
        grid-template-columns: 1fr;
    }
}
    
    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        cursor: pointer;
    }
    
    .scroll-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        opacity: 0.8;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    
    .scroll-icon {
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-up {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
    }
    
    .animate-delay-1 { animation-delay: 0.2s; }
    .animate-delay-2 { animation-delay: 0.4s; }
    .animate-delay-3 { animation-delay: 0.6s; }
    .animate-delay-4 { animation-delay: 0.8s; }
    .animate-delay-5 { animation-delay: 1s; }
    .animate-delay-6 { animation-delay: 1.2s; }
    .animate-delay-7 { animation-delay: 1.4s; }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
        .hero-trust-title {
            font-size: 3rem;
        }
        
        .trust-badges {
            gap: 1.5rem;
        }
    }
    
    @media (max-width: 992px) {
        .hero-trust-section {
            padding: 100px 0 60px;
            min-height: auto;
        }
        
        .hero-trust-title {
            font-size: 2.5rem;
        }
        
        .hero-trust-subtitle {
            font-size: 1.2rem;
            padding: 0 1rem;
        }
        
        .trust-stats {
            gap: 1.5rem;
            padding: 1.5rem;
        }
        
        .trust-stat-item {
            min-width: 100px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-logo {
            font-size: 2.8rem;
        }
        
        .hero-trust-title {
            font-size: 2.2rem;
        }
        
        .hero-trust-subtitle {
            font-size: 1.1rem;
        }
        
        .trust-stats {
            flex-direction: column;
            gap: 1rem;
        }
        
        .trust-stat-divider {
            width: 100px;
            height: 1px;
        }
        
        .trust-badge-item {
            min-width: 100%;
        }
        
        .hero-cta {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .trust-testimonial {
            margin: 0 1rem;
            padding: 1.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-logo {
            font-size: 2.2rem;
        }
        
        .hero-trust-title {
            font-size: 1.8rem;
        }
        
        .hero-trust-subtitle {
            font-size: 1rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .scroll-indicator {
            bottom: 20px;
        }
    }


        /* Section Recherche Rapide */
        .search-section {
            background: var(--text-light);
            padding: 40px 5%;
            margin-top: -50px;
            position: relative;
            z-index: 100;
            border-radius: 20px;
            box-shadow: var(--shadow);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .search-header h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .search-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .search-form-container {
            position: relative;
        }

        .search-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid #e0e6ed;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 102, 140, 0.1);
        }

        .search-btn {
            background: var(--vibrant-orange);
            color: var(--text-light);
            border: none;
            padding: 0 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .search-btn:hover {
            background: var(--light-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 110, 27, 0.3);
        }

        .search-filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-checkbox {
            display: none;
        }

        .filter-label {
            padding: 12px 25px;
            background: #eef2f7;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--primary-blue);
        }

        .filter-checkbox:checked+.filter-label {
            background: var(--primary-blue);
            color: var(--text-light);
        }

        .filter-label:hover {
            background: #dbe4f0;
        }

        .filter-checkbox:checked+.filter-label:hover {
            background: var(--secondary-blue);
        }

        @media (max-width: 768px) {
            .search-section {
                margin: 20px;
                padding: 25px;
            }

            .search-input-group {
                flex-direction: column;
            }

            .search-input {
                border-radius: 10px;
            }

            .search-btn {
                border-radius: 10px;
                padding: 18px;
            }
        }

        /* Styles spécifiques pour la section villes */
        .cities-section {
            padding: 80px 5%;
            background: #f9fafb;
            position: relative;
        }

        .section-title {
            text-align: center;
            color: #1a668c;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            font-weight: 800;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff6e1b, #ff8a45);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .city-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(26, 102, 140, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
            border: 1px solid #eef2f7;
        }

        .city-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(26, 102, 140, 0.2);
            border-color: #1a668c;
        }

        .city-image {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .city-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .city-card:hover .city-image img {
            transform: scale(1.15);
        }

        .city-price {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff6e1b, #ff8a45);
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 6px 15px rgba(255, 110, 27, 0.3);
            z-index: 2;
            text-align: center;
            min-width: 140px;
        }

        .city-content {
            padding: 25px;
        }

        .city-name {
            color: #1a668c;
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.3;
        }

        .city-dates {
            color: #6fb565;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            background: rgba(111, 181, 101, 0.1);
            padding: 8px 15px;
            border-radius: 10px;
            display: inline-flex;
        }

        .city-places {
            background: rgba(26, 102, 140, 0.1);
            padding: 8px 18px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1a668c;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .city-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }

        .city-tag {
            background: #eef2f7;
            color: #1a668c;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .city-card:hover .city-tag {
            background: #1a668c;
            color: white;
        }

        .city-description {
            color: #666;
            margin: 15px 0;
            font-size: 0.95rem;
            line-height: 1.6;
            min-height: 48px;
        }

        .city-actions {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eef2f7;
        }

        .btn-details {
            flex: 1;
            background: #1a668c;
            color: white;
            padding: 12px 20px;
            text-align: center;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-details:hover {
            background: #2a7ca8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 102, 140, 0.3);
        }

        .btn-book {
            flex: 1;
            background: #6fb565;
            color: white;
            padding: 12px 20px;
            text-align: center;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-book:hover {
            background: #5da354;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(111, 181, 101, 0.3);
        }

        .btn-details i,
        .btn-book i {
            font-size: 1rem;
        }

        /* No cities message */
        .no-cities {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .no-cities i {
            font-size: 4rem;
            color: #1a668c;
            margin-bottom: 20px;
            opacity: 0.3;
        }

        .no-cities h3 {
            color: #1a668c;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        /* View all button */
        .view-all-cities {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #1a668c, #2a7ca8);
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(26, 102, 140, 0.3);
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(26, 102, 140, 0.4);
            background: linear-gradient(135deg, #2a7ca8, #1a668c);
        }

        .view-all-btn i {
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover i {
            transform: translateX(5px);
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        /* Delayed animations for cards */
        .city-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .city-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .city-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .city-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .city-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .city-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cities-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .cities-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .cities-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                gap: 20px;
            }

            .city-image {
                height: 200px;
            }

            .city-content {
                padding: 20px;
            }

            .city-actions {
                flex-direction: column;
                gap: 10px;
            }

            .view-all-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .city-name {
                font-size: 1.4rem;
            }

            .city-price {
                min-width: 120px;
                padding: 6px 12px;
                font-size: 0.85rem;
            }
        }

        .book-btn {
            width: 100%;
            background: var(--primary-blue);
            color: var(--text-light);
            padding: 12px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .book-btn:hover {
            background: var(--secondary-blue);
        }

        /* Section Statistiques */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 80px 5%;
            color: var(--text-light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--vibrant-orange);
            margin: 20px 0;
        }

        /* Footer */
      /* ===========================================
   FOOTER STYLES
   =========================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--secondary-green) 33%, 
        var(--accent-orange) 66%, 
        var(--primary-blue) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-brand h2 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 110, 27, 0.25) !important;
    color: white;
}

.newsletter-form .btn-accent-orange {
    padding: 0.5rem 1rem;
    border-radius: 0 8px 8px 0;
}

.footer-links .footer-link {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links .footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-links .footer-link:hover {
    color: white !important;
    padding-left: 10px;
    text-decoration: none;
}

.footer-links .footer-link:hover::before {
    width: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

/* Social links */
.social-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links .social-link.facebook {
    background: #4267B2;
}

.social-links .social-link.twitter {
    background: #1DA1F2;
}

.social-links .social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-links .social-link.linkedin {
    background: #0077B5;
}

.social-links .social-link.youtube {
    background: #FF0000;
}

.social-links .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Payment section */
.footer-payment {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: white;
    transform: translateY(-3px);
}

.security-badge {
    transition: transform 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    color: var(--accent-orange);
}

/* Footer bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.5);
}

.footer-bottom-links a {
    position: relative;
    padding-bottom: 2px;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white !important;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Back to top button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8b47 100%);
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 110, 27, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 110, 27, 0.4);
}

.btn-back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .contact-info .d-flex {
        justify-content: center;
    }
    
    .social-links .d-flex {
        justify-content: center;
    }
    
    .payment-icon {
        margin: 0 10px;
    }
    
    .footer-bottom-links {
        justify-content: center !important;
    }
    
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

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

.footer > * {
    animation: fadeInUp 0.6s ease-out;
}

.footer-main {
    animation-delay: 0.1s;
}

.footer-payment {
    animation-delay: 0.2s;
}

.footer-bottom {
    animation-delay: 0.3s;
}

    /* page liste vol */


    /* Page title */
.page-title {
    color: #1a668c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a668c, #ff6e1b);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.page-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Carte de vol (réutilise le CSS de la section précédente) */
.flight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f9fafb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.flight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a668c, #ff6e1b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.flight-card:hover::before {
    transform: scaleX(1);
}

.flight-card:hover {
    transform: translateY(-10px);
    border-color: #1a668c;
    box-shadow: 0 15px 40px rgba(26, 102, 140, 0.15);
}

/* Header */
.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.flight-number {
    font-weight: 700;
    color: #1a668c;
    font-size: 1.1rem;
}

.airline-badge {
    background: #f9fafb;
    color: #1a668c;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Route */
.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.airport-info {
    text-align: center;
    flex: 1;
}

.airport-code {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a668c;
    margin-bottom: 0.5rem;
}

.time {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
}

.date {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Chemin de vol */
.flight-path {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.path-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1a668c, #ff6e1b);
    z-index: 1;
}

.flight-path i {
    position: relative;
    z-index: 2;
    color: #ff6e1b;
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0 0.5rem;
    animation: fly 2s infinite ease-in-out;
}

@keyframes fly {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.flight-card:hover .flight-path i {
    animation-duration: 1s;
}

/* Footer */
.flight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px dashed #f9fafb;
}

.price .label {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.price .amount {
    display: block;
    color: #ff6e1b;
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-reserve {
    background: linear-gradient(135deg, #ff6e1b, #ff8c42);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 110, 27, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #1a668c, #2a7a9f);
    box-shadow: 0 6px 20px rgba(26, 102, 140, 0.4);
    transform: scale(1.05);
    color: #ffffff;
}

/* Badge vol direct */
.badge-direct {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #6fb565, #5a9d50);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(111, 181, 101, 0.3);
}

/* Style de pagination Bootstrap personnalisé */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    color: #1a668c;
    border: 2px solid #f9fafb;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #1a668c;
    color: #ffffff;
    border-color: #1a668c;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #ff6e1b, #ff8c42);
    border-color: #ff6e1b;
}

/* Responsive */
@media (max-width: 992px) {
    .flight-card {
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .airport-code {
        font-size: 1.5rem;
    }
    
    .price .amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .flight-route {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flight-path {
        transform: rotate(90deg);
    }
    
    .flight-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-reserve {
        width: 100%;
        text-align: center;
    }
}

/* Page de réservation */
.booking-page {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    min-height: 100vh;
}

.booking-title {
    color: #1a668c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Carte résumé du vol */
.flight-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f9fafb;
    transition: all 0.3s ease;
}

.flight-summary-card:hover {
    box-shadow: 0 8px 30px rgba(26, 102, 140, 0.12);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f9fafb;
}

.summary-header h3 {
    color: #1a668c;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.flight-badge {
    background: linear-gradient(135deg, #1a668c, #2a7a9f);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Détails du vol */
.flight-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6e1b, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.detail-value {
    color: #1a668c;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-highlight {
    color: #ff6e1b;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Route du vol dans le résumé */
.flight-route-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.route-point {
    text-align: center;
    flex: 1;
}

.route-point .airport-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a668c;
    margin-bottom: 0.5rem;
}

.route-point .time {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.route-point .label {
    color: #9ca3af;
    font-size: 0.85rem;
}

.route-connector {
    position: relative;
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1a668c, #ff6e1b);
    z-index: 1;
}

.route-connector i {
    position: relative;
    z-index: 2;
    color: #ff6e1b;
    font-size: 1.2rem;
    background: #f9fafb;
    padding: 0 0.5rem;
}

/* Carte formulaire */
.booking-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f9fafb;
    position: sticky;
    top: 100px;
}

.form-title {
    color: #1a668c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Alerte personnalisée */
.alert-custom {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-custom i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.alert-custom ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
}

/* Groupe de formulaire personnalisé */
.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a668c;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-label-custom i {
    color: #ff6e1b;
}

.form-control-custom {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #f9fafb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: #1a668c;
    box-shadow: 0 0 0 3px rgba(26, 102, 140, 0.1);
}

.form-text {
    display: block;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Récapitulatif prix */
.price-summary {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #6c757d;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.price-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a668c;
}

.price-row.total span:last-child {
    color: #ff6e1b;
    font-size: 1.4rem;
}

/* Boutons d'action */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6e1b, #ff8c42);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 110, 27, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1a668c, #2a7a9f);
    box-shadow: 0 6px 20px rgba(26, 102, 140, 0.4);
    transform: translateY(-2px);
}

.btn-cancel {
    width: 100%;
    background: transparent;
    color: #6c757d;
    border: 2px solid #e5e7eb;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cancel:hover {
    background: #f9fafb;
    border-color: #6c757d;
    color: #1a668c;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-form-card {
        position: static;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .flight-route-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .route-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* end liste vol */

/* CTA */
/* ===========================================
   SECTION PARALLAX CTA
   =========================================== */
   
.parallax-cta {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a4a6a 0%, var(--primary-blue) 100%);
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 102, 140, 0.95) 0%,
        rgba(26, 102, 140, 0.85) 50%,
        rgba(26, 102, 140, 0.7) 100%
    );
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4) !important;
}

.stat-item {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.guarantee-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Éléments décoratifs flottants */
.parallax-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.element {
    position: absolute;
    font-size: 3rem;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin: -5px auto;
    animation: arrow-down 2s infinite;
}

.arrow-1 { animation-delay: 0s; }
.arrow-2 { animation-delay: 0.2s; }
.arrow-3 { animation-delay: 0.4s; }

@keyframes arrow-down {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .parallax-cta {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .element {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .parallax-cta {
        padding: 3rem 0;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .element {
        display: none;
    }
}
/*  END CTA */