/* footer.css - Footer styles */
.site-footer {
    background: #0f1f2f;
    color: #d5dde8;
    padding: 28px 0 14px;
    margin-top: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 20px;
    padding-bottom: 12px;
}

.footer-brand .logo {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 6px;
}

.footer-desc {
    font-size: 0.85rem;
    color: #b6c6d9;
    max-width: 180px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-col ul li a {
    color: #b6c6d9;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid #2a4057;
    padding-top: 14px;
    font-size: 0.75rem;
    text-align: center;
    color: #8ea2b8;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 6px 12px;
    border-radius: 40px;
    border: none;
    flex: 1;
    min-width: 100px;
}

.newsletter-form button {
    background: #1e5b9c;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0 16px;
    font-weight: 500;
    cursor: pointer;
}

/* Responsive Footer */
@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}