/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
    color: #F8F9FA;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F8F9FA;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B8C5D6;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B8C5D6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-cta-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.footer-cta-button:hover {
    background: #5568d3;
}

.footer-bottom {
    border-top: 1px solid rgba(184, 197, 214, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #B8C5D6;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }
}
