/* ====================================
   14. FOOTER
   ==================================== */
footer {
    background:
        radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 30%),
        linear-gradient(135deg, #10283c 0%, #0f4c5c 55%, #14746f 100%);
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0.8rem;
    transition: var(--transition-base);
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.58);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent);
}
