.footer {
    background: linear-gradient(180deg, #1a0a10 0%, #0d0508 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-16);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(194, 24, 91, 0.3), rgba(230, 162, 60, 0.2), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
}

/* Brand */
.footer-brand-col {
    padding-right: var(--space-8);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-bottom: var(--space-4);
    text-decoration: none;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(194, 24, 91, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-fast) ease;
}

.footer-social-link:hover {
    color: var(--white);
    background: rgba(194, 24, 91, 0.15);
    border-color: rgba(194, 24, 91, 0.4);
    box-shadow: 0 0 16px rgba(194, 24, 91, 0.15);
}

/* Social column layout */
.footer-social-col {
    flex-direction: column;
    gap: var(--space-3);
}

.footer-social-link-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--duration-fast) ease;
    padding: 4px 0;
}

.footer-social-link-row:hover {
    color: var(--rani-pink-light);
}

.footer-social-link-row svg {
    flex-shrink: 0;
}

/* Link Columns */
.footer-col-title {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--saffron-gold);
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    list-style: none;
    /* Reset if needed */
    padding: 0;
    margin: 0;
}

.footer-links li a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast) ease;
    text-decoration: none;
}

.footer-links li a:hover {
    color: var(--rani-pink-light);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-5) 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
}

.footer-made-with {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
}