/* Bannière d'indisponibilité moderne */
.service-unavailable {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(90deg, #fffbe6 60%, #e0e7ff 100%);
    border-left: 6px solid #fbbf24;
    box-shadow: 0 6px 32px rgba(80, 80, 120, 0.10);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto 2rem auto;
    max-width: 650px;
    transition: box-shadow 0.2s;
}
.service-unavailable-icon {
    font-size: 2.8rem;
    color: #fbbf24;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px #fbbf2433);
}
.service-unavailable-content {
    flex: 1;
    text-align: left;
}
.service-unavailable-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.service-unavailable p {
    margin: 0.3rem 0 0.7rem 0;
    color: #6b7280;
    font-size: 1.05rem;
}
.service-unavailable .btn-service {
    margin-top: 0.7rem;
    background: linear-gradient(90deg, #6366f1 60%, #818cf8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px #6366f133;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    cursor: pointer;
    display: inline-block;
}
.service-unavailable .btn-service:hover {
    background: linear-gradient(90deg, #818cf8 60%, #6366f1 100%);
    box-shadow: 0 4px 16px #6366f155;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .service-unavailable {
        flex-direction: column;
        padding: 1.2rem 1rem;
        gap: 0.7rem;
    }
    .service-unavailable-content {
        text-align: center;
    }
    .service-unavailable-icon {
        font-size: 2.2rem;
    }
}