/* ========================================
   FOOTER STYLES
   ======================================== */
.main-footer {
    background-color: #000;
    color: white;
    padding: 60px 5% 30px;
}

.footer-container {
    max-width: 100%;
}

/* Top Row - 5 Columns */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Column 1: Brand */
.footer-brand {
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    fill: #bfc932;
}

/* Columns 2-5: Office Info */
.footer-office {
    gap: 12px;
}

.office-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.office-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    line-height: 1.5;
}

.office-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

/* Separator */
.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

/* Middle Section - Quick Links */
.footer-middle {
    margin-bottom: 30px;
}

.quick-links-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #bfc932;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #bfc932;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright,
.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-credit {
    font-weight: 500;
}

/* Mobile styles for Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 5% 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1;
    }

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

    .footer-copyright,
    .footer-credit {
        text-align: center;
    }
}
