/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- Variables de Couleurs (pour faciliter les modifications) --- */
:root {
    --primary-color: #FF8C00; /* Orange vif */
    --secondary-color: #002D62; /* Bleu foncé principal */
    --accent-color: #FFD700; /* Jaune or */
    --text-color: #333;
    --light-text-color: #666;
    --background-light: #f8f8f8;
    --background-dark: #001f40; /* Bleu très foncé, presque noir pour le footer */
    --border-color: #ddd;
    --error-color: #e74c3c;
    --success-color: #28a745;
}

/* --- Base globale --- */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth; /* Pour un défilement doux */
}

/* Pour centrer le contenu principal, si désiré */
main {
    max-width: 1300px;
    margin: 15px auto; /* Ajout d'une marge auto pour centrer */
    padding: 0 20px; /* Padding latéral pour éviter que le contenu ne touche les bords */
}}

    /* Styles généraux inchangés */

/* --- Header --- */
header {
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    top: 0;
    z-index: 1000; /* Assurer qu'il est au-dessus des autres éléments */
    position: sticky; /* Rendre le header collant */
    background-color: var(--secondary-color);
     
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700; /* Plus gras pour le logo */
    text-decoration: none;
    transition: color 0.3s ease;
}


}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 35px; /* Augmenter l'espacement */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative; /* Pour l'effet souligné */
}

nav ul li a::after { /* Effet souligné au survol */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease-out;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-2px); /* Léger mouvement au survol */
}

/* --- Hero Section (Accueil) --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/moto 1.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px; /* Plus de padding pour l'impact */
    border-radius: 12px; /* Bords légèrement plus arrondis */
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    display: flex; /* Utilisation de flexbox pour centrer le contenu */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem; /* Encore plus grand */
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Ombre sur le texte */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    max-width: 700px;
}}

/* --- Boutons Génériques --- */
.btn {
    display: inline-block;
    padding: 15px 35px; /* Plus grand */
    border: none;
    border-radius: 30px; /* Bords très arrondis pour un look moderne */
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 10px; /* Marge entre les boutons */
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
}

.primary-btn:hover {
    background-color: #e07b00; /* Légèrement plus foncé */
    transform: translateY(-3px); /* Plus de mouvement */
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color); /* Bordure pour contraste */
}

.secondary-btn:hover {
    background-color: var(--background-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 45, 98, 0.3);
}

/* --- Section des Fonctionnalités (Accueil) --- */
.features {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff; /* Fond blanc pour cette section */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 40px auto;
}

.features h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.features h2::after {
    content: '';
    display: block;
    width: 100px; /* Plus large */
    height: 5px; /* Plus épais */
    background-color: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 3px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Cellules plus grandes */
    gap: 40px; /* Plus d'espace entre les éléments */
    margin-top: 40px;
}

.feature-item {
    background-color: var(--background-light); /* Lighter background for items */
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12); /* Ombre plus prononcée */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0; /* Pour les animations JS */
    transform: translateY(30px); /* Pour les animations JS */
    border: 1px solid var(--border-color); /* Légère bordure */
    display: flex; /* Pour centrer le contenu verticalement si h3 et p ont des hauteurs différentes */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-8px); /* Mouvement plus prononcé */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--light-text-color);
    font-size: 1.05rem;
}

/* --- Animations (pour JavaScript) --- */
.reveal-left {
    transform: translateX(-80px); /* Plus grand décalage initial */
  
}
.reveal-right {
    transform: translateX(80px); /* Plus grand décalage initial */
  
}
.reveal-bottom {
    transform: translateY(80px); /* Plus grand décalage initial */
   
}
.reveal-top {
    transform: translateY(-80px); /* Plus grand décalage initial */
    opacity: 0;
}
/* La classe 'revealed' sera ajoutée par JS */
.revealed {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transitions plus lentes */
}


/* --- Formulaire de Base (Incription/Connexion) --- */
.form-container {
    max-width: 550px; /* Légèrement plus large */
    margin: 60px auto;
    background-color: #fff;
    padding: 40px; /* Plus de padding */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* Ombre plus douce */
    text-align: center;
}

