
.site-footer {
    background-color: #000000; /* Matches your bg-light/dark theme */
    padding: 4rem 2rem 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-glass-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(64, 64, 64, 0.3); /* Matches header border */
    border-radius: 25px; /* Matches header rounded feel */
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* --- Typography & Branding --- */
.footer-logo {
    display: block;
    width: 200px;
    margin-bottom: 1rem;
}

.footer-logo svg {
    fill: white;
    width: 100%;
    height: auto;
}

.footer-desc {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* --- Links & Navigation --- */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a, .legal-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-menu a:hover, .legal-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

/* --- Newsletter Form --- */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 64, 64, 0.5);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.footer-form input:focus {
    border-color: white;
}

.footer-form button {
    background: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s ease;
}

.footer-form button:hover {
    background: #e0e0e0;
}

/* --- Footer Bottom --- */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(64, 64, 64, 0.5), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

/* --- Responsive --- */
@media (max-width: 1049px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* Two columns instead of four */
        gap: 2.5rem;
    }

    .footer-glass-container {
        padding: 2rem;
    }
}

@media (max-width: 800px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo, .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
}
