/* ============================================================
   KRBS Footer — Dark #08384F body + #F5F0EB-bordered copyright bar
   ============================================================ */

.site-footer {
    background: #08384F;
    color: #fff;
}

.site-footer .container {
    max-width: 1200px;
}

/* Footer Body */
.footer-body {
    padding: 72px 0 64px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 220px;
    gap: 48px;
    align-items: start;
}

/* Col 1: Brand */
.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(205, 210, 197, 0.8);
    margin: 0 0 24px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-icon:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

/* Col heading */
.footer-col-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
}

/* Nav list */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav-list li { margin: 0; }

.footer-nav-list a {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-nav-list a:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}

/* Col 4: Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(205, 210, 197, 0.8);
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 14px;
    transition: color 0.2s;
}

a.footer-contact-item:hover {
    color: #fff;
    text-decoration: none;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.65;
}

.footer-contact-item--address {
    cursor: default;
}

/* Copyright Bar */
.footer-bar {
    border-top: 1px solid rgba(245, 240, 235, 0.3);
    padding: 22px 0;
}

.footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(205, 210, 197, 0.65);
}

.footer-copyright a {
    color: rgba(205, 210, 197, 0.85);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copyright a:hover { color: #fff; }

.footer-legal-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal-menu li { margin: 0; }

.footer-legal-menu a {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-menu a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-body { padding: 48px 0 40px; }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bar-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal-menu {
        justify-content: center;
        gap: 16px;
    }
}