.form-container h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.form-container p {
    color: var(--light-text-color);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 25px; /* Plus d'espace entre les groupes */
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600; /* Plus gras */
    color: var(--text-color);
    font-size: 1.05rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] { /* Ajout de type="tel" pour le numéro de téléphone */
    width: calc(100% - 24px); /* Ajuster la largeur avec padding */
    padding: 14px 12px; /* Plus de padding */
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Bords plus arrondis */
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.help-block {
    color: var(--error-color);
    font-size: 0.9em;
    margin-top: 8px;
    display: block;
}

/* Boutons de formulaire spécifiques */
.form-container .btn {
    width: 100%; /* Les boutons de formulaire prennent toute la largeur */
    margin-top: 25px;
    padding: 15px; /* Ajuster padding */
}

/* Messages d'alerte */
.alert {
    padding: 15px 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background-color: #d4edda; /* Vert clair */
    color: #155724; /* Vert foncé */
    border: 1px solid #c3e6cb;
}

.alert.error { /* Ajout d'une classe pour les messages d'erreur si vous voulez les styliser différemment */
    background-color: #f8d7da; /* Rouge clair */
    color: #721c24; /* Rouge foncé */
    border: 1px solid #f5c6cb;
}

/* --- Footer --- */
footer {
    background-color: var(--background-dark);
    color: #aaa;
    text-align: center;
    padding: 25px 0;
    font-size: 0.95rem;
    margin-top: 60px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

/* --- Media Queries pour la Réactivité --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .features h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero {
        padding: 80px 15px;
        margin: 20px auto;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        width: calc(100% - 20px); /* Ajuster la largeur des boutons */
        margin: 10px auto; /* Centrer les boutons */
        display: block; /* S'assurer qu'ils sont en bloc */
    }
    .features {
        padding: 40px 15px;
        margin: 20px auto;
    }
    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-container {
        margin: 30px 15px;
        padding: 25px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="tel"] {
        width: calc(100% - 24px); /* Maintenir le padding interne */
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .features h2 {
        font-size: 1.8rem;
    }
    .feature-item h3 {
        font-size: 1.5rem;
    }
} }

/* --- Styles pour l'Espace Client (après connexion) --- */
.client-dashboard {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.welcome-section p {
    color: var(--light-text-color);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.dashboard-actions .btn {
    margin: 0 15px;
    padding: 14px 30px;
}

/* Section "Comment ça marche" */
.how-it-works {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

.how-it-works h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Pour animation JS */
    transform: translateY(30px); /* Pour animation JS */
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.step-item h4 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.step-item p {
    color: var(--light-text-color);
    font-size: 1rem;
}

.more-info {
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--light-text-color);
}
.more-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.more-info a:hover {
    text-decoration: underline;
}}


/* Réinitialisation pour les animations spécifiques */



.about-content section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center; /* Centrer le titre de la section */
}

.about-content section p {
    color: var(--light-text-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start; /* Aligner l'icône en haut du texte */
}

.about-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
    margin-top: 2px; /* Ajustement visuel */
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.advantage-item {
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-item .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--light-text-color);
}


/* --- Media Queries (ajustements pour l'espace client) --- */
@media (max-width: 768px) {
    .client-dashboard, .about-us-container {
        padding: 25px;
        margin-top: 20px;
    }
    .welcome-section h2 {
        font-size: 2.2rem;
    }
    .welcome-section p {
        font-size: 1rem;
    }
    .dashboard-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .how-it-works h3, .section-title {
        font-size: 1.8rem;
        color: #5bc0de;
    }
    .steps-grid, .advantages-grid {
        grid-template-columns: 1fr;
    }
    .about-content section {
        padding: 20px;
    }
    .about-content section h3 {
        font-size: 1.5rem;
    } }
}

