/* about.css - IKAOA About Page Styles */

.page-header {
    height: 60vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--font-primary);
    opacity: 0.5;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--font-secondary), transparent);
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.breadcrumb {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--holding-gold);
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--holding-gold);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Dark Positioning Section */
.about-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 120px 0;
}

.about-section-dark .section-title {
    color: var(--white);
}

.about-section-dark .section-subtitle {
    color: var(--gold-light);
}

.about-section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.about-section-dark .section-divider-gold,
.about-section-dark-divider {
    background: linear-gradient(90deg, transparent, var(--holding-gold), transparent);
    height: 1px;
    width: 100%;
    margin: 20px 0;
}

.positioning-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.positioning-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.positioning-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.positioning-list li:last-child {
    border-bottom: none;
}

.positioning-list .check-icon {
    color: var(--gold-light);
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(60, 160, 219, 0.15);
    font-size: 0.75rem;
}

/* Ajustement de l'image dans la section intro */
.filiale-intro .intro-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: inline-block;
    line-height: 0;
}

.filiale-intro .intro-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.filiale-intro .intro-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Geographic Cards */
.geo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.geo-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.geo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.geo-card .geo-flag {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.geo-card h3 {
    color: var(--holding-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.geo-card .geo-role {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.geo-card .geo-detail {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Values Section Background */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Voir plus toggle button */
.btn-voir-plus {
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-voir-plus:hover {
    color: var(--gold-light);
    gap: 12px;
}

.btn-voir-plus .arrow-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.btn-voir-plus.expanded .arrow-icon {
    transform: rotate(180deg);
}

/* Business Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--accent-rgb, 197, 160, 89), 0.2);
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.model-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.model-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* Positioning dark section refinements */
.about-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.about-section-dark::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 197, 160, 89), 0.1) 0%, transparent 70%);
    z-index: 0;
}

.positioning-wrapper {
    position: relative;
    z-index: 2;
}

.check-icon {
    font-size: 0.8rem;
    color: var(--holding-gold);
}

@media (max-width: 991px) {
    .geo-grid {
        grid-template-columns: 1fr;
    }

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

/* ===== ABOUT PAGE - RESPONSIVE FIXES ===== */

/* Tablette - passage à 2 colonnes */
@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    /* Ajustement de la hauteur du header */
    .page-header {
        height: 40vh;
        min-height: 300px;
        padding: 100px 0 40px;
    }

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

    /* Ajustement des cartes pays */
    .country-card {
        padding: 30px 25px;
    }

    .country-card h3 {
        font-size: 1.5rem;
    }

    /* Ajustement de la section positionnement */
    .positioning-list li {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

/* Petit mobile - passage à 1 colonne */
@media (max-width: 480px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .page-header {
        height: 35vh;
        min-height: 250px;
    }

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

    .country-card {
        padding: 25px 20px;
    }

    .country-card h3 {
        font-size: 1.3rem;
    }

    .city-name {
        font-size: 0.95rem;
    }

    .city-role {
        font-size: 0.75rem;
    }
}