.footer {
    background: #0d1b2a;
    padding: 40px 20px 20px;
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffcc00;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.footer-brand .footer-logo {
    color: #ffcc00;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand .footer-logo i {
    font-size: 28px;
}

.footer-brand .footer-tagline {
    font-size: 14px;
    color: #fff;
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.footer-social .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #142c44;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    background:
        #22c55e;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #142c44;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap:
            25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        order: 1;
        text-align: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section:nth-child(2) {
        order: 2;
    }

    .footer-section:nth-child(3) {
        order: 3;
    }

    .footer-section:nth-child(4) {
        order: 4;
    }

    .footer-section:nth-child(5) {
        order:
            5;
    }

    .footer-social {
        grid-column: 1 / -1;
        order: 6;
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

@media(max-width: 600px){
    .footer {
        display: none;
    }
}