/* Couleurs des badges de statut */
.status-en-attente { background-color: #d9534f; /* Orange */ }
.status-acceptee { background-color: #5bc0de; /* Bleu clair */ }
.status-terminee { background-color: #5cb85c; /* Vert */ }
.status-annulee { background-color: #d9534f; /* Rouge */ }


.order-details p {
    margin-bottom: 8px;
    color: var(--light-text-color);
    font-size: 1rem;
}

.order-details p strong {
    color: var(--text-color);
}

.order-date {
    font-size: 0.9em;
    color: #999;
    text-align: right;
    margin-top: 15px;
}

.order-actions {
    text-align: right;
    margin-top: 20px;
}

.order-actions .btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 0; /* Réinitialiser les marges des boutons */
    display: inline-block; /* S'assurer que le bouton est en ligne */
}

.delete-btn {
    background-color: var(--error-color);
    color: #fff;
}
.delete-btn:hover {
    background-color: #c0392b;
}



/* --- Media Queries (ajustements pour l'espace client) --- */
@media (max-width: 768px) {
    .client-container, .profile-container {
        padding: 25px;
    }
    .profile-sections {
        grid-template-columns: 1fr;
        gap: 30px;
      }   
    .profile-action {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .profile-section {
        margin-bottom: 20px; /* Espace entre les sections en mode mobile */
    }
}
/* --- Styles pour la page Commander une Course --- */
.order-container {
    padding: 50px;
}

.order-form {
    max-width: 600px; /* Largeur max pour le formulaire de commande */
    margin: 0 auto;
    text-align: left; /* Aligner le texte du formulaire à gauche */
}

.order-form .form-group {
    margin-bottom: 25px;
}

.order-form .form-group label {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.order-form input[type="text"],
.order-form input[type="time"],
.order-form input[type="number"],
.order-form textarea {
    width: calc(100% - 24px); /* Ajuster la largeur avec padding */
    padding: 14px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-form input[type="text"]:focus,
.order-form input[type="time"]:focus,
.order-form input[type="number"]:focus,
.order-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.order-form textarea {
    resize: vertical; /* Permettre le redimensionnement vertical */
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 20px; /* Taille du checkbox */
    height: 20px;
    cursor: pointer;
    /* Styles personnalisés pour le checkbox si besoin, sinon par défaut */
}

.checkbox-group label {
    margin: 0; /* Réinitialiser la marge du label du checkbox */
    font-weight: normal; /* Pas gras pour les labels de checkbox */
    font-size: 1.05rem;
    cursor: pointer;
}


/* --- Media Queries (ajustements pour la page de commande) --- */
@media (max-width: 768px) {
    .order-container {
        padding: 25px;
    }
    .order-form {
        max-width: 100%;
    }
    .order-form input[type="text"],
    .order-form input[type="time"],
    .order-form input[type="number"],
    .order-form textarea {
        width: 100%; /* S'assurer que les champs prennent toute la largeur sur mobile */
    }
}

/* --- pour les boutons de validation de la page commander--- */

        /* Styles spécifiques pour les boutons de commande */
        .btn-communication {
            background-color: #4CAF50; /* Vert pour Soumettre */
            color: white;
            padding: 80px 80px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 10em;
            margin-top: 20px;
            margin: 10px;
            transition: background-color 0.3s ease;
            width: auto; /* Supprimer la largeur fixe pour que les boutons s'adaptent */
            display: inline-block; /* Permet aux boutons d'être sur la même ligne */
        }
        .btn-communication:hover {
            background-color: #45a049;
        }
        .btn-whatsapp {
            background-color: #25D366; /* WhatsApp Green */
        }
        .btn-whatsapp:hover {
            background-color: #1DA851;
        }
        .btn-facebook {
            background-color: #3B5998; /* Facebook Blue */
        }
        .btn-facebook:hover {
            background-color: #2F477A;
        }
        .btn-sms {
            background-color: #007AFF; /* Apple Messages Blue */
        }
        .btn-sms:hover {
            background-color: #0056B3;
        }
        .form-actions-multi {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        .form-actions-multi .btn-communication {
            min-width: 150px; /* Assure une taille minimale pour les boutons */
        }
        .form-group-readonly input {
            background-color: #e9ecef;
            cursor: not-allowed;
        }
   

/* Delay for staggered animations */
.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.4s;
}
.delay-3 {
    transition-delay: 0.6s;
}
/* Add more delay classes if needed */

/* General styling for new sections (adjust as per your overall design) */
.client-dashboard section {
    padding: 40px 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.client-dashboard section h3 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.client-dashboard section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #5bc0de;
    border-radius: 2px;
}

.process-grid,
.advantages-grid,
.testimonials-grid,
.services-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item,
.advantage-item,
.testimonial-item,
.service-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-item:hover,
.advantage-item:hover,
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3em;
    color: #5bc0de;
    margin-bottom: 15px;
}

.process-item h4,
.advantage-item h4,
.service-item h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}

.process-item p,
.advantage-item p,
.service-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.testimonials .testimonial-item {
    background-color: #e6f7ff; /* Light blue background for testimonials */
    border: 1px solid #cceeff;
    padding: 30px;
    font-style: italic;
    font-size: 1.1em;
    color: #444;
    text-align: center;
}

.testimonials .testimonial-item .client-name {
    font-weight: bold;
    color: #007bff;
    margin-top: 15px;
    font-style: normal;
}

/* Ensure the welcome section has appropriate margin */
.welcome-section {
    margin-bottom: 50px; /* Space between hero and first content section */
}

/* Adjustments for existing structure, ensure no double 'how-it-works' or 'advantages' sections */
.client-dashboard .how-it-works + .advantages {
    margin-top: 0; /* Remove extra margin if sections follow each other */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-dashboard section {
        padding: 30px 15px;
    }
    .client-dashboard section h3 {
        font-size: 1.8em;
    }
    .process-grid,
    .advantages-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .process-item,
    .advantage-item,
    .testimonial-item,
    .service-item {
        padding: 20px;
    }
    .icon {
        font-size: 2.5em;
    }
    .process-item h4,
    .advantage-item h4,
    .service-item h4 {
        font-size: 1.2em;
    }
}


 /* Icône du menu burger */
header {
    background-color: #002D62;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    top: 0;
    z-index: 1000; /* Assurer qu'il est au-dessus des autres éléments */
    position: sticky; /* Rendre le header collant */
    background-color: var(--secondary-color);
     
    
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.burger{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}


