.main-footer {
    background: #0a0a0a;
    color: #e5e7eb;
    border-top: 1px solid rgba(227, 27, 35, 0.08);
}

.footer-top {
    padding: 40px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 30px;
}

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #E31B23, #FFD700);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #FFD700;
    padding-left: 6px;
    transform: translateX(2px);
}

.footer-col ul li a i {
    margin-right: 6px;
    color: #FFD700;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
    opacity: 1;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(227, 27, 35, 0.05);
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p span {
    color: #FFD700;
    font-weight: 600;
}

.footer-lisence {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(227, 27, 35, 0.05);
}

/* =========================
   SOCIAL ICON FOOTER - RED & GOLD
========================= */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(227, 27, 35, 0.08);
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(180deg, #5C0000 0%, #E31B23 50%, #5C0000 100%);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(227, 27, 35, 0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-top {
        padding: 40px 20px;
    }

    .footer-lisence {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .footer-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-lisence {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-lisence img {
        width: 100px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}