/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.94), rgba(10, 30, 48, 0.9)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 30%;
    padding: 140px 0 80px;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

/* Section Headers */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 4px;
}

/* Application Form */
.application-form-wrapper {
    background: var(--bg-light);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px var(--shadow);
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required-star {
    color: #dc3545;
    margin-left: 3px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.file-upload-wrapper:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 106, 0.05);
}

.file-upload-wrapper input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

/* Application Steps */
.step-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    height: 100%;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Fee Structure Table */
.fee-table {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.fee-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

/* Scholarship Card */
.scholarship-card {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 24px;
    padding: 1.5rem;
    color: white;
}