/* ============================================================
   About Us Page
   ============================================================ */

/* Hero Banner */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.about-hero__text {
    position: relative;
    z-index: 1;
    align-self: anchor-center;
    color: #fff;
    width: 100%;
}

.about-hero__title {
    font-size: clamp(1.6rem, 4vw, 4.8rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.15;
    margin: 0;
    font-weight: 200;
    justify-self: center;
}

.about-hero__title strong {
    font-weight: 800;
}

/* ============================================================
   Intro Section
   ============================================================ */

.about-intro {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 24px 0px;
    text-align: center;
    color: #222;
}

.about-intro__tagline {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-intro__heading {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 24px;
    color: #111;
}

.about-intro__body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* ============================================================
   Purpose & Ambition Cards
   ============================================================ */

.about-cards {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 70px;
    padding: 0 24px;
}

.about-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-card__image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.about-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card__label {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.about-card__description {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #444;
}

/* ============================================================
   The Arsenal Section
   ============================================================ */

.about-arsenal {
    position: relative;
    background-image: url('https://res.cloudinary.com/duclio064/image/upload/q_auto,f_auto/about-us/arsenal_web.avif');
    background-size: cover;
    color: #fff;
    padding: 70px 24px;
    text-align: center;
    overflow: hidden;
    margin-top: 30px;
}

.about-arsenal__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-arsenal__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.about-arsenal__heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 24px;
    color: #fff;
}

.about-arsenal__body {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin: 0 auto 50px;
}

.about-arsenal__usps {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-arsenal__usp {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* ============================================================
   Solutions Grid
   ============================================================ */

.about-solutions {
    padding: 60px 24px 70px;
}

.about-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-solutions__item {
    display: flex;
    flex-direction: column;
}

.about-solutions__image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}

.about-solutions__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.about-solutions__item:hover .about-solutions__image-wrap img {
    transform: scale(1.03);
}

.about-solutions__title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 10px;
    color: #111;
}

.about-solutions__text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ── Contact CTA ─────────────────────────────────────────── */

.about-contact-cta {
    background: #eef0f7;
    padding: 60px 24px;
    text-align: center;
    margin: 50px 0 50px 0;
}

.about-contact-cta__text {
    margin: 0 0 6px;
    font-size: 2rem;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
}

.about-contact-cta__text:last-child {
    margin-bottom: 0;
}

.about-contact-cta__link {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.about-contact-cta__link:hover {
    color: #000;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .about-hero {
        min-height: 535px;
    }

    .about-hero__text {
        padding: 0 50px 30px;
        text-align: center;
        margin-top: auto;
    }

    .about-hero__title {
        font-size: 2.6rem;
    }

    .about-intro {
        padding: 0px 16px 0px;
    }

    .about-card__description {
        text-align: center;
    }

    .about-intro__heading {
        font-size: 2rem;
        font-weight: 400;
    }

    .about-cards {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 50px;
    }

    .about-card__image-wrap {
        height: 160px;
    }

    .about-arsenal {
        padding: 50px 16px;
        background-image: url('https://res.cloudinary.com/duclio064/image/upload/q_auto,f_auto/about-us/arsenal_app.avif');
    }

    .about-arsenal__usps {
        gap: 24px;
    }

    .about-arsenal__usp {
        min-width: 120px;
        max-width: 150px;
    }

    .about-solutions__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 28px 20px;
    }

    .about-solutions {
        padding: 10px 24px 70px;
    }

    .about-solutions__title {
        text-align: center;
    }

    .about-solutions__text {
        text-align: center;
    }

    .about-contact-cta__text {
        font-size: 1.2rem;
    }

    .about-contact-cta {
        margin: 20px 10px 20px 10px
    }
}