/*
 * About Us Page Styles
 * Fichier CSS dédié à la page "Qui sommes-nous"
 * Ce fichier ne modifie pas les styles globaux du site
 */

/* ============================================
   HERO SECTION
============================================ */
.about-hero {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 28, 31, 0.85) 0%, rgba(128, 181, 0, 0.7) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-content .tagline {
    color: #80B500;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   INTRODUCTION SECTION
============================================ */
.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-intro-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: justify;
}

.about-intro-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.about-intro-content strong {
    color: #80B500;
}

.about-intro-content .highlight-box {
    background: linear-gradient(135deg, #F7F5EB 0%, #ffffff 100%);
    border-left: 4px solid #80B500;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    text-align: left;
}
.about-intro-content .highlight-service {
    /*background: linear-gradient(135deg, #F7F5EB 0%, #ffffff 100%);*/
    border-left: 4px solid #80B500;
    padding: 15px 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    text-align: left;
}
.about-intro-content .highlight-service p{
    margin-bottom: 0;
    font-size: 1.1rem;
}
.about-intro-content .highlight-service h2{
    /*margin-bottom: 0;*/
    font-size: 1.8rem;
}
.about-intro-content .highlight-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
============================================ */
.about-services {
    padding: 80px 0;
    background-color: #F7F5EB;
}

.about-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #071c1f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #80B500, #699403);
    border-radius: 2px;
}

.about-section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(7, 28, 31, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #80B500, #699403);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 28, 31, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #80B500 0%, #699403 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #071c1f;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #80B500;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #80B500;
}

/* ============================================
   VALUES SECTION
============================================ */
.about-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #071c1f 0%, #133236 100%);
    position: relative;
}

.about-values .about-section-title h2 {
    color: #ffffff;
}

.about-values .about-section-title h2::after {
    background: linear-gradient(90deg, #80B500, #a2da1c);
}

.about-values .about-section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: rgba(128, 181, 0, 0.15);
    border: 2px solid #80B500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    background: #80B500;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: #80B500;
    transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
    color: #ffffff;
}

.value-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   MISSION SECTION
============================================ */
.about-mission {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #071c1f;
    margin-bottom: 25px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    position: relative;
}

.mission-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(7, 28, 31, 0.2);
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #80B500;
    border-radius: 15px;
    z-index: -1;
}

/* ============================================
   STATS SECTION
============================================ */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #80B500 0%, #699403 100%);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
============================================ */
.about-cta {
    padding: 80px 0;
    background: #F7F5EB;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #071c1f;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, #80B500 0%, #699403 100%);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(128, 181, 0, 0.4);
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(128, 181, 0, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content .tagline {
        font-size: 1.2rem;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-image::before {
        display: none;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 350px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content .tagline {
        font-size: 1rem;
    }

    .about-intro,
    .about-services,
    .about-values,
    .about-mission,
    .about-cta {
        padding: 50px 0;
    }

    .about-section-title h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .value-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .about-hero-content {
        padding: 40px 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-icon i {
        font-size: 1.5rem;
    }
}
