.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 60px 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.address-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: #fff;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 0.95rem;
}

.location-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.location-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.footer-social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #b0b0b0;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo-text {
        font-size: 1.3rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-description,
    .address-item {
        font-size: 0.9rem;
    }

    .location-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }
}
