/* ===================================================== */
/* Section : Container principal du simulateur           */
/* ===================================================== */

#simulateur-solaire {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(90deg, #EE7024, #FCC443);
    overflow: visible;
    position: relative; 
    z-index: 0;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-family: 'Ubuntu', Arial, sans-serif; 
}

#simulateur-solaire h1 {
    color: white;
    line-height: 1.1;
    margin-bottom: 8px;
    font-size: 2em; /* Ajustez la taille selon vos besoins */
    /* background: linear-gradient(90deg, #F50D36, #FCC443); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* font-weight: bold; */ 
}


/* Titre principal */
#simulateur-solaire h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

/* ===================================================== */
/* Section : Boutons de durée                           */
/* ===================================================== */
#duree-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.duree-btn {
    flex: 1;
    padding: 10px;
    margin: 0 5px;
    background-color: #fff !important;
    border: 1px solid #EE7024 !important;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #EE7024 !important;
}

.duree-btn.active {
    background-color: #EE7024 !important;
    color: white !important;
}

.duree-btn:hover {
    background-color: #e0e0e0;
}

/* ===================================================== */
/* Section : Étapes du formulaire                        */
/* ===================================================== */
.form-step {
    display: none;
    border-radius: 8px;
    background-color: white;
    padding: 15px;
}

.form-step.active {
    display: block;
}

.form-step label {
    font-size: 1.4rem;
    font-family: "Ubuntu Woff", sans-serif; 
    margin-bottom: 16px;
}

.form-step input {
    border-radius: 100px;
}

/* ===================================================== */
/* Section : Carte Google Maps                          */
/* ===================================================== */
#map {
    width: 100%;
    height: 400px;
    margin-top: 8px; 
    border-radius: 10px 10px 0px 0px;
}

.placer-repere {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    background-color: #F7931E;
    color: white;
    font-family: 'Ubuntu Woff';
    text-align: center;
    padding-block: 2px;
}

/* ===================================================== */
/* Section : Boutons de navigation                      */
/* ===================================================== */
#simulateur-solaire button, 
#simulateur-solaire a {
    display: inline-block;
    width: 20%;
    margin-top: 16px;
    font-size: 18px;
    font-family: 'Ubuntu Woff', sans-serif;
    color: #fff;
    background-color: #005BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #005BFF;
    text-shadow: none;
    align-self: center;
    min-width: 130px;
}

#simulateur-solaire a {
    text-align: center;
    padding: 8px 16px;
}

#simulateur-solaire button:hover,
#simulateur-solaire a:hover {
    background-color: white;
    color: #005BFF;
    border: 2px solid #005BFF;
}

#simulateur-solaire button:active,
#simulateur-solaire a:active {
    background-color: white;
    color: #EE7024;
    border: 2px solid #EE7024;
}

#simulateur-solaire .steps-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===================================================== */
/* Section : Conteneur pour les cartes de choix           */
/* ===================================================== */
/* Container des cartes pour les chauffages et équipements */
.card-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; /* Permet d'aller à la ligne */
    justify-content: space-around;
}

.chauffage-container, .equipements-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* ===================================================== */
/* Style des cartes */
.card {
    flex: 1 1 30%; /* Définit une largeur minimum de 45% */
    min-width: 100px; /* Définit une largeur minimale */
    max-width: 33%; /* Limite la largeur maximale */
    margin: 5px; /* Espacement entre les cartes */
    text-align: center;
    font-family: 'Ubuntu Woff', sans-serif;
    background-color: #fff;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-weight: bold;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}
/* Pour les petits écrans (moins de 600px de largeur) */
@media (max-width: 600px) {
    .card {
        flex: 1 1 30%; /* Assure deux cartes par ligne */
    }
}
.card.selected {
    background-color: #FDF0E9;
}

.card:hover {
    transform: scale(1.05);
}

/* Icône dans les cartes */
.card-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.card-icon img {
    max-height: 240px;
}

/* Texte dans les cartes */
.card-text {
    font-size: 16px;
    color: black;
}

/* ===================================================== */
/* Section : Résultats détaillés                        */
/* ===================================================== */
#resultats-detailles {
    display: none;
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
}

#resultats-detailles h5 {
    font-family: 'Ubuntu Woff';
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.container-annees {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding-top: 20px;
    padding-inline: 20px;
}

.container-resultats {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.container-resultats h2 {
    color: #FF8B4C;
    font-weight: bold;
}

.avant-apres-container {
    justify-content: space-around;
    display: flex;
    width: 100%;
}

.avant-apres {
    display: flex;
    flex-direction: column;
    max-width: 45%;
    justify-content: space-between;
    align-items: center;
}

.avant-apres h3 {
    text-align: center;
    padding-bottom: 10px;
}

#avant {
    color: white;
    background-color: #E3051C;
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

#apres {
    color: white;
    background-color: #47B845;
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

#cout-avant, #cout-apres, #economies-realisees {
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 3rem;
    font-family: 'Ubuntu Woff';
}

#cout-avant {
    color: #E3051C;
}

#cout-apres {
    color: #47B845;
}

#economies-realisees {
    color: white;
    font-size: 3.5rem !important;
}

#economies {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100% !important;
    background: linear-gradient(90deg, #EE7024, #FCC443);
    padding-block: 8px;
}

#economies h3 {
    color: white !important;
    padding: 0 !important;
}

/* ===================================================== */
/* Section : Précisions et erreurs                      */
/* ===================================================== */
.container-precisions {
    padding-top: 8px;
    display: flex;
    justify-content: center;
    font-weight: 300;
    font-family: 'Ubuntu Woff';
    font-size: 1.1rem;
}

