.footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 80px 0 40px;
    border-top: 4px solid #A91515;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-slogan {
    margin-top: 15px;
    font-size: 1rem;
    color: #888;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    flex: 2;
}

.footer-column {
    min-width: 180px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #A91515;
}

.footer-bottom {
    width: 100%;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright {
    color: #888;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.6rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #A91515;
}

.seo-toggle {
    background: transparent;
    border: 2px solid #A91515;
    color: #A91515;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.seo-toggle:hover {
    background: #A91515;
    color: white;
}

.seo-hidden {
    display: none;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
    font-size: 0.95rem;
}

.seo-hidden.open {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}