﻿.site-footer {
    background-color: #0b1f4d;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-logo {
    width: 95px;
    margin-bottom: 15px;
    background: white;
    padding: 6px;
    border-radius: 8px;
}

.footer-brand h5,
.footer-menu h6,
.footer-contact h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p,
.footer-contact p {
    color: #d8def0;
    margin-bottom: 8px;
}

.footer-menu a {
    display: block;
    color: #d8def0;
    text-decoration: none;
    margin-bottom: 8px;
}

    .footer-menu a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 35px;
    padding-top: 15px;
    text-align: center;
    color: #d8def0;
    font-size: 14px;
}

/* Mobile Footer Fix */
@media (max-width: 768px) {
    .footer {
        padding: 60px 22px 28px;
        overflow: hidden;
    }

    .footer-content,
    .footer-container,
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 38px;
        width: 100%;
        max-width: 100%;
    }

    .footer-column,
    .footer-section {
        width: 100%;
        max-width: 100%;
    }

    .footer-logo img {
        max-width: 140px;
        height: auto;
    }

    .footer h3,
    .footer h4 {
        font-size: 1.35rem;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .footer p,
    .footer a,
    .footer li {
        font-size: 1rem;
        line-height: 1.7;
        color: #dbeafe;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .footer ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer li {
        margin-bottom: 12px;
    }

    .footer a {
        text-decoration: none;
    }

        .footer a:hover {
            color: #ff6b00;
        }

    .footer-contact,
    .contact-info {
        display: grid;
        gap: 12px;
    }

        .footer-contact a,
        .contact-info a {
            display: inline-block;
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        text-align: center;
    }

        .footer-bottom p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }
}
