/* ========== FOOTER ========== */
/* Improve typography spacing */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li {
    letter-spacing: 0.2px;
}

.footer-title,
.footer-left h4,
.footer-middle h4,
.footer-right h4 {
    letter-spacing: 0.7px;
}

.site-footer {
    background-color: #2B3A55;
    color: #D6EAF8;
    padding: 30px 0 15px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Footer Container */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    margin-bottom: 20px;
}

/* ========== LEFT COLUMN ========== */
.footer-left {
    flex: 1;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #F9E79F;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #D6EAF8;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #F9E79F;
    margin-bottom: 12px;
}

.footer-left strong {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-left u {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ========== MIDDLE COLUMN ========== */
.footer-middle {
    flex: 1;
}

.footer-middle h4 {
    font-size: 16px;
    font-weight: 700;
    color: #F9E79F;
    margin-bottom: 12px;
}

/* ========== MAP LINKS ========== */
.map-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    text-decoration: none;
    color: #D6EAF8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);

    width: 220px; /* fixed width to make both bubbles same size */
    /* content stays left-aligned, no justify-content */
}

.map-link:hover {
    background-color: rgba(241, 196, 15, 0.2);
    color: #F1C40F;
    transform: translateY(-3px);
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 4px 12px rgba(241, 196, 15, 0.2);
}

.map-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ========== RIGHT COLUMN ========== */
.footer-right {
    flex: 1;
}

.footer-right h4 {
    font-size: 16px;
    font-weight: 700;
    color: #F9E79F;
    margin-bottom: 12px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.social-icons a:hover {
    background-color: rgba(241, 196, 15, 0.2);
    transform: translateY(-3px);
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 4px 12px rgba(241, 196, 15, 0.2);
}

.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-links li {
    margin: 0;
}

.quick-links a {
    color: #D6EAF8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-links a:hover {
    color: #F1C40F;
    padding-left: 5px;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #95A5A6;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .footer-container {
        gap: 30px;
        padding: 0 40px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-right h4,
    .footer-middle h4 {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 15px;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .footer-left {
        grid-column: auto;
    }

    .footer-middle {
        grid-column: auto;
    }

    .footer-right {
        grid-column: auto;
    }

    .footer-left p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .map-links {
        gap: 10px;
    }

    .map-link {
        padding: 10px 12px;
    }

    .map-link img {
        width: 20px;
        height: 20px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons a img {
        width: 24px;
        height: 24px;
    }

    .quick-links {
        gap: 8px;
    }

    .quick-links a {
        font-size: 13px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-right h4,
    .footer-middle h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
    }
}