.precisions-elec {
    margin-bottom: 16px !important;
    padding-inline: 20px;
    text-align: center;
}

.error {
    border: 1px solid red !important;
}

input:required:invalid {
    border: 1px solid black; /* Bordure rouge si le champ requis n'est pas rempli */
}

input:required:valid {
    border: 1px solid #F7931E; /* Bordure verte si le champ requis est rempli */
}

/* ===================================================== */
/* Section : Bouton Valider l'emplacement               */
/* ===================================================== */
#validate-location {
    background: #47B845 !important;
    border: 2px solid #47B845 !important;
    width: 25% !important;
    min-width: 260px !important;
}

#validate-location:hover {
    background: white !important;
    color: #47B845 !important;
    border: 2px solid #47B845 !important;
}

/* ===================================================== */
/* Section : Loader                                     */
/* ===================================================== */
#loader {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#loader .spinner {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 6px solid white;
    border-top-color: #005BFF; /* Couleur personnalisée */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loader p {
    margin-top: 10px;
    font-size: 18px;
    color: white;
    font-family: 'Ubuntu Woff';
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================================== */
/* Section : Informations complémentaires               */
/* ===================================================== */
#additional-info {
    display: none;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#additional-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

#additional-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Bouton pour prendre rendez-vous */
#appointment-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#appointment-button:hover {
    background-color: #005f8d;
}

.devis {
    width: 400px !important;
    font-size: 1.3rem !important;
    margin-bottom: 16px;
    margin-inline: 8px;
}

/* ===================================================== */
/* Section : Graphique des économies                   */
/* ===================================================== */
#savingsChart {
    width: 100%;
    max-width: 800px; 
    max-height: 400px; 
    margin: 10px auto 20px auto;
    background: white;
    border-radius: 15px;
}

/* ===================================================== */
/* Section : Autres styles                              */
/* ===================================================== */
.factures-container {
    margin-top: 30px;
    border-radius: 15px;
}

.factures-container h2 {
    color: #000 !important;
    font-size: 1.2em !important; /* Ajustez la taille selon vos besoins */
    font-weight: bold; /* Si vous souhaitez le texte en gras */
    padding-inline: 20px;
}

/* ===================================================== */
/* Section : Result section                             */
/* ===================================================== */
.result-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.result-item {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.result-item .label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #666;
}

.value {
    font-weight: bold;
    color: #000;
}

.value.red {
    color: #e74c3c;
    background-color: #fdecea;
}

.value.green {
    color: #27ae60;
    background-color: #e9f7ef;
}

.value.yellow {
    color: #f39c12;
    background-color: #fef5e6;
}

/*----- Responsiv -----*/

@media (max-width: 600px) {
    #simulateur-solaire {
        padding-inline: 0px;
        padding-bottom: 0px;
        overflow: hidden;
    }
    #simulateur-solaire h1 {
        padding-inline: 20px;
        font-size: 28px;
    }
    #simulateur-solaire h2 {
        padding-inline: 20px;
        font-size: 20px;
    }
    .form-step.active {
        border-radius: 0;
    }
    .chauffage-container {
        flex-direction: column;
    }
    .card {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }
    .card-icon {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }
    .card-text {
        width: 65%;
        text-align: start;
    }
    .equipements-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .card-equip {
        flex-direction: column !important;
    }
    .card-equip .card-icon {
        width: 60%;
    }
    .card-equip .card-text {
        text-align: center;
        width: 100%;
        margin-bottom: 4px;
    }
    .end {
        flex-direction: column-reverse;
        gap: 0px !important;
    }
    .placer-repere {
        padding: 4px;
    }
    #resultats-detailles {
        border-radius: 0px;
    }
    .factures-container {
        margin-top: 0px;
    }
    #map {
        height: 250px !important;
    }
    #duree-preview {
        margin-bottom: 12px;
        font-size: 1.2em;
    }
    #cout-avant, 
    #cout-apres {
        font-size: 2.5rem;
    }
    #economies-realisees {
        font-size: 3rem !important;
    }
    .avant-apres h3 {
        font-size: 18px !important;
    }
}

/* 1) Wrapper : hauteur = thumb-size */
.range {
  position: relative;
  width: 100%;
  height: 10px;                /* thumb-size */
  background: #e5e5e5;
  border-radius: 100px;
}

/* 2) input plein conteneur */
.range input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;               /* égal à wrapper */
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

/* 3) Track réduit à 2px, centré verticalement */
.range input::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
  border: none;
  margin-top: 9px;            /* (20px wrapper - 2px track)/2 */
}
.range input::-moz-range-track {
  height: 2px;
  background: transparent;
  border: none;
  margin-top: 9px;
}
.range input::-ms-track {
  height: 2px;
  background: transparent;
  border-color: transparent;
  color: transparent;
  margin-top: 9px;
}

/* 4) Thumb orange, centré par défaut */
.range input::-webkit-slider-thumb {
  -webkit-appearance: none !important;
          appearance: none !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff8c00 !important;
  border: none;
  cursor: pointer;
  margin-top: -20px !important;               /* puisque wrapper=thumb, on n’a plus besoin de décalage */
  position: relative;
  z-index: 1;
}
.range input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff8c00 !important;
  border: none;
  cursor: pointer;
  margin-top: 0;
}
.range input::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff8c00 !important;
  border: none;
  cursor: pointer;
  margin-top: 0;
}

.cache {
    background-color: white;
    height: 12px;
    width: 100.5%;
    position: absolute;
    top: 10px;
}

#duree-preview {
    margin-top: 12px;
    font-size: 1.4em;
    font-family: 'Ubuntu Woff';
    color: #000;
}
