.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logos {
    max-width: 300px;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-text p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-services ul,
.footer-solutions ul,
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-solutions li,
.footer-contact-info span {
    color: #a0a0a0;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.footer-services li::before,
.footer-solutions li::before {
    content: none;
}

.footer-services a,
.footer-solutions a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-services a::before,
.footer-solutions a::before {
    content: "→";
    position: absolute;
    left: 0;
    color: transparent;
    transition: color 0.3s ease;
}

.footer-services a:hover,
.footer-solutions a:hover {
    color: #ffffff;
}

.footer-services a:hover::before,
.footer-solutions a:hover::before {
    color: #f7941d;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-contact-info span {
    display: block;
    padding-left: 0;
}

.footer-contact-info a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #444;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logos {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-contact {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
} 