/* Styles spécifiques à la page Pourquoi NexaSite */
: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);
}

/* Section Avantages */
.advantages-section {
background: var(--blanc);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    color: var(--bleu-nuit);
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    background-color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.advantage-card p {
    color: var(--gris-fonce);
}

/* Section Notre approche */
.approach-section {
    background-color: var(--gris-clair);
}
 
.approach-section h2 {
    color: var(--dark);
}

.approach-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: var(--bleu-nuit);
}

.approach-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.approach-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--bleu-nuit);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    margin-left: 30px;
    padding: 20px;
    background-color: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    
}

/* Section Technologie */

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


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

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

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

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

.technology-feature {
    margin-bottom: 30px;
}

.technology-feature h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.technology-feature h3 i {
    color: var(--bleu-nuit);
    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 Témoignages */

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

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 255, 140, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    font-size: 2rem;
    color: var(--bleu-nuit);
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 0;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gris-fonce);
}

/*Section cta */

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

.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;

    }

    .technology-content {
        flex-direction: column;
    }

    .technology-image {
        order: -1;
    }
}

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

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

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

    .approach-steps::before {
        left: 19px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content {
        margin-left: 20px;
    }
}

@media (max-width:480px) {
      .page-header {
        padding: 100px 0 50px;
        background-position: center bottom -1px;
    }  


}
