/* Footer Styles */
footer {
    background: #800000;
    color: #fff;
    border-top: 1px solid rgba(254, 196, 71, 0.3);
}

.main-footer {
    padding: 40px 0 20px;
    background: #800000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-info h2 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.6;
}

.contact-list strong {
    color: #fff;
    font-weight: 700;
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bottom-footer {
    background: #a01610;
    padding: 15px 0;
    border-top: 1px solid rgba(254, 196, 71, 0.3);
}

.bottom-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online-stats {
    color: #fff;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #D01E12;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #D01E12;
    color: #fff;
    transform: translateY(-3px);
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .bottom-footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}