/* Global Footer */
.footer {
    background: var(--primary-black);
    padding: 80px 20px 20px;
    color: var(--text-white);
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}


.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}
