

/* Footer styles */
.footer {
    background-color: #1f1f1f;
    padding: 40px 60px 20px;
    font-size: 14px;
    color: #ddd;
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.footer-about {
    flex: 1.5;
    max-width: 400px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.logo i.fas.fa-car {
    color: #d32f2f; /* Red color for car icon */
    font-size: 28px;
    margin-right: 10px;
}

.footer-about p {
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 20px;
}

.social-icons a {
    background-color: #2c2c2c;
    color: #bbb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #d32f2f;
    color: white;
}

/* Links Columns */
.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    color: #ddd;
}

.links-section, .contact-section {
    min-width: 180px;
}

.links-section h3, .contact-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.links-section ul,
.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section ul li,
.contact-section ul li {
    margin-bottom: 10px;
}

.links-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-section ul li a:hover {
    color: #d32f2f;
}

.contact-list li i.fas.fa-square {
    color: #d32f2f;
    font-size: 10px;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-list li {
    margin-bottom: 12px;
}

.contact-list p {
    margin: 2px 0 0 18px;
    color: #bbb;
    font-size: 13px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.bottom-links a {
    margin-left: 25px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #d32f2f;
}

/* Red button on bottom-right */
.red-btn {
    background-color: #d32f2f;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .bottom-links {
        margin-left: 10px;
    }
}