/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --primary-bg: #dbeafe;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --dark-bg: #0a1733;
    --success: #22c55e;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f1f5f9;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    padding: 20px;
    background: #f1f5f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line-1, .logo-line-2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link.active {
    color: var(--text-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-btn {
    padding: 10px 20px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Admissions Hero */
.admissions-hero {
    text-align: center;
    padding: 60px 48px 40px;
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.6s ease;
}

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

.page-subtitle {
    font-size: 17px;
    color: var(--text-medium);
}

/* Steps Section */
.steps-section {
    padding: 40px 48px 60px;
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    max-width: 280px;
    animation: fadeInUp 0.6s ease backwards;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(5) { animation-delay: 0.4s; }

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

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.15);
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.2; }
}

.step-item:hover .step-number {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

.step-connector {
    flex: 0 0 auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    min-width: 60px;
}

.step-connector svg {
    width: 100%;
    height: 12px;
    min-width: 60px;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 0 48px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    padding: 12px;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.info-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.btn-apply-main {
    padding: 14px 36px;
    font-size: 15px;
    width: 100%;
    max-width: 200px;
}

.info-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Requirements Section */
.requirements-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 48px 60px;
    align-items: end;
}

.requirements-card {
    background: var(--dark-bg);
    color: white;
    padding: 40px 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 0.7s ease 0.3s backwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.requirements-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, #cbd5e1 50%);
    border-bottom-right-radius: 16px;
}

.requirements-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.requirements-list {
    list-style: none;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: white;
    transition: transform 0.2s ease;
}

.requirement-item:hover {
    transform: translateX(6px);
}

.req-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.requirement-item:hover .req-check {
    transform: scale(1.2) rotate(5deg);
}

.req-check svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Student Image */
.student-image-wrapper {
    position: relative;
    animation: fadeInRight 0.7s ease 0.3s backwards;
    
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.image-sparkle {
    position: absolute;
    color: var(--primary);
    font-size: 24px;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.sparkle-1 {
    bottom: 30px;
    right: 30px;
    animation-delay: 0.5s;
}

.sparkle-2 {
    top: 30px;
    left: 30px;
    font-size: 18px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* ====================
   MODAL OVERLAY
   ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 23, 51, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    color: var(--text-medium);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-content {
    padding: 0;
}

/* ====================
   APPLY FORM (Inside Modal)
   ==================== */
.apply-form-wrapper {
    padding: 40px 48px 48px;
    position: relative;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.progress-bar .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: none;
    animation: none;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.progress-bar .step-item.active .step-circle {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transform: scale(1.05);
}

.progress-bar .step-item.completed .step-circle {
    background: var(--primary);
    color: white;
}

.step-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.progress-bar .step-item.active .step-label,
.progress-bar .step-item.completed .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

.step-connector-form {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 4px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.step-connector-form.active {
    background: var(--primary);
}

.form-divider {
    height: 1px;
    background: var(--border-light);
    margin: 20px 0 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Container */
.form-container {
    position: relative;
    min-height: 400px;
    max-width: 900px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 28px;
}

/* Form Elements */
.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #cbd5e1;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-textarea {
    min-height: 90px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.course-overview-label {
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    margin-top: 8px;
    border-radius: 8px 8px 0 0;
    display: none;
    letter-spacing: 0.5px;
    animation: slideDown 0.3s ease;
}

.course-overview-label.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input.error,
.form-select.error {
    border-color: #ef4444;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    gap: 16px;
}

.btn-form {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    font-family: inherit;
    min-width: 120px;
    text-align: center;
}

.btn-form-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-form-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-form-primary:disabled {
    background: #94a3b8;
    border-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-form-outline {
    background: white;
    color: var(--text-dark);
    border-color: var(--border-light);
}

.btn-form-outline:hover {
    border-color: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Review Section */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.review-heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.review-divider {
    height: 1px;
    background: var(--border-light);
    margin: 10px 0 14px;
}

.review-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 6px 0;
    font-size: 13px;
}

.review-label {
    color: var(--text-medium);
    font-weight: 500;
}

.review-value {
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-word;
}

/* Confirm Checkbox */
.confirm-section {
    padding: 16px 0 8px;
    margin-top: 4px;
    border-top: 1px solid var(--border-light);
}

.confirm-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    user-select: none;
}

.confirm-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.confirm-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.confirm-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

/* Success Screen */
.success-screen {
    display: none;
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInSuccess 0.6s ease;
}

.success-screen.active {
    display: block;
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confetti-container {
    position: relative;
    height: 80px;
    margin-bottom: 20px;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 14px;
    top: 0;
    left: 50%;
    opacity: 0;
    animation: confettiFall 2.5s ease-in-out infinite;
}

.confetti.c1 { background: #f59e0b; left: 25%; animation-delay: 0s; transform: rotate(20deg); }
.confetti.c2 { background: #ec4899; left: 35%; animation-delay: 0.2s; transform: rotate(-15deg); border-radius: 50%; }
.confetti.c3 { background: #3b82f6; left: 45%; animation-delay: 0.4s; transform: rotate(40deg); }
.confetti.c4 { background: #10b981; left: 55%; animation-delay: 0.1s; transform: rotate(-25deg); border-radius: 50%; }
.confetti.c5 { background: #8b5cf6; left: 65%; animation-delay: 0.3s; transform: rotate(15deg); }
.confetti.c6 { background: #f59e0b; left: 30%; animation-delay: 0.5s; transform: rotate(50deg); border-radius: 50%; }
.confetti.c7 { background: #ef4444; left: 50%; animation-delay: 0.15s; transform: rotate(-30deg); }
.confetti.c8 { background: #06b6d4; left: 70%; animation-delay: 0.35s; transform: rotate(25deg); border-radius: 50%; }
.confetti.c9 { background: #84cc16; left: 40%; animation-delay: 0.45s; transform: rotate(-10deg); }
.confetti.c10 { background: #f97316; left: 60%; animation-delay: 0.25s; transform: rotate(35deg); border-radius: 50%; }

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(70px) rotate(360deg);
    }
}

.success-icon-wrapper {
    margin: 0 auto 24px;
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--success);
    opacity: 0.2;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
    animation: successBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

@keyframes successBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 3;
}

.success-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    animation: slideUpFade 0.6s ease 0.3s backwards;
}

.success-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 28px;
    animation: slideUpFade 0.6s ease 0.4s backwards;
}

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

.btn-home {
    min-width: 200px;
    animation: slideUpFade 0.6s ease 0.5s backwards;
}

/* Hide progress bar and form on success */
.apply-form-wrapper.success-active .progress-bar,
.apply-form-wrapper.success-active .form-container,
.apply-form-wrapper.success-active .form-divider {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 20px 32px;
    }
    
    .nav-list {
        gap: 24px;
    }
    
    .admissions-hero {
        padding: 48px 32px 32px;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .steps-section {
        padding: 32px 32px 48px;
    }
    
    .info-section {
        padding: 0 32px 48px;
    }
    
    .requirements-section {
        padding: 0 32px 48px;
        gap: 24px;
    }
    
    .apply-form-wrapper {
        padding: 32px;
    }
    
    .review-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 10px;
    }
    
    .container {
        border-radius: 16px;
    }
    
    .header {
        padding: 16px 20px;
    }
    
    .nav, .nav-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .admissions-hero {
        padding: 40px 24px 28px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .steps-section {
        padding: 28px 24px 40px;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step-item {
        max-width: 100%;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 24px 40px;
    }
    
    .info-center {
        padding: 10px 0;
    }
    
    .btn-apply-main {
        max-width: 280px;
    }
    
    .requirements-section {
        grid-template-columns: 1fr;
        padding: 0 24px 40px;
        gap: 24px;
    }
    
    .requirements-card {
        padding: 28px 24px;
    }
    
    .requirements-title {
        font-size: 20px;
    }
    
    /* Modal */
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-container {
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .apply-form-wrapper {
        padding: 24px 20px 32px;
    }
    
    .progress-bar {
        margin-bottom: 12px;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .step-connector-form {
        margin-bottom: 26px;
        margin: 0 2px;
        margin-bottom: 26px;
    }
    
    .form-divider {
        margin: 12px 0 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .btn-form {
        width: 100%;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-item {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .success-screen {
        padding: 40px 20px;
    }
    
    .success-title {
        font-size: 22px;
    }
    
    .success-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 30px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .requirement-item {
        font-size: 14px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}
