/* --- NEW COMBINED FOOTER STYLE --- */
.main-footer {
    background-color: var(--secondary-blue);
    color: white;
    padding: 50px 30px 20px 30px;
    font-family: 'Sarabun', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    /* Left side is wider than map side */
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-brand {
    color: var(--accent-orange);
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    /* font-weight: bold; */
    margin-bottom: 5px;
}

.university-name {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-details p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.6;
    color: white;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-orange);
}

.footer-map {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.75rem;
}

/* Responsive Footer for Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack on top of each other */
        text-align: left;
    }
}

#fix_c {
    color: white;
}