/* =========================================================
   ABOUT PAGE  —  assets/css/about.css
========================================================= */

:root {
    --breadcrumb-bg : #EDF2F5;
    --blue-mkba     : #005FAC;
    --orange-mkba   : #ED6A18;
    --dark-mkba     : #111827;
    --muted-mkba    : #6b7280;
}

/* =========================================================
   HERO
========================================================= */

/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.58) 0%,
        rgba(0,0,0,0.25) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 0 20px;
}

.about-hero-title {
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    max-width: 1000px;
    letter-spacing: -1px;

    text-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */
.about-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-mkba);
}

.about-body-text {
    color: var(--muted-mkba);
    font-size: 0.94rem;
    line-height: 1.85;
}

.about-intro-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-mkba);
}

.about-intro-text {
    color: var(--dark-mkba);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
}

/* =========================================================
   INTRO SECTION
========================================================= */

.about-intro {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

/* =========================================================
   WHO WE ARE
========================================================= */

.about-whoweare {
    background: #ffffff;
}

.about-img-wrapper {
    /* border-radius: 18px; */
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.about-img-rounded {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

.about-img-wrapper:hover .about-img-rounded {
    transform: scale(1.03);
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-mkba);
    color: #ffffff;
    border: none;
    /* border-radius: 50px; */
    padding: 13px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-about-primary:hover {
    background: #004a89;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,95,172,0.28);
}

/* =========================================================
   WHY MK BA — CARDS COLORÉES
========================================================= */

.about-why {
    background: #f8f9fb;
}

.about-why-card {
    /* border-radius: 18px; */
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Couleurs */
.about-why-card--blue   { background: linear-gradient(135deg, #005FAC 0%, #0079d9 100%); }
.about-why-card--purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
.about-why-card--cyan   { background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%); }

.about-why-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.90);
}

.about-why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-mkba);
    line-height: 1.4;
    margin-bottom: 10px;
}

.about-why-desc {
    font-size: 0.86rem;
    color: var(--muted-mkba);
    line-height: 1.75;
    margin: 0;
}

/* =========================================================
   ACCORDION FAQ
========================================================= */

.about-faq {
    background: #ffffff;
}

.about-accordion {
    border-top: 1px solid #e5e7eb;
}

.about-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.about-accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--dark-mkba);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    gap: 16px;
}

.about-accordion-btn:not(.collapsed) {
    color: var(--blue-mkba);
}

.about-accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    /* border-radius: 50%; */
    border: 1.5px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--muted-mkba);
    transition: all 0.25s ease;
}

.about-accordion-btn:not(.collapsed) .about-accordion-icon {
    background: var(--blue-mkba);
    border-color: var(--blue-mkba);
    color: #ffffff;
    transform: rotate(45deg);
}

.about-accordion-body {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--muted-mkba);
    line-height: 1.8;
    max-width: 680px;
}

/* =========================================================
   NOS CLIENTS
========================================================= */

.about-clients {
    background: #f8f9fb;
}

.about-clients-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-mkba);
}

.about-client-card {
    background: #ffffff;
    /* border-radius: 14px; */
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.about-client-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

/* Visual coloré */
.about-client-visual {
    height: 140px;
    width: 100%;
}

.about-client-visual--blue   { background: linear-gradient(135deg, #005FAC 0%, #0079d9 100%); }
.about-client-visual--purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
.about-client-visual--cyan   { background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%); }
.about-client-visual--blue2  { background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%); }
.about-client-visual--purple2{ background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%); }
.about-client-visual--cyan2  { background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%); }

.about-client-body {
    padding: 16px 18px 20px;
}

.about-client-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-mkba);
    margin-bottom: 8px;
}

.about-client-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-mkba);
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: center;
}

.about-client-title .bi-arrow-right {
    color: var(--blue-mkba);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-4px);
}

.about-client-card:hover .about-client-title .bi-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   STATISTIQUES
========================================================= */

.home-stats-section {
    background: #F8EEE9;
}

.stats-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #2f3542;
    max-width: 500px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-dot {
    width: 38px;
    height: 38px;
    background: #F5BC97;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2f3542;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-text {
    font-size: .95rem;
    color: #555;
    margin-top: 6px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-hero {
        height: 420px;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {

    .about-hero {
        height: 320px;
    }

    .about-hero-title {
        font-size: 2rem;
    }
}
