﻿.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 3rem 0 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

    .footer-brand .brand-icon {
        color: #ef4444;
    }

.footer-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #cbd5e1;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    font-size: 1.25rem;
}

    .social-link:hover {
        background-color: #ef4444;
        color: #ffffff;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

    .footer-bottom-links a {
        color: #94a3b8;
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

/* Enhanced Footer Icons */
.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
}

.footer-feature {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .footer-feature:hover {
        background: var(--color-white);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.footer-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-feature-text {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-3xl);
}
