/* Main Footer Styles */

.main-footer {
    background: #000;
    border-top: 3px solid #1a1a1a;
    color: #ccc;
    margin-top: 80px;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e01b1b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

.footer-copyright p {
    margin: 0;
}

.footer-branding {
    font-size: 12px;
    color: #666;
}

.footer-branding p {
    margin: 0;
}

/* Social bar */
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: -10px 0 30px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    background: #222;
    border: 1px solid #333;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    font-weight: 700;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: #444;
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.instagram:hover { background: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90% ); }
.social-icon.youtube:hover { background: #ff0000; }

/* Responsive */
@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 15px;
        margin-top: 50px;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
