.glass-footer {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    width: 100%;
    margin-top: 50px; /* Space from the form */
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-links {
    margin-bottom: 10px;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        padding: 5px 10px;
    }

        .footer-links a:hover {
            color: #fdbb2d; /* Matches your gradient accent */
        }

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Mobile Footer Fix */
@media (max-width: 600px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .divider {
        display: none; /* Hide pipes on mobile stack */
    }

    .glass-footer {
        padding: 30px 0;
    }
}
