/* Footer Spacing Improvements */

.footer {
    padding: 4rem 0 2rem 0 !important; /* More top padding, less bottom */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem !important; /* More spacing between columns */
    margin-bottom: 3rem !important; /* More space before bottom section */
    padding: 0 1rem;
}

.footer-brand h4 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
    color: #1a1a2e !important;
    font-weight: 800;
}

.footer-brand p {
    color: #666 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.5;
}

.footer-links h5,
.footer-social h5 {
    color: #1a1a2e !important;
    font-size: 1.3rem !important;
    margin-bottom: 1.5rem !important; /* More space after headers */
    font-weight: 700;
}

.footer-links a,
.footer-social a {
    display: block;
    color: #666 !important;
    padding: 0.5rem 0 !important; /* More vertical spacing between links */
    line-height: 1.5;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #8fcc00 !important;
}

.footer-bottom {
    padding-top: 2rem !important; /* More space above copyright */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: #666 !important;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #8fcc00 !important;
}

/* Mobile Footer Improvements */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left !important; /* Align left on mobile for better readability */
        gap: 2rem !important;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        padding: 0 1rem;
    }

    .footer-links h5,
    .footer-social h5 {
        margin-top: 1rem;
    }

    .footer-links a,
    .footer-social a {
        padding: 0.75rem 0 !important; /* Even more touch-friendly spacing on mobile */
    }
}