/* Footer */
.footer {
    background-color: #0f172a;
    /* Deep Navy - Always Dark */
    color: #94a3b8;

    /* Muted Text */
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-desc {
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-subtext {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4,
.footer-cta h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #3b82f6;
    /* Accent Blue */
    transform: translateX(2px);
}

.footer-cta p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-nav {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
        margin-top: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-form {
        flex-direction: column;
    }

    .footer-input {
        width: 100%;
    }

    .footer-cta .btn {
        width: 100%;
    }
}