﻿/* =============================================================
   Clean Crew Jamaica
   About Page

   About-page-specific styles only.
   Shared site styles belong in ccj-core.css.
   Header styles belong in ccj-header.css.
   Footer styles belong in ccj-footer.css.
   ============================================================= */
/* =============================================================
   Values Feature Image
   ============================================================= */

/*
 * Aligns the working photo with the values card grid below it.
 */
.ccj-values-image {
    width: min(1220px, calc(100% - 120px));
    margin: 50px auto 55px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(10, 31, 68, 0.12);
}

    .ccj-values-image img {
        display: block;
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
    }

.ccj-values-image-caption {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    background: #ffffff;
}

    .ccj-values-image-caption strong {
        flex-shrink: 0;
        color: #061a40;
        font-size: 16px;
        font-weight: 800;
    }

    .ccj-values-image-caption span {
        color: #61708f;
        font-size: 15px;
        line-height: 1.6;
    }

/* =============================================================
   About Hero
   ============================================================= */

.ccj-about-hero {
    min-height: 560px;
    padding-top: 160px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 12, 35, 0.78), rgba(0, 12, 35, 0.42)), url("../images/service-industrial.png") center / cover no-repeat;
}

.ccj-about-hero-content {
    width: min(1100px, calc(100% - 120px));
    margin: 0 auto;
}

    .ccj-about-hero-content span,
    .ccj-about-story-copy span,
    .ccj-mission-card span,
    .ccj-about-cta-card span {
        display: block;
        margin-bottom: 14px;
        color: #4f8cff;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .ccj-about-hero-content h1 {
        max-width: 820px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(44px, 5vw, 78px);
        line-height: 1.05;
        letter-spacing: -0.06em;
        font-weight: 900;
    }

    .ccj-about-hero-content p {
        max-width: 650px;
        margin: 28px 0 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 20px;
        line-height: 1.65;
        font-weight: 500;
    }


/* =============================================================
   Company Story
   ============================================================= */

.ccj-about-story {
    padding: 110px 0;
    background: #ffffff;
}

.ccj-about-story-container {
    width: min(1450px, calc(100% - 120px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.ccj-about-story-image {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(10, 31, 68, 0.16);
}

    .ccj-about-story-image img {
        width: 100%;
        height: 560px;
        display: block;
        object-fit: cover;
    }

.ccj-about-story-copy h2 {
    margin: 0;
    color: #071a3d;
    font-size: clamp(34px, 3.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.ccj-about-story-copy p {
    margin: 24px 0 0;
    color: var(--ccj-muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}


/* =============================================================
   Mission
   ============================================================= */

.ccj-mission-section {
    padding: 0 0 110px;
    background: #ffffff;
}

.ccj-mission-card {
    width: min(1450px, calc(100% - 120px));
    margin: 0 auto;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
    border-radius: 34px;
    background: var(--ccj-soft);
}

    .ccj-mission-card h2 {
        margin: 0;
        color: #071a3d;
        font-size: clamp(34px, 3.5vw, 56px);
        line-height: 1.08;
        letter-spacing: -0.05em;
        font-weight: 900;
    }

    .ccj-mission-card p {
        margin: 24px 0 0;
        color: var(--ccj-muted);
        font-size: 18px;
        line-height: 1.65;
        font-weight: 500;
    }


/* =============================================================
   Company Values
   ============================================================= */

.ccj-values-section {
    padding: 110px 0;
    background: var(--ccj-soft);
}

.ccj-values-grid {
    width: min(1450px, calc(100% - 120px));
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ccj-value-card {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(10, 31, 68, 0.08);
}

    .ccj-value-card i {
        width: 58px;
        height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        color: var(--ccj-blue);
        font-size: 30px;
        border-radius: 18px;
        background: rgba(0, 87, 231, 0.08);
    }

    .ccj-value-card h3 {
        margin: 0 0 10px;
        color: #071a3d;
        font-size: 22px;
        font-weight: 900;
    }

    .ccj-value-card p {
        margin: 0;
        color: var(--ccj-muted);
        font-size: 15px;
        line-height: 1.55;
        font-weight: 500;
    }


/* =============================================================
   About Page Call to Action
   ============================================================= */

.ccj-about-cta {
    padding: 110px 0;
    background: #ffffff;
}

.ccj-about-cta-card {
    width: min(1200px, calc(100% - 120px));
    margin: 0 auto;
    padding: 70px;
    text-align: center;
    border-radius: 34px;
    background: linear-gradient(90deg, rgba(6, 26, 64, 0.96), rgba(0, 87, 231, 0.86)), url("../images/ccos-zippy-truck.png") center / cover no-repeat;
    box-shadow: 0 30px 90px rgba(6, 26, 64, 0.24);
}

    .ccj-about-cta-card h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(34px, 3.5vw, 56px);
        line-height: 1.08;
        letter-spacing: -0.05em;
        font-weight: 900;
    }

    .ccj-about-cta-card p {
        max-width: 720px;
        margin: 24px auto 0;
        color: rgba(255, 255, 255, 0.84);
        font-size: 18px;
        line-height: 1.65;
        font-weight: 500;
    }

    .ccj-about-cta-card span {
        color: #ffffff;
    }

.ccj-about-cta-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 18px;
}


/* =============================================================
   About Page Responsive Layout
   ============================================================= */

@media (max-width: 1024px) {
    .ccj-about-story-container,
    .ccj-mission-card {
        grid-template-columns: 1fr;
    }

    .ccj-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .ccj-about-hero {
        min-height: 520px;
        padding-top: 130px;
    }

    .ccj-about-hero-content,
    .ccj-about-story-container,
    .ccj-mission-card,
    .ccj-values-grid,
    .ccj-about-cta-card {
        width: calc(100% - 32px);
    }

    .ccj-about-story,
    .ccj-values-section,
    .ccj-about-cta {
        padding: 72px 0;
    }

    .ccj-mission-section {
        padding-bottom: 72px;
    }

    .ccj-about-story-image img {
        height: 360px;
    }

    .ccj-mission-card,
    .ccj-about-cta-card {
        padding: 38px 26px;
        border-radius: 26px;
    }

    .ccj-values-grid {
        grid-template-columns: 1fr;
    }

    .ccj-about-cta-actions {
        flex-direction: column;
    }

        .ccj-about-cta-actions .ccj-primary-btn,
        .ccj-about-cta-actions .ccj-secondary-btn {
            width: 100%;
        }
}
