/* ===== Hero Section À Propos ===== */
.about-hero-section {
    position: relative;
    background: linear-gradient(rgba(44, 62, 73, 0.85), rgba(44, 62, 73, 0.9)), 
                url('../../banner/emera_a_propos_2048x2048.jpg');
    background-size:cover;
    background-position: center;
    color: white;
    /* height: 40vh; */
    min-height: 320px;
    padding: 70px 0 50px;
    margin-bottom: 20px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-hero-content {
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
  
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== Sections ===== */
.section-history,
.section-mission,
.section-values,
.section-expertise,
.section-team,
.section-recognition {
    padding: 5rem 0;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* ===== Timeline ===== */
.timeline-content {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
}

/* ===== Cards spécifiques ===== */
.value-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--box-shadow-hover);
}

.expertise-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

/* ===== Social Icons ===== */
.social-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-icon-small:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.4rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 40px;
        padding-right: 15px;
        text-align: left;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content:before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
      padding: 100px 0 50px;
        margin-top:0px;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-history,
    .section-mission,
    .section-values,
    .section-expertise,
    .section-team,
    .section-recognition {
        padding: 3rem 0;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        height: 50vh;
        min-height: 350px;
        margin-top: 0px;
    }
    
    .about-hero-title {
        font-size: 1.4rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .stats-counter {
        font-size: 2.5rem;
    }
}


        .timeline {
            position: relative;
            padding: 0;
            list-style: none;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: var(--primary-color);
            margin-left: -2px;
        }
        
        .timeline-item {
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: 50%;
            padding-right: 40px;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            padding-left: 40px;
        }
        
        .timeline-dot {
            position: absolute;
            top: 10px;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--accent-color);
            border: 4px solid var(--white-color);
            border-radius: 50%;
            margin-left: -10px;
            z-index: 2;
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            left: 50%;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: 50%;
        }
        
        .expertise-icon {
            width: 80px;
            height: 80px;
            background: rgba(243, 215, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .expertise-card:hover .expertise-icon {
            transform: scale(1.1);
            background: var(--primary-color);
            color: var(--dark-color);
        }
        
        .team-card {
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(243, 215, 35, 0.2);
            margin-bottom: 1.5rem;
        }
        
        .value-card {
             border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            border-color: var(--accent-color);
            transform: translateX(10px);
        }
        
        .certification-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(80, 180, 50, 0.1);
            border-radius: 50px;
            margin-bottom: 1rem;
        }
        
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
                margin-right: 0;
                padding-left: 40px;
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-dot {
                left: 30px;
            }
        }

        /* Style pour les points-tirets */
.bullet-point {
    min-width: 20px;
    text-align: center;
}

.bullet-icon {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
}

.bullet-dash {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

/* Ou style avec effet de cercle minimal */
.bullet-point-circle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-weight: bold;
}

.bullet-point-circle span {
    margin-top: -2px;
}