/* =========================================
   ABOUT SECTION
========================================= */

.about {
    background: var(--surface);
}


/* =========================================
   REUSABLE SECTION STYLE
========================================= */

.section-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    color: var(--secondary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 2px;

    margin-right: 10px;

    border-radius: 10px;

    background: var(--secondary);
}

.section-title {
    margin-bottom: 22px;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;

    letter-spacing: -1.5px;

    color: var(--heading);
}

.section-title span {
    color: var(--primary);
}


/* =========================================
   ABOUT INTRO
========================================= */

.about-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

    padding-top: 110px;
    padding-bottom: 120px;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.about-image-main {
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 4 / 3;

    border-radius: 32px 32px 70px 32px;

    box-shadow:
        0 25px 60px rgba(32, 54, 109, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.03);
}


/* Experience Card */

.about-experience {
    position: absolute;

    right: -35px;
    bottom: 45px;

    z-index: 3;

    width: 165px;

    padding: 20px;

    border-radius: 20px;

    background: var(--primary);

    color: #ffffff;

    box-shadow:
        0 18px 45px rgba(32, 54, 109, 0.2);
}

.about-experience strong {
    display: block;

    margin-bottom: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 30px;
    font-weight: 800;
}

.about-experience span {
    display: block;

    font-size: 11px;

    line-height: 1.5;

    opacity: 0.85;
}


/* Decoration */

.about-decoration {
    position: absolute;

    width: 150px;
    height: 150px;

    top: -30px;
    left: -35px;

    border-radius: 50%;

    background: rgba(47, 167, 160, 0.1);

    z-index: 0;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    position: relative;

    z-index: 2;
}

.about-description {
    margin-bottom: 18px;

    max-width: 600px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;
}

.about-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 10px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.about-link span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--secondary);
}

.about-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   VALUES WRAPPER
========================================= */

.about-values-wrapper {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(47, 167, 160, 0.08),
            transparent 30%
        ),
        var(--background);
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading .section-label {
    justify-content: center;
}

.section-heading > p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   ABOUT VALUES
========================================= */

.about-values {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================================
   VALUE CARD
========================================= */

.about-card {
    position: relative;

    min-height: 330px;

    padding: 32px;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.about-card:hover {
    transform: translateY(-8px);

    border-color: rgba(47, 167, 160, 0.35);

    box-shadow:
        0 22px 50px rgba(32, 54, 109, 0.1);
}


/* Featured Visi */

/* =========================================
   FEATURED CARD - VISI
========================================= */

.about-card-featured {
    background: #ffffff;

    border: 1px solid rgba(47, 167, 160, 0.35);

    box-shadow:
        0 14px 35px rgba(32, 54, 109, 0.07);
}


/* Nomor card */

.about-card-featured .about-card-number {
    color: var(--secondary);
}


/* Icon */

.about-card-featured .about-card-icon {
    background: rgba(47, 167, 160, 0.1);

    color: var(--secondary);
}


/* Judul */

.about-card-featured h3 {
    color: var(--heading);
}


/* Deskripsi */

.about-card-featured p {
    color: var(--text);

    opacity: 1;
}


/* Card Top */

.about-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.about-card-number {
    font-family: "Manrope", sans-serif;

    color: var(--secondary);

    font-size: 13px;
    font-weight: 700;
}

.about-card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(47, 167, 160, 0.1);

    color: var(--secondary);

    font-size: 17px;
}


/* Card Content */

.about-card h3 {
    margin-bottom: 15px;

    color: var(--heading);

    font-size: 23px;
    font-weight: 700;
}

.about-card p {
    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   LEADERSHIP
========================================= */

.leadership {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

    padding-top: 120px;
    padding-bottom: 120px;
}


/* Leadership Content */

.leadership-content > p {
    max-width: 580px;

    margin-bottom: 17px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================
   LEADERSHIP POINTS
========================================= */

.leadership-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}

.leadership-point {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}

.leadership-point > span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(47, 167, 160, 0.12);

    color: var(--secondary);

    font-size: 11px;
    font-weight: 700;
}

.leadership-point p {
    color: var(--text-dark);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   LEADERSHIP IMAGE
========================================= */

.leadership-visual {
    position: relative;

    max-width: 520px;

    margin-left: auto;
}

.leadership-image {
    overflow: hidden;

    width: 100%;
    aspect-ratio: 4 / 3;

    border-radius: 60px 28px 28px 28px;

    box-shadow:
        0 25px 60px rgba(32, 54, 109, 0.12);
}

.leadership-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}

.leadership-image:hover img {
    transform: scale(1.03);
}


/* Quote */

.leadership-quote {
    position: absolute;

    left: -55px;
    bottom: 35px;

    max-width: 250px;

    padding: 20px 22px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(32, 54, 109, 0.15);
}

.leadership-quote > span {
    display: block;

    height: 25px;

    color: var(--secondary);

    font-family: Georgia, serif;

    font-size: 38px;

    line-height: 1;
}

.leadership-quote p {
    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .about-intro,
    .leadership {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-visual,
    .leadership-visual {
        width: 100%;
        max-width: 600px;

        margin-inline: auto;
    }

    .about-content,
    .leadership-content {
        max-width: 700px;

        margin-inline: auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: auto;
    }

    .about-card-top {
        margin-bottom: 30px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-intro {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-title {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .about-image-main img,
    .leadership-image img {
        height: 400px;
    }

    .about-experience {
        right: 15px;
        bottom: 15px;

        width: 145px;
    }

    .about-values-wrapper {
        padding: 75px 0;
    }

    .about-card {
        padding: 26px;

        border-radius: 20px;
    }

    .leadership {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .leadership-points {
        grid-template-columns: 1fr;
    }

    .leadership-quote {
        left: 15px;
        right: 15px;
        bottom: 15px;

        max-width: none;
    }
}