/* Footer ALSTOM */
.alstom-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 20px 30px;

}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-phone {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 25px;
}

.btn-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-footer:hover {
    background-color: #c02918;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .alstom-footer {
        padding: 40px 20px 20px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
