/* ===============================
   SIMPLE PREMIUM FOOTER
================================ */

.footer-dark {
    background: #1f2937;
    color: #d1d5db;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 60px 0 25px;
}

    /* Grid */
    .footer-dark .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    /* Headings */
    .footer-dark h5 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 14px;
        color: #ffffff;
    }

    /* Links */
    .footer-dark a {
        display: block;
        font-size: 14px;
        color: #cbd5e1;
        text-decoration: none;
        margin-bottom: 8px;
        transition: color 0.2s ease;
    }

        .footer-dark a:hover {
            color: #f59a2a;
        }

    /* Text */
    .footer-dark p {
        font-size: 14px;
        line-height: 1.6;
        color: #cbd5e1;
    }

    /* Logo */
    .footer-dark .footer-logo {
        width: 150px;
        margin-bottom: 16px;
    }

/* Bottom bar */
.footer-bottom-dark {
    border-top: 1px solid #334155;
    margin-top: 40px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
}

/* Meta */
.footer-meta {
    display: flex;
    gap: 12px;
}

    .footer-meta span {
        border: 1px solid #475569;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 13px;
        color: #e5e7eb;
    }

/* Responsive */
@media (max-width: 992px) {
    .footer-dark .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-dark .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-dark {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
