/* Remove black background from "Our Fleet" link in footer */
.footer-links a[href*="fleet"],
.footer-section a[href*="fleet"],
footer a[href*="fleet"] {
    background: transparent !important;
    color: #666 !important;
    transition: color 0.3s ease !important;
}

.footer-links a[href*="fleet"]:hover,
.footer-section a[href*="fleet"]:hover,
footer a[href*="fleet"]:hover {
    color: #e53e3e !important;
    background: transparent !important;
}

/* Make copyright text visible */
.footer-bottom,
.copyright,
.footer-copyright {
    color: #666 !important;
    font-size: 14px !important;
    text-align: center !important;
    padding: 20px 0 !important;
    border-top: 1px solid #eee !important;
    margin-top: 30px !important;
}

.footer-bottom p,
.copyright p,
.footer-copyright p {
    color: #666 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Ensure footer text is always visible */
footer {
    background: #f8f9fa !important;
    color: #333 !important;
    padding: 40px 0 0 !important;
}

footer h3,
footer h4 {
    color: #333 !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

footer p,
footer li,
footer a {
    color: #666 !important;
    line-height: 1.6 !important;
}

footer a:hover {
    color: #e53e3e !important;
}

/* Fix any remaining black backgrounds */
.btn-dark,
.bg-dark,
.button-dark {
    background: transparent !important;
    color: #666 !important;
    border: 1px solid #ddd !important;
}

.btn-dark:hover,
.bg-dark:hover,
.button-dark:hover {
    background: #e53e3e !important;
    color: white !important;
    border-color: #e53e3e !important;
}