/* Footer — Boston Scientific theme
   Class name .alstom-footer kept for template compatibility.
   Uses the assertive gradient (dark → action-primary-20) per BSC foundations.
*/

.alstom-footer {
    background: var(--gradient-assertive);
    color: var(--neutral-100);
    padding: var(--space-8) var(--space-5) var(--space-6);
}

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

.footer-content {
    text-align: center;
    margin-bottom: var(--space-7);
}

.footer-title {
    font-family: var(--font-family-sans);
    font-size: var(--fs-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-100);
    margin-bottom: var(--space-2);
}

.footer-address {
    font-size: var(--fs-body-assertive);
    margin-bottom: var(--space-2);
    color: var(--neutral-100);
}

.footer-phone {
    font-size: var(--fs-body-assertive);
    color: var(--neutral-100);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-5);
}

.btn-footer {
    background-color: var(--color-interactive);
    color: var(--neutral-100);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-pill);
    font-family: var(--font-family-sans);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease;
}

.btn-footer:hover {
    background-color: var(--color-interactive-hover);
    color: var(--neutral-100);
}

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

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

.footer-links {
    display: flex;
    gap: var(--space-6);
}

.footer-links a {
    color: var(--neutral-100);
    text-decoration: none;
    font-size: var(--fs-body-subtle);
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--neutral-100);
}

/* Responsive */
@media (max-width: 768px) {
    .alstom-footer {
        padding: var(--space-7) var(--space-4) var(--space-5);
    }

    .footer-title {
        font-size: var(--fs-h3);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-3);
    }
}
