/* Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
    margin-bottom: 0;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
        margin-bottom: 0;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
} 