/* ============================================
   ABOUT PAGE STYLES
   Page "Qui Sommes-Nous" - Tous les styles
   ============================================ */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.about-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Text Section */
.text-section {
    background: #f8f9fa;
}

.text-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 30px;
    font-weight: 700;
}

.text-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Vision Section */
.vision-section {
    background: white;
}

.vision-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 30px auto 60px;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-blue, #003893);
    margin: 40px 0 30px;
    font-weight: 600;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-pillar-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vision-pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red, #DC143C);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue, #003893), var(--accent-red, #DC143C));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
}

.pillar-content {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 15px auto 50px;
}

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

.value-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red, #DC143C), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue, #003893);
    margin-bottom: 12px;
}

.value-content {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Conformity Banner */
.conformity-banner {
    background: linear-gradient(135deg, var(--primary-blue, #003893), #001a4d);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.conformity-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.conformity-content i {
    font-size: 1.8rem;
    color: #FFD700;
}

/* Theory of Change Section */
.toc-section {
    background: white;
}

.toc-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 30px auto 50px;
    font-style: italic;
}

.toc-schema {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.toc-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.toc-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.toc-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.toc-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue, #003893), var(--accent-red, #DC143C));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
}

.toc-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue, #003893);
    margin-bottom: 8px;
}

.toc-step p {
    font-size: 0.9rem;
    color: #666;
}

.toc-arrow {
    font-size: 2rem;
    color: var(--accent-red, #DC143C);
}

/* Sectors Grid */
.sectors-grid-section {
    background: #f8f9fa;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sector-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sector-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red, #DC143C);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #228b22, #32cd32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.sector-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
}

.sector-content {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 40px;
    text-align: center;
    color: #999;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
}

.zones-list {
    margin-top: 40px;
    text-align: center;
}

.zones-list h4 {
    font-size: 1.3rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 20px;
    font-weight: 700;
}

.zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.zone-tag {
    background: var(--accent-red, #DC143C);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.zone-tag:hover {
    background: var(--primary-blue, #003893);
    transform: scale(1.05);
}

/* Governance & MEAL Sections */
.governance-section,
.meal-section {
    background: #f8f9fa;
}

.governance-content,
.meal-content {
    max-width: 900px;
    margin: 30px auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.governance-content strong,
.meal-content strong {
    color: var(--primary-blue, #003893);
    font-weight: 700;
}

.governance-cta,
.meal-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Transparency Section */
.transparency-section {
    background: white;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin: 50px 0;
}

.transparency-chart,
.transparency-reports {
    text-align: center;
}

.transparency-chart h4,
.transparency-reports h4 {
    font-size: 1.5rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 30px;
    font-weight: 700;
}

.donut-chart {
    margin: 30px auto;
    max-width: 300px;
}

.chart-legend {
    text-align: left;
    max-width: 300px;
    margin: 30px auto 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.reports-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.reports-list li {
    margin-bottom: 15px;
}

.reports-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue, #003893);
    text-decoration: none;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reports-list a:hover {
    background: var(--accent-red, #DC143C);
    color: white;
    transform: translateX(5px);
}

.reports-list i {
    font-size: 1.5rem;
}

/* Partners Section */
.partners-section {
    background: #f8f9fa;
}

.partners-grid {
    margin: 50px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-placeholder {
    background: white;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #999;
}

.partners-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Join Section */
.join-section {
    background: white;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.join-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red, #DC143C);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.join-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red, #DC143C), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.join-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
}

.join-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.join-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gdpr-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}

.gdpr-note i {
    color: var(--accent-red, #DC143C);
}

/* ===================================
   VISION ACCORDION - Page About
   =================================== */

.about-vision-accordion {
    background: linear-gradient(135deg, #001a4d 0%, #003893 50%, #001a4d 100%);
    color: #ffffff;
    padding: 100px 0;
}

.about-vision-accordion .section-header-center h2 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.about-vision-accordion .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.vision-accordion-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.vision-accordion-item:hover {
    border-color: rgba(0, 224, 255, 0.5);
    transform: translateX(10px);
}

.vision-accordion-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 224, 255, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), #c81446);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    transition: all 0.4s ease;
}

.vision-accordion-item.active .accordion-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
}

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

.accordion-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.vision-accordion-item.active .accordion-title {
    color: var(--accent-cyan);
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.vision-accordion-item.active .accordion-toggle {
    background: var(--accent-cyan);
    transform: rotate(180deg);
}

.accordion-toggle i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 0 35px 35px 130px;
}

.accordion-content-inner p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    text-align: justify;
}

.vision-accordion-cta {
    margin-top: 60px;
}

.vision-accordion-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue, #003893);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-red, #DC143C);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.5rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red, #DC143C);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--accent-red, #DC143C);
    width: 30px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue, #003893);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-red, #DC143C);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .vision-pillars,
    .values-grid,
    .sectors-grid,
    .join-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-flow {
        flex-direction: column;
    }
    
    .toc-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .transparency-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Button Styles */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-blue, #003893);
    color: var(--primary-blue, #003893);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--primary-blue, #003893);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Utility Classes */
.py-5 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* ============================================
   APPROACH NARRATIVE - Paragraphes au lieu de cartes
   ============================================ */

.approach-narrative-section {
    background: #f8f9fa;
}

.approach-narrative-section .section-intro {
    max-width: 800px;
    margin: 30px auto 60px;
    font-size: 1.15rem;
    color: #666;
}

.approach-items {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border-left: 5px solid var(--accent-red, #DC143C);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.approach-item-title {
    font-size: 1.4rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
    font-weight: 700;
}

.approach-item-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

/* ============================================
   NARRATIVE SECTIONS (Generic styles)
   ============================================ */

.toc-narrative-section,
.map-narrative-section,
.governance-narrative-section,
.meal-narrative-section,
.partners-narrative-section,
.impact-narrative-section,
.team-narrative-section,
.contact-classic-section {
    background: white;
}

.toc-narrative-content,
.map-narrative-content,
.governance-narrative-content,
.meal-narrative-content,
.partners-narrative-content,
.impact-narrative-content,
.team-narrative-content,
.contact-intro {
    max-width: 900px;
    margin: 30px auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.governance-cta-buttons,
.meal-cta-buttons,
.partners-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ============================================
   CONTACT CLASSIC - Classic form layout
   ============================================ */

.contact-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form-wrapper h3::before {
    content: '✎ ';
    color: var(--accent-red, #DC143C);
}

.contact-info-wrapper h3::before {
    content: '📍 ';
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red, #DC143C);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.contact-form .btn-block {
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue, #003893), var(--accent-red, #DC143C));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.contact-text a {
    color: var(--accent-red, #DC143C);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-social {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.contact-social h4 {
    font-size: 1.1rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue, #003893);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-red, #DC143C);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Responsive for Contact Classic */
@media (max-width: 768px) {
    .contact-classic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   FAQ WITH BETTER STYLING
   ============================================ */

.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-red, #DC143C);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.15);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue, #003893);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    padding-left: 30px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-red, #DC143C);
    font-size: 0.9rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 600px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue, #003893);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-red, #DC143C);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-blue, #003893);
    color: var(--primary-blue, #003893);
}

.btn-outline-primary:hover {
    background: var(--primary-blue, #003893);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* MAP SECTION CARDS - Zones/Départements */
.map-section-cards {
    background: #f8f9fa;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.department-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue, #003893);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-red, #DC143C);
}

.department-card .department-icon {
    font-size: 3rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 20px;
}

.department-card h3 {
    font-size: 1.5rem;
    color: #001a4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.department-card p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

/* TEAM NARRATIVE WITH LEADERS */
.team-intro {
    max-width: 900px;
    margin: 30px auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.leader-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e9ecef;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #001a4d;
    margin: 20px 20px 5px;
}

.leader-role {
    color: var(--primary-blue, #003893);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 20px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-bio {
    color: #555;
    line-height: 1.6;
    margin: 0 20px 20px;
    text-align: justify;
    font-size: 0.95rem;
}

/* LEADER SIMPLE - Vers plus classique */
.leader-card.leader-simple {
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.leader-card.leader-simple:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue, #003893);
}

.leader-card.leader-simple .leader-name {
    margin: 15px 0 5px;
}

/* PARTNERS CARDS */
.partners-cards-section {
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.partner-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue, #003893);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-red, #DC143C);
}

.partner-card .partner-icon {
    font-size: 3rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 20px;
}

.partner-card h3 {
    font-size: 1.4rem;
    color: #001a4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-card p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
    font-size: 0.95rem;
}

/* IMPACT CARDS */
.impact-cards-section {
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.impact-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue, #003893);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-red, #DC143C);
}

.impact-card .impact-icon {
    font-size: 3rem;
    color: var(--primary-blue, #003893);
    margin-bottom: 15px;
}

.impact-card .impact-stat {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red, #DC143C);
    margin: 10px 0;
}

.impact-card h3 {
    font-size: 1.4rem;
    color: #001a4d;
    margin: 15px 0;
    font-weight: 700;
}

.impact-card p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
    font-size: 0.95rem;
}

/* FAQ - 2 COLUMNS LAYOUT */
.faq-container.faq-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.faq-container.faq-1-column {
    max-width: 800px;
    margin: 40px auto;
}

/* PARTNERS & IMPACT VERTICAL LAYOUT */
.partners-vertical-section,
.impact-vertical-section {
    background: white;
}

.partners-vertical-section {
    background: #f8f9fa;
}

.vertical-items {
    max-width: 900px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vertical-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue, #003893);
    transition: all 0.3s ease;
}

.vertical-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-red, #DC143C);
}

.vertical-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 56, 147, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-blue, #003893);
}

.vertical-content h3 {
    font-size: 1.4rem;
    color: #001a4d;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.vertical-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.vertical-item.impact-item .impact-stat-badge {
    display: inline-block;
    background: var(--accent-red, #DC143C);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* CONTACT FUTURISTIC */
.contact-futuristic-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 80px 20px;
}

.contact-futuristic-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-futuristic-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.futuristic-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.futuristic-form input,
.futuristic-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.futuristic-form input::placeholder,
.futuristic-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.futuristic-form input:focus,
.futuristic-form textarea:focus {
    outline: none;
    border-color: #00e0ff;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-futuristic {
    background: linear-gradient(135deg, #00d4ff, #0095ff);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.4);
}

.contact-quick-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-quick-info .info-item i {
    font-size: 1.2rem;
    color: #00e0ff;
}

/* Responsive */
@media (max-width: 768px) {
    .vertical-item {
        flex-direction: column;
        text-align: center;
    }
    
    .vertical-icon {
        margin: 0 auto;
    }
    
    .contact-futuristic-wrapper h2 {
        font-size: 2rem;
    }
    
    .contact-quick-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   TEAM FUTURISTIC - Design interactif moderne
   ============================================ */

.team-futuristic-section {
    background: #f8f9fa;
}

.leaders-futuristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
}

.leader-futuristic-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.leader-futuristic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 56, 147, 0.2);
}

/* Photo avec overlay interactif */
.leader-photo-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #003893, #0095ff);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.leader-futuristic-card:hover .leader-photo {
    transform: scale(1.1);
}

/* Overlay avec réseaux sociaux */
.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-futuristic-card:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #00e0ff;
    border-color: #00e0ff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 224, 255, 0.4);
}

/* Infos dirigeant */
.leader-info {
    padding: 30px;
}

.leader-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #001a4d;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.leader-role {
    color: var(--primary-blue, #003893);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
}

.leader-role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #003893, #00e0ff);
}

.leader-description {
    color: #555;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    text-align: justify;
}

/* Bouton Biographie */
.btn-bio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #003893, #0095ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-bio:hover::before {
    left: 100%;
}

.btn-bio:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 149, 255, 0.4);
}

.btn-bio i {
    transition: transform 0.3s ease;
}

.btn-bio:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .leaders-futuristic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leader-photo-wrapper {
        height: 300px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
