/* Smart Jump Card - Replaces bottom form */
.check-availability-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.check-availability-card:hover {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 20px 40px rgba(217, 125, 84, 0.1);
}

.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.availability-status .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Highlight Animation for Input Pulse */
@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 125, 84, 0.4);
        border-color: var(--orange);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(217, 125, 84, 0);
        border-color: var(--orange);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 125, 84, 0);
        border-color: #e2e8f0;
        transform: scale(1);
    }
}

.highlight-pulse {
    animation: highlight-pulse 1s ease-out;
}

/* Spotlight Focus Effect (The "Dimmed" Backdrop) */
.form-card.highlight-focus {
    /* Massive box shadow that acts as the dimmer overlay */
    box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.65) !important;
    position: relative;
    z-index: 2000 !important;
    transition: box-shadow 0.4s ease-out;
    border-color: white;
    /* Make the card pop */
}