/* ============================================================
   VMS FOOTER SYSTEM STYLES
   Isolated stylesheet for maximum mobile/tablet responsiveness
============================================================ */

.main-footer {
    background-color: #0ea5e9; /* Sky Blue background */
    color: #ffffff; /* White text for maximum contrast and readability */
    padding: 50px 5% 20px;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid #0284c7; /* Darker blue divider top border line */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; /* Optimized 3-column layout */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #ffffff; /* White headings for premium layout */
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2.5px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-shadow: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.footer-col ul li a:hover {
    color: #e0f2fe; /* Light sky blue hover */
    transform: translateX(4px);
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: #ffffff;
    color: #0ea5e9;
    transform: translateY(-3px);
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand-title {
    color: #ffffff; /* White title */
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-shadow: none;
}

.footer-contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #ffffff; /* White icons */
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #e0f2fe !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES FOR FOOTER
============================================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-col.brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col.brand-col {
        grid-column: span 1;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col h3 {
        width: 100%;
        text-align: center;
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-brand-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .footer-brand-title {
        text-align: center;
    }
    
    .footer-contact-list .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
