/* Admission Form Styles */
.admission-hero {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.admission-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.admission-lead {
    color: var(--light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-section h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.admission-process {
    margin-bottom: 3rem;
}

.process-step {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.process-step .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-container {
    background: var(--bg-gradient);
    min-height: 100vh;
    padding: 2rem 0;
}

.admission-form {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.form-label.required::after {
    content: "*";
    color: var(--primary);
    margin-left: 4px;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.custom-file-button {
    position: relative;
}

.custom-file-button input[type=file] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.form-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.step-badge {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.submit-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.submit-section h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .admission-section-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .process-step {
        margin-bottom: 1rem;
    }
}
