/* Footer Compact - ONLY reduces vertical spacing and maximizes width */
/* Does NOT change colors, backgrounds, or effects - keeps original purple style */

/* Main footer - reduced padding only */
.footer {
    padding: 60px 0 0 !important;
    /* Keep original background, effects, everything else */
}

/* Container wide - maximize width */
.container-wide {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 60px !important;
}

/* Footer content - reduced spacing, better width distribution */
.footer-content {
    grid-template-columns: 400px 1fr !important;
    gap: 80px !important;
    margin-bottom: 50px !important;
}

/* Footer links - use full available width */
.footer-links {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 50px !important;
}

/* Reduce spacing between footer items */
.footer-col h4 {
    margin-bottom: 18px !important;
}

.footer-col a {
    margin-bottom: 12px !important;
}

/* Footer bottom - reduced padding */
.footer-bottom {
    padding: 32px 0 !important;
}

/* Responsive - maintain structure on smaller screens */
@media (max-width: 1024px) {
    .container-wide {
        padding: 0 40px !important;
    }

    .footer {
        padding: 50px 0 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        margin-bottom: 40px !important;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 30px !important;
    }

    .footer {
        padding: 40px 0 0 !important;
    }

    .footer-content {
        gap: 35px !important;
        margin-bottom: 35px !important;
    }

    .footer-links {
        gap: 30px !important;
    }

    .footer-bottom {
        padding: 24px 0 !important;
    }
}
