.glass-footer {
    width: 100%;
    background: rgba(255,255,255,0.18);
    border-top: 1.5px solid rgba(30,58,138,0.13);
    box-shadow: 0 8px 32px 0 rgba(30,41,59,0.12), 0 0 0 1px rgba(30,58,138,0.10) inset;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    color: var(--text-primary, #1e293b);
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    transition: background 0.3s;
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #0d9488, #1e40af, #0891b2);
    opacity: 0.7;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem 2rem 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 260px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 1.2rem 1rem 1rem 1rem;
    box-shadow: 0 2px 12px 0 rgba(30,41,59,0.06);
    text-align: center;
    border: 1px solid rgba(30,58,138,0.08);
}

.footer-section h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary, #1e3a8a);
    letter-spacing: 0.01em;
}

.coming-soon {
    font-size: 0.85em;
    color: var(--accent-secondary, #0d9488);
    font-weight: 400;
    opacity: 0.7;
}

.footer-section p {
    color: var(--text-secondary, #475569);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

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

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

.footer-links a {
    color: var(--text-secondary, #475569);
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s, text-shadow 0.2s;
    position: relative;
    padding-left: 0.1em;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--accent-secondary, #0d9488);
    text-shadow: 0 2px 8px rgba(13,148,136,0.08);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--accent-primary, #1e3a8a);
    font-size: 1.3rem;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    padding: 0.45em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(30,41,59,0.08);
    border: 1px solid rgba(30,58,138,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover, .social-links a:focus {
    background: linear-gradient(135deg, #1e3a8a 60%, #0d9488 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(13,148,136,0.18);
}

.footer-bottom {
    text-align: center;
    padding: 1.2rem 2rem 1.5rem 2rem;
    font-size: 0.98rem;
    color: var(--text-muted, #64748b);
    background: rgba(255,255,255,0.10);
    border-top: 1px solid rgba(30,58,138,0.08);
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 1rem 1rem 1rem;
        align-items: center;
    }
    .footer-section {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Dark mode support */
[data-theme="dark"] .glass-footer,
[data-bs-theme="dark"] .glass-footer {
    background: rgba(30,41,59,0.70);
    color: #f1f5f9;
    border-top: 1.5px solid rgba(59,130,246,0.18);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22), 0 0 0 1px rgba(59,130,246,0.10) inset;
}

[data-theme="dark"] .glass-footer::before,
[data-bs-theme="dark"] .glass-footer::before {
    background: linear-gradient(90deg, #3b82f6, #14b8a6, #1e40af, #0891b2);
    opacity: 0.5;
}

[data-theme="dark"] .footer-section {
    background: rgba(30,41,59,0.30);
    border: 1px solid rgba(59,130,246,0.10);
    box-shadow: 0 2px 12px 0 rgba(20,184,166,0.06);
}

[data-theme="dark"] .footer-section h4 {
    color: #3b82f6;
}

[data-theme="dark"] .footer-section p,
[data-theme="dark"] .footer-links a {
    color: #cbd5e1;
}

[data-theme="dark"] .footer-links a:hover,
[data-theme="dark"] .footer-links a:focus {
    color: #14b8a6;
    text-shadow: 0 2px 8px rgba(20,184,166,0.10);
}

[data-theme="dark"] .social-links a {
    color: #3b82f6;
    background: rgba(30,41,59,0.25);
    border: 1px solid rgba(59,130,246,0.13);
}

[data-theme="dark"] .social-links a:hover,
[data-theme="dark"] .social-links a:focus {
    background: linear-gradient(135deg, #3b82f6 60%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(20,184,166,0.18);
}

[data-theme="dark"] .footer-bottom {
    background: rgba(30,41,59,0.18);
    color: #64748b;
    border-top: 1px solid rgba(59,130,246,0.10);
}