.bg-ams-primary-light {
    background-color: var(--ams-primary-light);
}

/* Hero - Admissions */
.hero-admissions {
    background: linear-gradient(165deg, var(--ams-primary) 0%, #00208f 40%, var(--ams-primary-dark) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 3rem 3rem;
    padding: 3.5rem 0 3rem;
}

.hero-admissions::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-admissions::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge-prof {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--ams-border);
    color: var(--ams-muted);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-dot.active {
    background: var(--ams-primary);
    color: #fff;
    border-color: var(--ams-primary);
    transform: scale(1.05);
}

.step-dot.completed {
    background: var(--ams-success);
    color: #fff;
    border-color: var(--ams-success);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--ams-border);
    max-width: 60px;
    transition: background 0.3s ease;
}

.step-line.completed {
    background: var(--ams-success);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid var(--ams-border);
    padding: 0.6rem 0.75rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ams-primary);
    box-shadow: 0 0 0 3px rgba(0, 22, 122, 0.08);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--ams-danger);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.invalid-feedback {
    font-size: 0.8rem;
    color: var(--ams-danger);
}

.form-section-title {
    font-weight: 600;
    color: var(--ams-primary);
    border-bottom: 2px solid var(--ams-primary-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* File upload */
.file-upload-wrapper {
    border: 2px dashed var(--ams-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--ams-bg);
}

.file-upload-wrapper:hover {
    border-color: var(--ams-primary);
    background: var(--ams-primary-light);
}

.file-upload-wrapper.dragover {
    border-color: var(--ams-primary);
    background: var(--ams-primary-light);
}

.file-upload-wrapper .file-icon {
    font-size: 2.5rem;
    color: var(--ams-muted);
}

.file-upload-wrapper .file-name {
    font-size: 0.85rem;
    color: var(--ams-muted);
    margin-top: 0.5rem;
}

/* Toast */
.toast-ams {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--ams-primary);
    color: white;
    border-radius: var(--ams-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--ams-shadow-lg);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 400px;
}

.toast-ams.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-ams.success {
    background: var(--ams-success);
}

.toast-ams.error {
    background: var(--ams-danger);
}

/* Success screen */
.success-screen {
    text-align: center;
    padding: 2rem 1rem;
}

.success-screen .success-icon {
    font-size: 4rem;
    color: var(--ams-success);
    background: rgba(22, 128, 60, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.tracking-id {
    background: var(--ams-primary-light);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ams-primary);
    display: inline-block;
}

@media (max-width: 576px) {

    .hero-admissions {
        padding: 2rem 0 1.5rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .hero-admissions h1 {
        font-size: 2rem;
    }

    .step-dot {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .step-line {
        max-width: 30px;
    }

    .toast-ams {
        max-width: 90%;
        right: 5%;
        bottom: 10px;
    }

    .file-upload-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-admissions {
        padding: 2rem 0 1.5rem;
    }
}