/* ============================================ */
/* FOOTER */
/* ============================================ */

footer {
    background: var(--primary-navy);
    padding: 4rem 5% 2rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 20%, var(--logo-blue) 50%, var(--gold-accent) 50%, transparent 80%) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

/* ============================================ */
/* FOOTER BRAND */
/* ============================================ */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    transition: transform 0.4s ease;
}

.footer-logo:hover {
    transform: rotate(5deg) scale(1.05);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--soft-gold);
    line-height: 1.8;
    opacity: 0.95;
}

.footer-brand p strong {
    color: var(--cream);
    font-weight: 700;
}

/* ============================================ */
/* FOOTER SECTIONS */
/* ============================================ */

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--logo-blue), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* ============================================ */
/* FOOTER LINKS */
/* ============================================ */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold-accent);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-links a:hover {
    color: var(--logo-blue);
    transform: translateX(5px);
}

.footer-links li:not(:has(a)) {
    color: var(--soft-gold);
    opacity: 0.9;
}

/* ============================================ */
/* FOOTER BOTTOM */
/* ============================================ */

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(25, 118, 210, 0.2);
    color: var(--soft-gold);
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================ */
/* RESPONSIVE FOOTER */
/* ============================================ */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        border-bottom: 1px solid rgba(25, 118, 210, 0.2);
        padding-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 3rem 5% 1.5rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}