  /* Styles généraux */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #F8FAFC;
    color: #333;
}

/* CONTAINER GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

        /* HEADER FIXE */
        header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px; /* Taille imposée */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a.active {
    color: #0057B7; /* Remplace cette couleur par celle que tu veux */
    /* Facultatif pour rendre le texte plus visible */
}
nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.btn-header {
    background-color: #6CBF43;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
        .section-title {
    text-align: center;
    margin-top: 100px; /* Ajuste selon la hauteur du header */
}

.estimator {
    padding-top: 20px; /* Pour éviter que le contenu ne soit caché par le header */
}
.section-title h1 {
    font-weight: normal; /* ou 400 */
}
/* Conteneur des marques et modèles */
.brands-grid, .models-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

/* Cadre des marques */
.brand-logo {
    display: flex;
    flex-direction: column; /* Image au-dessus, texte en-dessous */
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.brand-logo:hover {
    transform: scale(1.1);
}

/* Image du logo */
.brand-logo img {
     width: 50px;
    height: 50px;
   
    margin-bottom: 1px; /* Espacement entre image et texte */
}

/* Texte sous le logo */
.brand-logo span {
    font-size: 14px;
    color: #333;
}

/* Cadre des modèles */
.model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    width: 150px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.model-card:hover {
    transform: scale(1.05);
}

/* Image des modèles */
.model-img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

/* Étapes */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 120px 20px;
}
/* Masquer les éléments initialement */
.hidden {
    display: none;
}

/* Conteneur principal */
.result-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section texte et tableau */
.result-content {
    flex: 1;
    text-align: left;
}

.result-content h3 {
    color: #0057B7;
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Image du véhicule et détails */
.result-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.vehicle-img {
    width: 180px;
    border-radius: 10px;
    background: #F8FAFC;
}

.vehicle-details p {
    font-size: 1.1em;
    margin: 5px 0;
}

/* Tableau de recharge */
.recharge-table thead tr {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.recharge-table th, .recharge-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.recharge-table th {
    background: #EAF6FF;
    font-weight: bold;
}

/* Mettre en surbrillance la ligne avec le meilleur temps de charge */
.recharge-table tr.highlight {
    background: #DFF5E1;
    font-weight: bold;
}

/* Borne de recharge */
.charging-illustration {
    position: relative;
    text-align: center;
}

.charging-illustration img {
    width: 220px;
}

/* Cercle de chargement 100% */
.charging-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: #008000;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.charging-time p {
    font-size: 1.3em;
    margin: 0;
}

/* Bouton Contact */
.btn-green {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #6CBF43, #A3E635);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.btn-green:hover {
    background: linear-gradient(45deg, #58A330, #8DD935);
}


/* Bouton Retour */
.btn-back {
    display: inline-flex;
    align-items: center;
    background: none;
    border: 2px solid #0057B7;
    color: #0057B7;
    font-size: 1em;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    margin-left: 0; /* Aligné à gauche */
}

.btn-back span {
    font-size: 1.2em;
    margin-right: 8px;
}

.btn-back:hover {
    background: #0057B7;
    color: white;
}
/* Ajustement Responsive */
@media (max-width: 768px) {
    .result-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .result-info {
        flex-direction: column;
        text-align: center;
    }

    .charging-illustration img {
        width: 180px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .result-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .result-info {
        flex-direction: column;
        text-align: center;
    }

    .charging-illustration img {
        width: 180px;
    }
}
/* Formulaire */
.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    padding: 40px 0;
    margin-top: 40px;
}


.contact-form h2 {
     font-weight: normal; /* ou 400 */
}

.contact-form .container {
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.card {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10
}