/* Mega Footer - Dark Navy (matches hero/header) */

.mega-footer {
    background: linear-gradient(135deg, #0d1525 0%, #1a2a4a 50%, #0a1628 100%);
    padding: 80px 0 40px;
}

.mega-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Footer Columns Grid */
.mega-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

/* Column */
.mega-footer-column {
    display: flex;
    flex-direction: column;
}

.mega-footer-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: 0.3px;
}

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

.mega-footer-links li {
    margin-bottom: 12px;
}

.mega-footer-links a {
    color: #b8bcc8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.mega-footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Logo/Brand Column */
.mega-footer-brand {
    margin-bottom: 24px;
}

.mega-footer-brand img {
    height: 32px;
    width: auto;
}

.mega-footer-brand-text {
    color: #b8bcc8;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

/* Contact Info in Footer */
.mega-footer-contact {
    margin-top: 16px;
}

.mega-footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8bcc8;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.mega-footer-contact a:hover {
    color: #ffffff;
}

.mega-footer-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Bottom Bar */
.mega-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

/* Social Icons */
.mega-footer-social {
    display: flex;
    gap: 20px;
}

.mega-footer-social a {
    color: #b8bcc8;
    transition: color 0.2s ease;
}

.mega-footer-social a:hover {
    color: #ffffff;
}

.mega-footer-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Copyright */
.mega-footer-copyright {
    color: #6b7280;
    font-size: 13px;
}

.mega-footer-copyright a {
    color: #6b7280;
    text-decoration: none;
}

.mega-footer-copyright a:hover {
    color: #b8bcc8;
}

/* Responsive */
@media (max-width: 1024px) {
    .mega-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mega-footer {
        padding: 60px 0 32px;
    }

    .mega-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .mega-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .mega-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mega-footer-heading {
        margin-bottom: 16px;
    }
}
