/* STANDARD FOOTER CSS - INCLUDE THIS ON EVERY PAGE */
.basic-footer {
    background: white !important;
    color: #3C1A5B !important;
    padding: 2rem 0;
    margin-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.basic-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.basic-footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.basic-footer-left > span {
    white-space: nowrap;
}

.basic-footer-links {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.basic-footer-links a {
    color: #3C1A5B !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.basic-footer-links a:hover {
    color: #3C1A5B;
    transform: translateY(-1px);
    font-weight: 600;
}

.basic-footer-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #3C1A5B;
    animation: underlineSlide 0.3s ease;
}

@keyframes underlineSlide {
    from { width: 0; }
    to { width: 100%; }
}

.basic-footer-social {
    display: flex;
    gap: 1rem;
}

.basic-footer-social a {
    color: #666 !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.basic-footer-social a:hover {
    color: #3C1A5B !important;
    transform: translateY(-2px);
}

.basic-footer-social svg {
    color: #666 !important;
}

.basic-footer-social a:hover svg {
    color: #3C1A5B !important;
}

.basic-footer-social i {
    color: #666 !important;
}

.basic-footer-social a:hover i {
    color: #3C1A5B !important;
}

@media (max-width: 768px) {
    .basic-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .basic-footer-links {
        justify-content: center;
    }
}
