
/* ============== Footer Section ============== */
.footer-section {
    background-color: #005f69; 
    color: var(--light-color);
    padding: 30px 0 0;
}

.footer-section .container {
    max-width: 1700px;
}

.footer-content {
    padding: 30px 50px;
}

.footer-column {
    padding: 0 15px;
}

/* Footer Section Titles */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.5px;
}

/* Map Column Styles */
.map-wrapper iframe{
    height: 400px;
}

.map-column {
    position: relative;
}

.map-hover-card {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.map-info-card {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    top: 0;
    transform: translateY(-120%);
    text-align: center;
}

.map-info-card h3 {
    color: #005f69;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.map-info-card p {
    color: #333;
    font-size: 12px;
    margin-bottom: 8px;
}

.view-map-link {
    color: #005f69;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}

.circle-marker {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-marker img {
    width: 40px;
    height: auto;
}

/* Contact Column Styles */
.footer-contact-info {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    position: relative;
    padding-right: 15px;
}

/* UEH Links Column */
.footer-ueh-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ueh-logo-img {
    max-width: 500px;
    height: auto;
    display: block;
}

.footer-links-wrapper {
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
    column-gap: 30px;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Copyright Section */
.footer-bottom {
    background-color: #005f69;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: white;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content {
        padding: 20px 10px;
    }

    .ueh-logo-img {
        max-width: 300px;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links {
        columns: 1;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 20px 0 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-contact-info,
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .ueh-logo-img {
        max-width: 200px;
        margin: 0 auto 15px;
    }
    
    .footer-ueh-logo {
        margin-bottom: 15px;
        text-align: center;
    }

    .map-wrapper iframe {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 15px 10px;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-contact-info,
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .ueh-logo-img {
        max-width: 180px;
    }
}

footer a, footer a:hover {
    color: white !important;
    text-decoration: none !important;
}

    footer a:hover {
        text-decoration: underline !important;
    }