/* Footer Component */

.footer-wrapper {
    position: relative;
}

/* Illustrations wrapper */
.footer-illustrations {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

/* Car Illustration - Part 1 (Above Footer) */
.footer-car-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    background: white;
    z-index: 2;
}

.footer-car-illustration img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

/* Car Illustration - Part 2 (Mask Group) */
.footer-mask-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #1a1a1a;
}

.footer-mask-illustration img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

/* Main Footer */
.footer-main {
    background: #1a1a1a;
    color: white;
    padding-top: 20px;
    position: relative;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer Heading */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-divider {
    color: #d4a017;
    font-size: 24px;
    font-weight: 400;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #9CA3AF;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a:hover {
    color: #d4a017;
}

.link-bullet {
    color: #d4a017;
    font-size: 8px;
}

/* Contact Items */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid #d4a017;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #d4a017;
    font-size: 16px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: #9CA3AF;
    font-size: 13px;
}

.contact-value {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-tiktok {
    background: #000000;
}

.social-facebook {
    background: #1877F2;
}

.social-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon i {
    color: white;
    font-size: 20px;
}

/* Footer Bottom */
.footer-bottom {
    background: #0f0f0f;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9CA3AF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4a017;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .social-icons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}