.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #e1e1e1;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.footer-links h4, 
.footer-contact h4 {
    color: var(--bg-white);
    margin-bottom: 30px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 36px;
    height: 36px;
    background: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
