/* ================================================
   ALHIDAYA — Styles Footer
   ================================================ */

.alhidaya-footer {
    background: var(--blue-dark);
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-logo {
    filter: none;
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    height: 50px;
    transform: scale(2.0);
    transform-origin: left center;
}

.footer-desc {
    font-size: 13px;
    color: #6b8fa8;
    line-height: 1.65;
}

.footer-col-title {
    font-size: 11px;
    color: white;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #6b8fa8;
}

.footer-links a {
    color: #6b8fa8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #8ab4c8;
}

.pay-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #8ab4c8;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 12px;
    color: #3d5a6e;
}
@media (max-width: 576px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

