/* --- Footer Styles --- */
.main-footer {
    background-color: #0e2b5c; /* Theme Blue */
    color: #ffffff;
    padding: 80px 0 0;
    font-family: 'Barlow', sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-title {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Orange underline for titles */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff5e14;
}

.footer-about {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    padding-right: 30px;
}

/* Links and Lists */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff5e14;
    padding-left: 5px;
}

/* Contact Details Icons */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: #ff5e14;
    margin-right: 15px;
    margin-top: 5px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #0a2147; /* Slightly darker blue */
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}