/* Styles spécifiques à la page Nos Offres */

:root {
    --bleu-nuit: #6222CC;
    --blanc: #ffffff;
    --vert-fluo: #00ff8c;
    --jaune-doux: #FBA504;
    --gris-clair: #f5f5f5;
    --gris-fonce: #333333;
    --dark: #04000B;
    --light: #F6F4F9;
}

/* Header de page */
.page-header {
    min-height: 70vh;
    background: var(--bleu-nuit) url(../images/bg-bottom.png);
    background-position: center bottom -1px;
    background-repeat: no-repeat;
    color: var(--blanc);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gris-fonce);
}



/*Nouvelle section location*/

.location-section {
    background: var(--blanc);
}

.location-section h2 {
    color: var(--dark);
}

.plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;


}


.plan-card {

    background: white;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.popular-plan {
    border: 3px solid var(--bleu-nuit);
}

li {
    list-style: none;
}

.plan-card:hover {
    transform: translateY(-10px);
}


.plan-header {
    padding: 1rem;
    text-align: center;
    background: var(--bleu-nuit);
    margin-bottom: 2rem;
}

.plans .plan-details {
    padding: 0 1.5rem;
    text-align: left;
}

.plans .plan-details ul {

    list-style: none;
    margin-bottom: 2rem;
}

.plans .plan-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;

}

.plan .plan-details {
    padding: 1.5rem;

}

.title-card {

    color: white;
    font-size: 1.5rem;

}

.price-monthly {
    color: var(--blanc);
    font-size: 1.8rem;
    font-weight: bold;
}

.price-monthly span {
    color: white;
    font-size: 1rem;
    font-weight: lighter;
}

small {
    color: white;
}

.plan-details i {

    color: var(--bleu-nuit);
    font-size: 1rem;
    margin-right: 10px;
}

.formule-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.non-inclu {
    color: #e0e0e0;
}

.non-inclu i.fa-times {
    color: #ff6b6b;
}

/* Section Info supplementaire */

.info .info-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info .info-title h2 {
    margin-top: 20px;
}

.info .info-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem;
}

.info .info-group .info-card-title {
    font-size: 1.3rem;
    color: var(--dark);
}


.info .info-group p {
    font-weight: 400px;
    font-size: 1rem;
}



.info-group .info-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    max-width: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.info-group .info-card:hover {
    transform: translateY(-10px);
}

/* Section Achat */

.achat-section {
    background: var(--light);
}

.achat-section h2 {
    color: var(--dark);
}

.achat-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.achat-info {
    flex: 1;
    min-width: 300px;
}

.achat-image {
    flex: 1;
    min-width: 300px;
}

.achat-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achat-price {
    margin-bottom: 30px;
}

.price-from {
    display: block;
    font-size: 1.2rem;
    color: var(--gris-fonce);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bleu-nuit);
}

.achat-features h3 {
    margin-bottom: 20px;
}

.achat-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.achat-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.achat-features ul li i {
    color: var(--vert-fluo);
    margin-right: 10px;
}

.placeholder-image {
    background-color: #e0e0e0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-fonce);
    font-style: italic;
}



/* Section Comparaison */

.comparison-section {
    background: var(--blanc);
}

.comparison-section h2 {
    color: var(--dark);
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background-color: var(--bleu-nuit);
    color: var(--blanc);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-table i.fa-check {
    color: var(--vert-fluo);
}

.comparison-table i.fa-times {
    color: #ff6b6b;
}

/*Section cta */

.cta {
    background: var(--light);
}

.cta h2 {
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* Media Queries */
@media (max-width: 992px) {

    .page-header {
        background-attachment: scroll;
        padding: 180px 20px 80px;
        min-height: auto;
        background-position: center bottom -1px;

    }

    .achat-content,
    .formule-content {
        flex-direction: column;
    }

    .achat-image,
    .formule-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .formule-header {
        flex-direction: column;
        text-align: center;
    }

    .formule-price {
        margin-top: 10px;
        text-align: center;
    }
}