/* --- Gym Intake Specific Styles --- */

html, body {
    overflow-x: hidden;
    width: 100%;
}

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

.intake-hero-bg .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2) brightness(0.3);
}

.intake-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(2, 6, 23, 0.4) 0%, 
        rgba(2, 6, 23, 0.8) 70%, 
        rgba(2, 6, 23, 1) 100%
    );
}

main section {
    padding-top: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.info-status-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.form-block {
    padding-left: 1.5rem;
    border-left: 2px solid transparent;
    transition: all 0.5s ease;
}

.block-indigo { border-left-color: #6366f1; }
.block-emerald { border-left-color: #10b981; }
.block-orange { border-left-color: #f97316; }

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

.section-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #475569;
    background: rgba(255, 255, 255, 0.03);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-group label {
    display: block;
    font-size: 9px;
    font-weight: 900;
    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.35);
    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: #6366f1;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.service-selector {
    border-left: 4px solid #6366f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.helper-text {
    font-size: 8px;
    font-weight: 700;
    color: #475569;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ANTI-SPAM (Off-canvas) */
.hp-trap {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

/* BREAKPOINT TIGHTENING */
@media (max-width: 1024px) {
    .glass-module { padding: 3rem; }
}

@media (max-width: 820px) {
    .glass-module { padding: 2.5rem 2rem; border-radius: 2rem; }
    main section { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .combat-heading { font-size: 3.5rem !important; }
}

@media (max-width: 768px) {
    .input-group label { font-size: 10px; }
    .input-group input, .input-group select, .input-group textarea { font-size: 16px; }
    .grid-cols-1.md:grid-cols-2 { grid-template-columns: 1fr; }
    .md:col-span-2 { grid-column: span 1 / span 1; }
}

@media (max-width: 480px) {
    .glass-module { padding: 2rem 1.5rem; border-radius: 1.5rem; }
    .combat-heading { font-size: 2.8rem !important; }
    .form-block { padding-left: 1rem; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }