.footer-main {
    background: #003366;
    /* Dark Blue Background */
    padding: 60px 0;
    border-top: none;
    color: #e0e0e0;
    font-size: 14px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    /* White Text */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    /* Light Gray Link */
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
    /* White on Hover */
    padding-left: 5px;
}

.footer-bottom {
    background: #002244;
    /* Darker bottom */
    padding: 20px 0;
    font-size: 13px;
    color: #8899ac;
}

.footer-socials {
    display: inline-flex;
    gap: 6px;
}

.btn-footer-callback {
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    display: inline-block;
}

.btn-footer-callback:hover {
    background: var(--accent-hover);
    color: #fff;
}

.footer-marketplaces {
    background: #0A1E3D;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marketplaces-content {
    max-width: 900px;
    margin: 0 auto;
}

.marketplaces-title {
    font-size: 14px;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.marketplaces-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-marketplaces .btn-marketplace {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border-radius: 0 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    color: #fff !important;
    transition: filter 0.2s ease;
    border: none;
}

.footer-marketplaces .btn-marketplace:hover {
    filter: brightness(0.9);
    text-decoration: none !important;
}

.footer-marketplaces .btn-marketplace .mp-name {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .footer-marketplaces .marketplaces-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .footer-marketplaces .btn-marketplace {
        width: auto;
        min-width: 180px;
        flex: 1;
        max-width: 33.333%;
    }
}

/* Mobile Footer */
@media (max-width: 767px) {
    .footer-main {
        padding: 30px 0;
    }

    .footer-heading {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-bottom .text-md-right {
        text-align: center !important;
        margin-top: 15px;
    }

    .footer-socials {
        text-align: center;
        margin-top: 15px;
    }

    .footer-socials a {
        margin: 0 5px;
    }

    .btn-footer-callback {
        font-size: 12px;
        padding: 6px 15px;
    }
}