/* =========================================================
   LAMiC LEADERSHIP PAGE
   Premium Corporate Financial Services Design
========================================================= */


/* =========================================================
   LEADERSHIP HERO
========================================================= */

.leadership-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(18, 39, 71, 0.97),
            rgba(24, 50, 91, 0.88),
            rgba(0, 166, 81, 0.62)
        ),
        url("../images/leadership-hero.jpg");

    background-size: cover;
    background-position: center;
}

.leadership-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(255,255,255,0.12),
            transparent 30%
        );
}

.leadership-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    max-width: 900px;
}


/* BREADCRUMB */

.leadership-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 32px;

    font-size: 14px;
}

.leadership-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.leadership-breadcrumb a:hover {
    color: #ffffff;
}

.leadership-breadcrumb i {
    color: #D9842F;
    font-size: 10px;
}

.leadership-breadcrumb span {
    color: #ffffff;
}


/* LABEL */

.leadership-hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #D9842F;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* TITLE */

.leadership-hero h1 {
    max-width: 850px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 700;
}

.leadership-hero h1 strong {
    display: block;
    color: #ffffff;
    font-weight: 800;
}


/* DESCRIPTION */

.leadership-hero p {
    max-width: 720px;

    margin: 0;

    color: rgba(255,255,255,0.86);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.leadership-intro {
    background: #ffffff;
}

.leadership-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.9fr);

    gap: 80px;

    align-items: center;
}

.leadership-intro-content h2 {
    margin: 15px 0 25px;

    color: #122747;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.leadership-intro-content p {
    color: #5d6878;

    font-size: 16px;
    line-height: 1.85;

    margin-bottom: 18px;
}

.leadership-intro-content .lead {
    color: #344054;

    font-size: 19px;
    line-height: 1.75;
}


/* VISUAL */

.leadership-intro-visual {
    position: relative;
}

.leadership-visual-card {
    position: relative;

    min-height: 390px;

    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 8px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #122747,
            #18325B
        );

    box-shadow: 0 25px 60px rgba(18,39,71,0.18);
}

.leadership-visual-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -110px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.leadership-visual-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    background: rgba(0,166,81,0.15);

    color: #00A651;

    font-size: 28px;
}

.leadership-visual-card > span {
    color: #D9842F;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.leadership-visual-card h3 {
    position: relative;
    z-index: 2;

    margin: 12px 0 15px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.2;
}

.leadership-visual-card p {
    position: relative;
    z-index: 2;

    max-width: 420px;

    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   LEADERSHIP TEAM
========================================================= */

.leadership-team {
    background: #f7f9fc;
}

.leadership-team .section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.leadership-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* LEADER CARD */

.leader-card {
    background: #ffffff;

    border: 1px solid #e7ebf0;

    border-radius: 7px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.leader-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(18,39,71,0.12);
}


/* PHOTO */

.leader-photo {
    position: relative;

    height: 300px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #e8edf3,
            #dce4ec
        );
}

.leader-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #18325B;

    font-size: 85px;
}

.leader-number {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #18325B;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* INFORMATION */

.leader-info {
    padding: 28px 25px 30px;
}

.leader-position {
    display: block;

    margin-bottom: 9px;

    color: #00A651;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.leader-info h3 {
    margin: 0 0 12px;

    color: #122747;

    font-size: 21px;
}

.leader-info p {
    margin: 0;

    color: #687386;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GOVERNANCE
========================================================= */

.governance-section {
    background: #ffffff;
}

.governance-grid {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 85px;

    align-items: center;
}


/* GOVERNANCE VISUAL */

.governance-visual {
    position: relative;

    min-height: 450px;

    padding: 55px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #122747,
            #18325B
        );
}

.governance-visual::before,
.governance-visual::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;
}

.governance-visual::before {
    width: 320px;
    height: 320px;

    top: -150px;
    right: -130px;
}

.governance-visual::after {
    width: 190px;
    height: 190px;

    top: -85px;
    right: -65px;
}

.governance-icon {
    position: relative;
    z-index: 2;

    width: 85px;
    height: 85px;

    margin-bottom: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0,166,81,0.15);

    color: #00A651;

    font-size: 32px;
}

