/* === LIEN RAPIDE SIMULATEURS - MINIMALISTE === */

/* Animation pulse */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Animation couleur */
@keyframes color-pulse {
    0% {
        border-color: #C5A059;
        background-color: rgba(197, 160, 89, 0);
    }
    50% {
        border-color: #D4B982;
        background-color: rgba(197, 160, 89, 0.05);
    }
    100% {
        border-color: #C5A059;
        background-color: rgba(197, 160, 89, 0);
    }
}

.simulators-quick-link-section {
    padding: 20px !important;
    text-align: center !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15) !important;
}

.simulators-quick-link {
    display: inline-block !important;
}

.simulators-quick-link a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    color: #0B243E !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border: 2px solid #C5A059 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    font-family: 'Montserrat', sans-serif !important;
    background-color: rgba(197, 160, 89, 0) !important;
}

/* Animation pour le bouton */
.simulators-quick-link a.simulator-cta {
    animation: color-pulse 3s infinite, pulse-glow 3s infinite !important;
}

.simulators-quick-link a:hover {
    background-color: #C5A059 !important;
    color: #fff !important;
    animation: none !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3) !important;
    transform: translateY(-2px) !important;
}

.simulators-quick-link i {
    font-size: 1rem !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .simulators-quick-link-section {
        padding: 15px !important;
    }

    .simulators-quick-link a {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .simulators-quick-link a {
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
        animation: none !important;
    }

    .simulators-quick-link i {
        display: none !important;
    }
}
