/**
 * Footer Styles
 * Modern, organized footer with multi-column layout
 */

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    padding: 4rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
}

.footer-tagline {
    color: #1a1a1a !important;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    text-align: left;
}

/* Company Info Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.footer-info-item {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.footer-email-link {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: #4f46e5;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.footer-links li {
    margin: 0;
    text-align: left;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-block;
    text-align: left;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Social Links */
.footer-social {
    margin-top: 0.5rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.footer-social-link:hover {
    background-color: #6366f1;
    color: white;
    transform: translateY(-3px);
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    text-align: left;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    text-align: left;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }
}
