/* FOOTER */
.footer-section {
    background-color: #222;
    color: #fff;
    padding: 80px 5% 40px;
    font-size: 0.95rem;
    width: 100%;
    clear: both;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFC300;
}

.footer-description {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FFC300;
    color: #222;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #FFC300;
}

.footer-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #FFC300;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-links, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    padding-bottom: 5px;
}

.footer-links a:hover {
    color: #FFC300;
}

.footer-links a:hover:before {
    content: '→ ';
    position: absolute;
    left: -20px;
    color: #FFC300;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #ccc;
}

.contact-info svg {
    margin-right: 12px;
    min-width: 18px;
    color: #FFC300;
    margin-top: 3px;
}

.contact-info li a,
.contact-info li span {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    word-break: break-word;
    line-height: 1.5;
}

.contact-info a:hover {
    color: #FFC300;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.legal-links a:hover {
    color: #FFC300;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-container {
        justify-content: space-around;
    }
    
    .footer-column {
        flex: 1 1 calc(33.333% - 40px);
        max-width: calc(33.333% - 40px);
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 820px) {
    .footer-section {
        padding: 60px 5% 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-column {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-container {
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
        align-items: center;
        text-align: left;
    }
    
    .footer-links a:hover:before {
        display: none;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}