@charset "UTF-8";

/* ===================================
   Footer Component
=================================== */

.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

/* Left - Logo & Info */
.footer__left {
    flex-shrink: 0;
}

.footer__logo {
    margin-bottom: 25px;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__row {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* Right - Navigation */
.footer__right {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.footer__nav {
    display: flex;
    gap: 60px;
}

.footer__nav-group {
    min-width: 100px;
}

.footer__nav-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-list a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-list a:hover {
    color: #fff;
}

/* Bottom - Copyright */
.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
}

.footer__copyright {
    font-size: 13px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer__right {
        justify-content: flex-start;
    }
    
    .footer__nav {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer__nav-group {
        min-width: 120px;
    }
}
