/* ===== FOOTER (PANDAPETIR88 STYLE) ===== */

.main-footer {
    background: #0a0a0a;
    border-top: 2px solid #923489;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #923489;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #923489;
}

.footer-section ul li a i {
    font-size: 16px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #923489;
    border-color: #923489;
    color: #000;
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: #923489;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-payment {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-payment img {
    height: 30px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.footer-payment img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 100px;
        margin-bottom: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-payment {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-payment img {
        height: 25px;
    }
}
