/* Xiaolan Apply Styles - jxaolanshi.com 2025 */

.xiaolan-apply-layout {
    --xiaolan-apply-accent: #06b6d4;
    --xiaolan-apply-highlight: #4f46e5;
}

.xiaolan-requirements-overview {
    backdrop-filter: blur(18px);
    transition: all 0.6s ease;
}

.xiaolan-requirements-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

.xiaolan-step-card {
    transition: all 0.5s ease;
}

.xiaolan-step-card:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.xiaolan-application-form {
    backdrop-filter: blur(15px);
}

.xiaolan-radio-option {
    transition: all 0.4s ease;
}

.xiaolan-radio-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.xiaolan-radio-option input:checked + div {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    border-color: #2563eb;
}

@keyframes xiaolan-apply-fade-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.xiaolan-step-card {
    animation: xiaolan-apply-fade-in 1s ease-out forwards;
}

.xiaolan-step-card:nth-child(1) { animation-delay: 0.2s; }
.xiaolan-step-card:nth-child(2) { animation-delay: 0.4s; }
.xiaolan-step-card:nth-child(3) { animation-delay: 0.6s; }
.xiaolan-step-card:nth-child(4) { animation-delay: 0.8s; }
.xiaolan-step-card:nth-child(5) { animation-delay: 1.0s; }