       /* Variables */
        :root {
            --primary: #2c6e49;
            --secondary: #4c956c;
            --accent: #fefee3;
            --light: #d8f3dc;
            --dark: #1b4332;
            --blue: #1a659e;
            --gold: #ff9e00;
            --highlight: #ffd700;
        }

        /* Section Styles */
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            font-size: 2.5rem;
            color: var(--dark);
        }

        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary);
            margin: 20px auto;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
        }

        /* Routes Section */
        #kayak-routes {
            padding: 4rem 1rem;
            max-width: 100%;
            margin: 0 auto;
        }

        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 3rem 0;
        }

        .route-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .route-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .route-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold);
            color: var(--dark);
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: bold;
            z-index: 10;
            font-size: 0.9rem;
        }

        .route-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .route-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .route-card:hover .route-image img {
            transform: scale(1.05);
        }

        .route-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .route-name {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .route-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .route-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--light);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        .route-stat i {
            color: var(--primary);
        }

        .route-description {
            margin-bottom: 25px;
            flex: 1;
            line-height: 1.7;
            color: #555;
        }

        .route-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .price-tag {
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Style pour les boutons Réserver animés */
        .route-btn {
            background: var(--blue);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }

        .route-btn:hover {
            background: #134d7c;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(26, 101, 158, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(26, 101, 158, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(26, 101, 158, 0);
            }
        }

        /* Features Section */
        .features-section {
            background: var(--light);
            padding: 5rem 2rem;
            border-radius: 15px;
            margin: 5rem 0;
            text-align: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .feature-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            background: var(--accent);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
        }

        .feature-item h3 {
            margin-bottom: 15px;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .feature-item p {
            color: #555;
            line-height: 1.6;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Styles pour le popup de réservation */
        .reservation-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: modalFadeIn 0.3s;
            overflow-y: auto;
            max-height: 90vh;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
            z-index: 100;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal-title {
            margin-top: 0;
            color: var(--primary);
            text-align: center;
        }

        .reservation-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 2px rgba(26, 101, 158, 0.2);
        }

        .submit-btn {
            background-color: var(--blue);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #134d7c;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .routes-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                max-width: 95%;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-intro {
                font-size: 1rem;
            }
            
            .route-content {
                padding: 20px;
            }
            
            .route-name {
                font-size: 1.4rem;
            }
            
            .modal-content {
                padding: 20px;
                width: 95%;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'Arial', sans-serif;
        }
        .faq-title {
            text-align: center;
            color: #2a6496;
            margin-bottom: 30px;
        }
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .faq-question {
            padding: 15px 20px;
            background-color: #f8f8f8;
            color: #2a6496;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        .faq-question:hover {
            background-color: #e9f2fa;
        }
        .faq-question::after {
            content: '+';
            font-size: 20px;
            transition: transform 0.3s;
        }
        .faq-question.active::after {
            content: '-';
        }
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: white;
        }
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
        .faq-answer ul {
            padding-left: 20px;
        }
        .faq-answer li {
            margin-bottom: 8px;
        }
        .highlight {
            color: #2a6496;
            font-weight: bold;
        }
        
  
        
        /* Style pour le formulaire de réservation */
        .reservation-container {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .reservation-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .reservation-header h1 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .parcours-section {
            margin: 2rem 0;
        }
        
        .parcours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 1.5rem;
        }
        
        .parcours-option {
            display: block;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }
        
        .parcours-option input {
            position: absolute;
            opacity: 0;
            height: 0;
            width: 0;
        }
        
        .parcours-option input:checked + .parcours-info {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px var(--primary);
        }
        
        .parcours-info {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            transition: all 0.3s;
        }
        
        .parcours-info strong {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .parcours-details {
            font-size: 0.9rem;
        }
        
        .parcours-details span {
            display: block;
            margin: 3px 0;
        }
        
        .form-container {
            margin-top: 1.5rem;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .form-group h2 {
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .captcha-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }
        
        .captcha-container img {
            max-width: 150px;
            border-radius: 5px;
            border: 1px solid #eee;
        }
        
        .price-summary {
            margin-top: 20px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 8px;
        }
        
        .total-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-top: 10px;
        }
        
        .price-details {
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .price-details li {
            list-style: none;
            padding: 3px 0;
        }
        
        .small-text {
            font-size: 0.85rem;
            color: #777;
            margin: 15px 0;
        }
        
        .selection-message {
            text-align: center;
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .weather-box {
            background: #f9f9f9;
            border-left: 4px solid #007bff;
            padding: 15px;
            margin-top: 20px;
        }
        
        .weather-box h3 {
            margin-top: 0;
        }
        
        .error-field {
            border-color: #dc3545 !important;
        }
        
        .error-message-list {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 5px;
        }
        /* === AMÉLIORATIONS SPÉCIFIQUES POUR MOBILE === */
@media (max-width: 480px) {
    /* Ajustements généraux */
    body {
        padding: 10px;
        font-size: 15px;
    }
    
    /* Modal - Adaptation pour petit écran */
    .reservation-modal {
        padding: 15px 0;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px 15px;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    /* En-tête du modal */
    .modal-title {
        font-size: 1.6rem;
        padding: 5px 0 10px;
    }
    
    #selected-route {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Section de sélection des parcours */
    .parcours-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .parcours-option {
        padding: 12px;
    }
    
    .parcours-info {
        padding: 8px;
    }
    
    .parcours-info strong {
        font-size: 1.1rem;
    }
    
    .parcours-details span {
        font-size: 0.85rem;
    }
    
    /* Formulaire - Adaptation à une colonne */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        padding: 15px 12px;
    }
    
    /* Labels et champs de formulaire */
    label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="date"],
    select {
        padding: 11px 10px;
        font-size: 0.95rem;
        min-height: 42px;
    }
    
    /* Section météo */
    .weather-box {
        padding: 12px;
    }
    
    .weather-box h3 {
        font-size: 1.1rem;
    }
    
    .weather-details li {
        font-size: 0.9rem;
    }
    
    /* Section CAPTCHA */
    .captcha-container {
        margin: 15px 0;
        gap: 8px;
    }
    
    .captcha-container img {
        max-width: 130px;
    }
    
    /* Section prix */
    .price-summary {
        padding: 15px 10px;
    }
    
    .total-price {
        font-size: 1.8rem;
    }
    
    .price-details li {
        font-size: 0.9rem;
    }
    
    /* Bouton de soumission */
    .submit-btn {
        padding: 12px;
        font-size: 1.05rem;
        margin-top: 8px;
    }
    
    /* Messages d'erreur et de confirmation */
    .error-message,
    .confirmation-message {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    /* Petits textes */
    .small-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* Boutons de parcours */
    .route-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        animation: none;
    }
    
    /* Ajustements pour le formulaire de réservation */
    .route-description {
        padding: 15px 10px;
    }
    
    .route-description small {
        font-size: 0.9rem;
    }
    
    .route-highlights ul {
        padding-left: 15px;
    }
    
    .route-highlights li {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Ajustements pour les statistiques */
    .route-stats {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .route-stat {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    /* Ajustements pour le titre de section */
    .section-title {
        font-size: 2rem;
    }
    
    /* Ajustements pour le contenu des cartes */
    .route-content {
        padding: 20px 15px;
    }
    
    .route-name {
        font-size: 1.3rem;
    }
    
    /* Ajustements pour les badges */
    .route-badge {
        top: 15px;
        left: 15px;
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    
    /* Ajustements pour le message de sélection */
    .selection-message {
        padding: 15px 10px;
        margin: 15px 10px;
    }
    
    /* Ajustements pour la fermeture du modal */
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 22px;
    }
    
    /* Ajustements pour les images */
    .route-image {
        height: 180px;
    }
    
    /* Ajustements pour les messages d'erreur */
    .error-message-list {
        font-size: 0.8rem;
    }
    
    /* Ajustements pour les boutons de formulaire */
    button[type="submit"] {
        padding: 12px 20px;
        font-size: 1.05rem;
    }
    
    /* Ajustements pour les listes */
    ul {
        padding-left: 18px;
    }
    
    li {
        margin-bottom: 6px;
    }
    
    /* Ajustements pour le formulaire de réservation */
    .reservation-form {
        gap: 12px;
    }
    
    /* Ajustements pour les champs de formulaire */
    .form-group input,
    .form-group select {
        padding: 10px;
        border-radius: 6px;
    }
    
    /* Ajustements pour les champs focus */
    input:focus,
    select:focus {
        box-shadow: 0 0 0 3px rgba(26, 101, 158, 0.2);
    }
    
    /* Ajustements pour les messages */
    .small-text {
        margin-top: 10px;
    }
    
    /* Ajustements pour les icônes */
    .route-stat i {
        font-size: 0.9rem;
    }
    
    /* Ajustements pour le header de réservation */
    .reservation-header h1 {
        font-size: 1.8rem;
    }
    
    /* Ajustements pour les hauteurs minimales */
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="date"],
    select {
        min-height: 40px;
        min-width: 160PX;
    }
    
    /* Ajustements pour les boutons tactiles */
    .route-btn {
        min-height: 45px;
        touch-action: manipulation;
    }
    
    /* Ajustements pour le formulaire de réservation */
    .form-container {
        padding: 15px 10px;
    }
    
    /* Ajustements pour les messages d'erreur */
    .error-field {
        border: 2px solid #dc3545 !important;
    }
    
    /* Ajustements pour les boutons de fermeture */
    .close-modal {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
    }
    
    /* Ajustements pour les espacements */
    .form-group {
        margin-bottom: 15px;
    }
    
    label {
        margin-bottom: 4px;
    }
    
    /* Ajustements pour les messages de confirmation */
    .confirmation-message,
    .error-message {
        margin-top: 10px;
    }
}