/**
 * ==========================================================================
 * FIGORA Global Skills Nexus
 * ----------------------------------------------------------------------------
 * About Page
 * File : assets/css/pages/about.css
 * Version : 1.0.0
 * ==========================================================================
 */

/* ==========================================================
   HERO
========================================================== */

.figora-about-page{
    background:#fff;
}

.page-hero{
    position:relative;
    overflow:hidden;
    padding:110px 0 90px;
    background:linear-gradient(135deg,#0F172A 0%,#1E3A8A 100%);
    color:#fff;
}

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.10),
        transparent 45%);
}

.page-hero .container{
    position:relative;
    z-index:2;
}

.page-hero__content{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

.page-hero .section-subtitle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-weight:600;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.page-title{
    margin:0 0 24px;
    font-size:clamp(2.6rem,5vw,4.25rem);
    line-height:1.15;
    color:#fff;
}

.page-description{
    max-width:720px;
    margin:0 auto;
    font-size:1.15rem;
    line-height:1.9;
    color:rgba(255,255,255,.88);
}

/* ==========================================================
   STORY
========================================================== */

.about-story{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.about-content h2{
    margin:18px 0 24px;
    font-size:2.5rem;
    color:var(--color-heading);
}

.about-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:var(--color-text);
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 60px rgba(15,23,42,.12);
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:42px;
}

.highlight{
    padding:28px 20px;
    text-align:center;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:18px;
}

.highlight h3{
    margin-bottom:10px;
    font-size:2.2rem;
    color:var(--color-primary);
}

.highlight p{
    margin:0;
    font-weight:600;
}
/* ==========================================================
   MISSION & VISION
========================================================== */

.about-mission{
    padding:100px 0;
    background:#F8FAFC;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px;
}

.mission-card{
    padding:45px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
    transition:.3s ease;
}

.mission-card:hover{
    transform:translateY(-8px);
    border-color:var(--color-primary);
    box-shadow:0 24px 55px rgba(15,23,42,.12);
}

.mission-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:18px;
    background:rgba(37,99,235,.10);
    color:var(--color-primary);
    font-size:30px;
}

.mission-card h2{
    margin-bottom:18px;
    font-size:2rem;
    color:var(--color-heading);
}

.mission-card p{
    line-height:1.9;
    color:var(--color-text);
}

/* ==========================================================
   VALUES
========================================================== */

.about-values{
    padding:100px 0;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;
}

.value-card{
    padding:36px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    transition:.3s ease;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.value-card:hover{
    transform:translateY(-6px);
    border-color:var(--color-primary);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.value-card h3{
    margin-bottom:16px;
    color:var(--color-heading);
    font-size:1.35rem;
}

.value-card p{
    margin:0;
    line-height:1.8;
    color:var(--color-text);
}

/* ==========================================================
   WHY FIGORA
========================================================== */

.about-why{
    padding:100px 0;
    background:#F8FAFC;
}

.about-why .section-header{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.about-why .values-grid{
    margin-top:0;
}
/* ==========================================================
   CTA
========================================================== */

.page-cta{
    padding:100px 0;
}

.cta-box{
    max-width:900px;
    margin:0 auto;
    padding:70px 60px;
    text-align:center;
    border-radius:28px;
    background:linear-gradient(135deg,#1E3A8A 0%,#2563EB 100%);
    color:#fff;
    box-shadow:0 30px 70px rgba(37,99,235,.20);
}

.cta-box h2{
    margin:0 0 20px;
    font-size:2.6rem;
    color:#fff;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.9;
    color:rgba(255,255,255,.90);
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-buttons .btn{
    min-width:220px;
    justify-content:center;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:991px){

    .page-hero{
        padding:90px 0 80px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .about-highlights{
        grid-template-columns:repeat(3,1fr);
    }

    .cta-box{
        padding:55px 35px;
    }

}

@media (max-width:767px){

    .page-title{
        font-size:2.4rem;
    }

    .about-story,
    .about-mission,
    .about-values,
    .about-why,
    .page-cta{
        padding:70px 0;
    }

    .about-content h2,
    .mission-card h2,
    .cta-box h2{
        font-size:2rem;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

    .highlight{
        padding:24px;
    }

    .mission-card,
    .value-card{
        padding:28px;
    }

    .cta-box{
        padding:45px 25px;
    }

    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-buttons .btn{
        width:100%;
        min-width:0;
    }

}