/* --- Venue Intake Specialized Styles --- */

/* Hero Background Engine */
.hero-bg-overlay-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-boxing-bg {
    position: absolute;
    inset: 0;
    background-image: url('/cssn/combat/assets/venue-hero-boxing.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(1) brightness(0.2) contrast(1.2);
    opacity: 0.6;
}

.hero-gradient-shroud {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(2, 6, 23, 0) 0%, 
        rgba(2, 6, 23, 0.5) 50%, 
        rgba(2, 6, 23, 1) 100%
    );
}

.step-num {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: var(--combat-indigo);
    flex-shrink: 0;
}

.input-group label {
    display: block;
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus, 
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--combat-indigo);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

/* Pre-selected State Highlight */
.is-preselected {
    background: rgba(99, 102, 241, 0.03);
    border-left: 4px solid var(--combat-indigo);
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
    box-shadow: inset 20px 0 30px -20px rgba(99, 102, 241, 0.1);
    margin-left: -1.5rem;
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

/* CHIP CHECKBOXES */
.chip-checkbox {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.chip-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.chip-checkbox span {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    transition: all 0.3s ease;
    text-align: center;
}

.chip-checkbox:hover span {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #94a3b8;
}

.chip-checkbox input:checked + span {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--combat-indigo);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

/* SUCCESS PANEL ANIMATION */
.animate-fade-in {
    animation: intakeFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes intakeFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .glass-module { padding: 2rem !important; border-radius: 2rem !important; }
    .is-preselected { margin-left: 0; border-radius: 1rem; padding: 1rem; }
    .hero-bg-overlay-container { height: 100%; }
}