/* Early Bird Pricing Banner Styles */

.early-bird-banner {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.early-bird-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.early-bird-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.early-bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.early-bird-badge i {
    font-size: 1rem;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.early-bird-text {
    font-size: 1.125rem;
    color: #78350f;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.early-bird-text strong {
    color: #dc2626;
    font-weight: 700;
}

.early-bird-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #78350f;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.early-bird-benefit i {
    color: #16a34a;
    font-size: 1.1rem;
}

.early-bird-benefit strong {
    color: #dc2626;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .early-bird-banner {
        padding: 1.25rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .early-bird-text {
        font-size: 1rem;
    }
    
    .early-bird-benefit {
        font-size: 0.875rem;
        padding: 0.6rem 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
