/* ==========================================================================
   Footer — Matched to staging site.css
   ========================================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    background-color: #0a192f;
    color: var(--color-white);
    padding: 60px 0 0;
    border-top: 3px solid var(--color-red);
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* Footer brand column */
.footer-brand {
    padding-right: 16px;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: var(--space-sm);
}

.footer-brand .license {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: var(--space-md);
}

/* Social links */
.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background-color: var(--color-red);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: var(--color-white);
}

/* Footer column headings */
.footer-column h3 {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s, transform 0.15s;
    display: inline-block;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Contact column */
.footer-contact .phone {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
    transition: color 0.2s;
    font-variant-numeric: tabular-nums;
}

.footer-contact .phone:hover {
    color: var(--color-red);
}

.footer-contact .hours {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom ul {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-contact .phone {
        font-size: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
