/* ------------------------------------ *
 CSS
 vendredi 17 juillet 2026 08:20:55
 HAPedit 3.1.11.111
 * ------------------------------------ */
 /* ------------------------------
   PAGE ABONNEMENT – STYLE SPÉCIFIQUE
--------------------------------*/

/* Conteneur principal */
#abonnement-container {
    width: 90%;
    margin: 40px auto;
}

/* Sous-titre */
.abonnement-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #003366;
}

/* Cartes d’abonnement */
.abonnement-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    border-left: 6px solid #0066cc;
    transition: transform 0.2s ease;
}

.abonnement-card:hover {
    transform: scale(1.02);
}

/* Titres des cartes */
.abonnement-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
}

/* Liste des avantages */
.abonnement-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 17px;
    line-height: 1.7;
}

.abonnement-card li {
    padding: 4px 0;
}

/* Boutons */
.abonnement-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.abonnement-btn:hover {
    background: #003366;
}

/* Cartes Freemium / Standard / Pro – couleurs spécifiques */
.freemi-card {
    border-left-color: #999;
}

.standard-card {
    border-left-color: #0066cc;
}

.pro-card {
    border-left-color: #003366;
}

/* Packs thématiques */
.pack-card {
    background: #eef6ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #99b3ff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.pack-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 10px;
}

.pack-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
}

.pack-card li {
    padding: 4px 0;
}

/* Responsive */
@media screen and (max-width: 900px) {
    #abonnement-container {
        width: 95%;
    }

    .abonnement-card, .pack-card {
        padding: 20px;
    }
}


/* ------------------------------
   PAGES INTERNES DE SIMULATEURS
--------------------------------*/

.simu-container {
    width: 90%;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.simu-title {
    font-size: 30px;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
}

.simu-premium-banner {
    background: #0066cc;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}

.simu-description {
    background: #eef6ff;
    border-left: 5px solid #0066cc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
}

.simu-form {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #cccccc;
}

.simu-form input[type="text"],
.simu-form input[type="number"],
.simu-form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #999;
    font-size: 16px;
}

.simu-form input[type="submit"],
.simu-form button {
    background: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.simu-form input[type="submit"]:hover,
.simu-form button:hover {
    background: #003366;
}

.simu-result {
    background: #eaf2ff;
    border-left: 5px solid #003366;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.7;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .simu-container {
        width: 95%;
    }
}