.governance-visual > span {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: #D9842F;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.governance-visual h3 {
    position: relative;
    z-index: 2;

    max-width: 450px;

    margin: 0;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.25;
}


/* CONTENT */

.governance-content h2 {
    margin: 15px 0 22px;

    color: #122747;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.governance-content > p {
    color: #667085;

    font-size: 16px;
    line-height: 1.8;
}


/* POINTS */

.governance-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    margin-top: 35px;
}

.governance-point {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.governance-point-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: rgba(0,166,81,0.09);

    color: #00A651;

    font-size: 17px;
}

.governance-point h4 {
    margin: 0 0 6px;

    color: #18325B;

    font-size: 16px;
}

.governance-point p {
    margin: 0;

    color: #758195;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   LEADERSHIP PRINCIPLES
========================================================= */

.leadership-principles {
    background: #f7f9fc;
}

.leadership-principles .section-heading {
    max-width: 700px;

    margin: 0 auto 55px;
}

.principles-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.principle-card {
    padding: 35px 28px;

    background: #ffffff;

    border: 1px solid #e6eaf0;

    border-radius: 6px;

    transition: 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,166,81,0.25);

    box-shadow:
        0 18px 40px rgba(18,39,71,0.08);
}

.principle-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: rgba(0,166,81,0.08);

    color: #00A651;

    font-size: 21px;
}

.principle-card h3 {
    margin: 0 0 12px;

    color: #122747;

    font-size: 20px;
}

.principle-card p {
    margin: 0;

    color: #6b7687;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FUTURE LEADERSHIP
========================================================= */

.leadership-future {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            #122747,
            #18325B
        );
}

.leadership-future::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -220px;
    top: -300px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.leadership-future-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        350px;

    gap: 80px;

    align-items: center;
}

.leadership-future-content {
    max-width: 700px;
}

.leadership-future-content .section-label {
    color: #D9842F;
}

.leadership-future-content h2 {
    margin: 15px 0 22px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;
}

.leadership-future-content p {
    color: rgba(255,255,255,0.75);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.leadership-future-content .btn {
    margin-top: 15px;
}


/* FUTURE VISUAL */

.leadership-future-visual {
    width: 300px;
    height: 300px;

    margin: auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}

.future-circle {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(0,166,81,0.16);

    color: #00A651;

    font-size: 30px;
}

.leadership-future-visual > span {
    color: #D9842F;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 800;
}

.leadership-future-visual strong {
    margin-top: 8px;

    color: #ffffff;

    font-size: 18px;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .leadership-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .principles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .leadership-intro-grid,
    .governance-grid {
        gap: 50px;
    }

}


@media (max-width: 900px) {

    .leadership-intro-grid,
    .governance-grid,
    .leadership-future-inner {
        grid-template-columns: 1fr;
    }

    .leadership-intro-visual {
        max-width: 650px;
    }

    .governance-visual {
        min-height: 350px;
    }

    .leadership-future-visual {
        margin: 30px auto 0;
    }

}


@media (max-width: 700px) {

    .leadership-hero {
        min-height: 470px;
    }

    .leadership-hero-content {
        padding: 70px 20px;
    }

    .leadership-hero h1 {
        font-size: 42px;
    }

    .leadership-hero p {
        font-size: 16px;
    }

    .leadership-breadcrumb {
        gap: 8px;
    }

    .leadership-grid,
    .principles-grid,
    .governance-points {
        grid-template-columns: 1fr;
    }

    .leadership-visual-card {
        min-height: 330px;

        padding: 40px 30px;
    }

    .governance-visual {
        padding: 40px 30px;
    }

    .governance-visual h3 {
        font-size: 28px;
    }

    .leadership-future {
        padding: 75px 0;
    }

    .leadership-future-visual {
        width: 250px;
        height: 250px;
    }

}


@media (max-width: 480px) {

    .leadership-hero h1 {
        font-size: 36px;
    }

    .leadership-intro-content h2,
    .governance-content h2 {
        font-size: 32px;
    }

    .leader-photo {
        height: 280px;
    }

    .leadership-future-content h2 {
        font-size: 34px;
    }

}