/* Batch Scheduling Section Styles */
.batch-scheduling {
    background-color: var(--space-dark, #12122a);
    position: relative;
    padding: 120px 0;
}

.batch-scheduling .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--starlight, #f8fafc);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px var(--cyber-aqua-glow, rgba(6, 182, 212, 0.5));
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.batch-scheduling .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-violet, #a855f7), var(--cyber-aqua, #06b6d4));
    border-radius: 2px;
}

.batch-scheduling .section-subtitle {
    font-size: 1.25rem;
    color: var(--cosmic-text, #e2e8f0);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.8;
    font-family: 'Exo 2', sans-serif;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.batch-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.18));
    box-shadow: var(--glass-shadow, 0 8px 32px rgba(0, 0, 0, 0.18));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.batch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(168, 85, 247, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.batch-card:hover::before {
    left: 100%;
}

.batch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--neon-violet-glow, rgba(168, 85, 247, 0.5));
    border-color: var(--neon-violet, #a855f7);
}

.batch-card.active {
    border-color: var(--cyber-aqua, #06b6d4);
    box-shadow: 0 0 30px var(--cyber-aqua-glow, rgba(6, 182, 212, 0.6));
    transform: translateY(-5px);
}

.batch-card.active::after {
    content: 'SELECTED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--cyber-aqua, #06b6d4);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-icon {
    font-size: 2.5rem;
    color: var(--cyber-aqua, #06b6d4);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--cyber-aqua-glow, rgba(6, 182, 212, 0.5));
    transition: all 0.3s ease;
}

.batch-card:hover .batch-icon {
    transform: scale(1.1);
    color: var(--neon-violet, #a855f7);
    text-shadow: 0 0 15px var(--neon-violet-glow, rgba(168, 85, 247, 0.7));
}

.batch-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--starlight, #f8fafc);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.batch-card p {
    color: var(--cosmic-text, #e2e8f0);
    opacity: 0.8;
    line-height: 1.5;
    font-family: 'Exo 2', sans-serif;
    margin: 0;
}

.batch-date {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cyber-aqua, #06b6d4);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px var(--cyber-aqua-glow, rgba(6, 182, 212, 0.5));
}

.batch-schedule {
    display: block;
    font-size: 0.9rem;
    color: var(--cosmic-text, #e2e8f0);
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Batch Status Indicators */
.batch-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-status.open {
    background: var(--matrix-green, #22c55e);
    color: white;
    box-shadow: 0 0 8px var(--matrix-green-glow, rgba(34, 197, 94, 0.5));
}

.batch-status.filling {
    background: var(--electric-orange, #f97316);
    color: white;
    box-shadow: 0 0 8px var(--electric-orange-glow, rgba(249, 115, 22, 0.5));
}

.batch-status.waitlist {
    background: var(--neon-violet, #a855f7);
    color: white;
    box-shadow: 0 0 8px var(--neon-violet-glow, rgba(168, 85, 247, 0.5));
}

/* CTA Button Styles */
.batch-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(90deg, var(--electric-orange, #f97316), #f59e0b);
    color: white;
    box-shadow: 0 0 15px var(--electric-orange-glow, rgba(249, 115, 22, 0.5));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--electric-orange-glow, rgba(249, 115, 22, 0.7));
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, var(--electric-orange, #f97316));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.btn-accent:hover::before {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes batchPulse {
    0% {
        box-shadow: 0 0 0 0 var(--cyber-aqua-glow, rgba(6, 182, 212, 0.4));
    }
    70% {
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

@keyframes batchFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .batch-scheduling {
        padding: 80px 0;
    }
    
    .batch-scheduling .section-title {
        font-size: 2.5rem;
    }
    
    .batch-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .batch-scheduling .section-title {
        font-size: 2.2rem;
    }
    
    .batch-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .batch-card {
        padding: 1.5rem;
    }
    
    .batch-card:hover {
        transform: translateY(-5px);
    }
    
    /* Ensure proper stacking on mobile */
    .batch-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .batch-scheduling .section-title {
        font-size: 1.8rem;
    }
    
    .batch-scheduling .section-subtitle {
        font-size: 1.1rem;
    }
    
    .batch-card {
        padding: 1.25rem;
    }
    
    .batch-icon {
        font-size: 2rem;
    }
    
    .batch-card h3 {
        font-size: 1.1rem;
    }
    
    .batch-date {
        font-size: 1rem;
    }
    
    .btn-accent {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Countdown Timer Styles */
.batch-countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border, rgba(255, 255, 255, 0.18));
}

.countdown-item {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyber-aqua, #06b6d4);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 8px var(--cyber-aqua-glow, rgba(6, 182, 212, 0.5));
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--cosmic-text, #e2e8f0);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* Batch Selection Animation */
.batch-card.selected {
    animation: batchPulse 2s infinite;
}

.batch-card.recommended {
    border: 2px solid var(--matrix-green, #22c55e);
    position: relative;
}

.batch-card.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--matrix-green, #22c55e);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--matrix-green-glow, rgba(34, 197, 94, 0.5));
}
