/* Footer Component Styles */

.footer {
    background-color: var(--text-dark);
    border-top: 4px solid var(--primary-blue);
}

.footer h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* App download buttons */
.footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.footer .btn-outline-light:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer .btn-outline-light i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Footer divider */
.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Copyright section */
.footer .row:last-child {
    align-items: center;
}

.footer .row:last-child p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-2,
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer .row:last-child {
        text-align: center;
    }
    
    .footer .row:last-child .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .footer .d-flex {
        flex-direction: column;
    }
    
    .footer .btn-outline-light {
        margin-bottom: 0.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}