/* Footer Styles */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer-about h3 {
    color: #f8b400;
    font-family: 'Moon Dance', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: #e2e2e2;
    font-family: "Zalando Sans", sans-serif;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f8b400;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #f8b400;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #e2e2e2;
    font-family: "Zalando Sans", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a i {
    color: #f8b400;
    font-size: 0.8rem;
}

.footer-links ul li a:hover {
    color: #f8b400;
    padding-left: 5px;
}

.footer-contact .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact .contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact .contact-info .contact-item i {
    color: #f8b400;
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-contact .contact-info .contact-text {
    flex: 1;
}

.footer-contact .contact-info .contact-text span {
    display: block;
    color: #f8b400;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-contact .contact-info .contact-text p {
    color: #e2e2e2;
    margin: 0;
    line-height: 1.6;
    font-family: "Zalando Sans", sans-serif;
}

.footer-contact .contact-info .contact-text a {
    color: #e2e2e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-info p a:hover {
    color: #f8b400;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: #e2e2e2;
    font-family: "Zalando Sans", sans-serif;
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-about h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-contact .contact-info p {
        justify-content: center;
    }
}