/* =========================================================
   CV BAROKAH ARTHA PRIMA
   ABOUT PAGE
========================================================= */

.about-page {
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}


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

.about-hero {
    position: relative;
    min-height: 440px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(5, 20, 35, .94),
            rgba(5, 20, 35, .72),
            rgba(5, 20, 35, .35)
        ),
        url('../images/about.png') center / cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    padding: 80px 0;
}

.about-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #d1ae5a;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}

.about-hero h1 {
    max-width: 750px;

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.12;
    font-weight: 600;

    letter-spacing: -1.5px;
}

.about-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.85);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.about-section {
    padding: 85px 0;
}

.about-section-label {
    display: block;

    margin-bottom: 13px;

    color: #345572;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.8px;
}

.about-section-heading h2 {
    margin: 0;

    color: #0b1f33;

    font-size: clamp(28px, 3.3vw, 43px);
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: -1px;
}

.about-section-heading p {
    max-width: 600px;

    margin: 18px 0 0;

    color: #69757e;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   COMPANY
========================================================= */

.about-company {
    background: #fff;
}

.about-company-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;
}

.about-company-text {
    padding-top: 5px;
}

.about-company-text p {
    margin: 0 0 18px;

    color: #5d6973;

    font-size: 14px;
    line-height: 1.9;
}

.about-company-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.about-experience {
    background: #f5f7f8;
}

.about-experience-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-experience-content p {
    margin: 0 0 30px;

    color: #5d6973;

    font-size: 14px;
    line-height: 1.9;
}

.about-experience-number {
    color: #0b1f33;

    font-size: clamp(65px, 8vw, 110px);
    line-height: .9;
    font-weight: 600;

    letter-spacing: -5px;
}

.about-experience-caption {
    display: block;

    margin-top: 14px;

    color: #8a969f;

    font-size: 12px;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.about-vision-mission {
    background: #fff;
}

.about-values-heading {
    max-width: 700px;
}

.about-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.about-vision-card {
    position: relative;

    padding: 35px;

    background: #fff;

    border: 1px solid #e1e6ea;

    transition: .25s ease;
}

.about-vision-card:hover {
    transform: translateY(-4px);

    border-color: #c9a24a;

    box-shadow: 0 15px 35px rgba(11,31,51,.08);
}

.about-vision-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 22px;

    background: #0b1f33;

    color: #fff;

    border-radius: 50%;

    font-size: 17px;
}

.about-vision-number {
    position: absolute;

    top: 32px;
    right: 32px;

    color: #a0aab1;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}

.about-vision-card h3 {
    margin: 0 0 15px;

    color: #0b1f33;

    font-size: 23px;
    font-weight: 600;
}

.about-vision-card p {
    margin: 0;

    color: #5d6973;

    font-size: 14px;
    line-height: 1.9;
}

.about-vision-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.about-vision-card li {
    position: relative;

    margin: 0 0 14px;
    padding-left: 22px;

    color: #5d6973;

    font-size: 14px;
    line-height: 1.8;
}

.about-vision-card li:last-child {
    margin-bottom: 0;
}

.about-vision-card li::before {
    content: '';

    position: absolute;

    left: 0;
    top: 9px;

    width: 7px;
    height: 7px;

    background: #c9a24a;

    border-radius: 50%;
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    background: #fff;
}

.about-values-heading {
    margin-bottom: 42px;
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.about-value-card {
    min-height: 230px;

    padding: 28px;

    background: #fff;

    border: 1px solid #e1e6ea;

    transition: .25s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);

    border-color: #c9a24a;

    box-shadow: 0 15px 35px rgba(11,31,51,.08);
}

.about-value-number {
    display: block;

    margin-bottom: 48px;

    color: #a0aab1;

    font-size: 11px;
    font-weight: 600;
}

.about-value-card h3 {
    margin: 0 0 10px;

    color: #0b1f33;

    font-size: 18px;
    font-weight: 600;
}

.about-value-card p {
    margin: 0;

    color: #68747e;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   CUSTOMERS
========================================================= */

.about-customers {
    background: #f5f7f8;

    overflow: hidden;
}

.about-customers-heading {
    max-width: 700px;

    margin-bottom: 42px;
}

.customer-logo-slider {
    width: 100%;

    overflow: hidden;

    border-top: 1px solid #e1e6ea;
    border-bottom: 1px solid #e1e6ea;

    background: #fff;
}

.customer-logo-track {
    width: max-content;

    display: flex;
    align-items: center;

    animation: customerLogoMove 28s linear infinite;
}

.customer-logo-item {
    width: 180px;
    height: 100px;

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

    padding: 20px 25px;

    box-sizing: border-box;
}

.customer-logo-item img {
    display: block;

    width: auto;
    height: auto;

    max-width: 115px;
    max-height: 48px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .68;

    transition:
        opacity .25s ease,
        filter .25s ease,
        transform .25s ease;
}

.customer-logo-item img:hover {
    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);
}

@keyframes customerLogoMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 0 0 85px;

    background: #f5f7f8;
}

.about-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 48px 52px;

    background: #0b1f33;
}

.about-cta-content {
    max-width: 700px;
}

.about-cta-box .about-section-label {
    color: #aebbc6;
}

.about-cta-box h2 {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(27px, 3.2vw, 40px);
    line-height: 1.2;
    font-weight: 600;
}

.about-cta-box p {
    margin: 0;

    color: #c5d0d8;

    font-size: 13px;
    line-height: 1.8;
}

.about-cta-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    flex-shrink: 0;
}

.about-cta-button {
    min-height: 46px;

    display: inline-flex;

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

    gap: 9px;

    padding: 0 22px;

    border: 1px solid transparent;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition: .25s ease;
}

.about-cta-whatsapp {
    background: #fff;

    color: #0b1f33;
}

.about-cta-whatsapp:hover {
    background: #25d366;

    color: #fff;

    transform: translateY(-2px);
}

.about-cta-download {
    background: transparent;

    border-color: rgba(255,255,255,.45);

    color: #fff;
}

.about-cta-download:hover {
    background: #c9a24a;

    border-color: #c9a24a;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-company-grid,
    .about-experience-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-box {
        padding: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-container {
        width: 90%;
    }

    .about-hero {
        min-height: 500px;
    }

    .about-hero-content {
        padding: 65px 0;
    }

    .about-hero h1 {
        font-size: 32px;

        letter-spacing: -.5px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .about-section {
        padding: 60px 0;
    }

    /* VISION MISSION */

    .about-vision-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 35px;
    }

    .about-vision-card {
        padding: 28px;
    }

    .about-vision-number {
        top: 25px;
        right: 25px;
    }

    .about-vision-card h3 {
        font-size: 21px;
    }

    .about-vision-card p,
    .about-vision-card li {
        font-size: 13px;
    }

    /* VALUES */

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: 200px;
    }

    /* CUSTOMERS */

    .customer-logo-item {
        width: 145px;
        height: 85px;

        padding: 16px 18px;
    }

    .customer-logo-item img {
        max-width: 95px;
        max-height: 40px;
    }

    /* CTA */

    .about-cta {
        padding-bottom: 60px;
    }

    .about-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px 25px;
    }

    .about-cta-actions {
        width: 100%;
    }

    .about-cta-button {
        width: 100%;
    }

}