﻿/* =============================================================
   Clean Crew Jamaica
   Footer

   Shared footer styles used across all public-facing pages.
   ============================================================= */


/* =============================================================
   Footer Layout
   ============================================================= */

.ccj-footer {
    padding: 80px 0 28px;
    color: #ffffff;
    background: var(--ccj-navy);
}

.ccj-footer-container {
    width: min(1450px, calc(100% - 120px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 60px;
}


/* =============================================================
   Footer Brand
   ============================================================= */

.ccj-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .ccj-footer-logo img {
        width: 54px;
        height: auto;
    }

    .ccj-footer-logo strong {
        display: block;
        color: var(--ccj-red);
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

        .ccj-footer-logo strong span {
            color: #4f8cff;
        }

    .ccj-footer-logo small {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.2em;
    }

.ccj-footer-brand p {
    max-width: 390px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}


/* =============================================================
   Footer Columns
   ============================================================= */

.ccj-footer-column h4 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.ccj-footer-column a,
.ccj-footer-column span {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    text-decoration: none;
}

    .ccj-footer-column a:hover,
    .ccj-footer-column a:focus {
        color: #ffffff;
        text-decoration: none;
    }


/* =============================================================
   Footer Bottom
   ============================================================= */

.ccj-footer-bottom {
    width: min(1450px, calc(100% - 120px));
    margin: 60px auto 0;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}


/* =============================================================
   Footer Responsive Layout
   ============================================================= */

@media (max-width: 900px) {
    .ccj-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .ccj-footer {
        padding-top: 64px;
    }

    .ccj-footer-container,
    .ccj-footer-bottom {
        width: calc(100% - 32px);
    }

    .ccj-footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ccj-footer-bottom {
        margin-top: 44px;
    }
}
