/* ============================
   Newsletter Bar
   ============================ */

.newsletter-bar {
    background: var(--primary-navy, #1a237e);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.newsletter-form .form-control {
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
}

/* ============================
   Footer
   ============================ */

.landing-footer {
    background: #f8f9fa;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.375rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-navy, #1a237e);
}

/* ============================
   Footer Responsive
   ============================ */

@media (max-width: 767px) {
    .newsletter-bar {
        padding: 1rem;
        text-align: center;
    }

    .newsletter-bar .d-flex {
        flex-direction: column;
        gap: 0.75rem;
    }
}
