/* ═══════════════════════════════════════════════════════════════
   WKC Site Footer — shared across all public pages
   ═══════════════════════════════════════════════════════════════ */

.wkc-footer {
    position: relative;
    z-index: 1;
    background: #0C3260;
    color: #fff;
    margin-top: 0;
}

.wkc-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 0;
    padding: 48px 24px 40px;
}

.wkc-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.wkc-footer__logo {
    width: 88px;
    height: auto;
    flex-shrink: 0;
}

.wkc-footer__brand p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 4px;
}

.wkc-footer__col {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.wkc-footer__col:last-child {
    border-right: none;
}

.wkc-footer__col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    color: #fff;
}

.wkc-footer__col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s;
}

.wkc-footer__col a:hover {
    color: #2DB84E;
}

.wkc-footer__socials {
    display: grid;
    grid-template-columns: repeat(3, 44px);
    gap: 10px;
}

.wkc-footer__social {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.wkc-footer__social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wkc-footer__social--yt { background: #FF0000; }
.wkc-footer__social--fb { background: #1877F2; }
.wkc-footer__social--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.wkc-footer__social--tt { background: #000; }
.wkc-footer__social--x { background: #000; font-size: 14px; }
.wkc-footer__social--in { background: #0A66C2; font-size: 12px; }

.wkc-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    text-align: center;
}

.wkc-footer__bar p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Legacy alias — old pages may reference wkc-site-footer */
footer.wkc-site-footer {
    background: #0C3260;
}

@media (max-width: 1024px) {
    .wkc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
        padding: 40px 24px 32px;
    }

    .wkc-footer__brand {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 28px;
    }

    .wkc-footer__col {
        border-right: none;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .wkc-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 20px 28px;
    }

    .wkc-footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wkc-footer__socials {
        justify-content: center;
        margin: 0 auto;
    }
}
