/* ===== URDU2KOREAN - MAIN STYLESHEET ===== */
:root {
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-mid: #0f3460;
    --red: #e74c3c;
    --red-dark: #c0392b;
    --gold: #f39c12;
    --gold-light: #f1c40f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-muted: #6c757d;
    --border: #dee2e6;
    --shadow: 0 10px 40px rgba(26,26,46,0.15);
    --shadow-sm: 0 4px 15px rgba(26,26,46,0.1);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

.urdu-font {
    font-family: 'Noto Nastaliq Urdu', serif;
    direction: rtl;
}

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

#mainNav.scrolled {
    background: var(--navy);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.korean-char {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.urdu-text {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    color: var(--gold);
    margin-right: 5px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    border-radius: 6px;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.btn-apply {
    background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 24px !important;
    font-weight: 600 !important;
}

.btn-apply:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.4);
}

.btn-student-login {
    background: rgba(243,156,18,0.15) !important;
    color: var(--gold) !important;
    border: 1.5px solid rgba(243,156,18,0.5) !important;
    border-radius: 25px !important;
    padding: 7px 18px !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

.btn-student-login:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243,156,18,0.35);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a0a0a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(231,76,60,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243,156,18,0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(15,52,96,0.5) 0%, transparent 50%);
}

.hero-korean-chars {
    position: absolute;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgba(243,156,18,0.06);
    font-size: 15rem;
    font-weight: 900;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(231,76,60,0.2);
    border: 1px solid var(--red);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-title .red-text { color: var(--red); }

.hero-urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: rgba(255,255,255,0.8);
    direction: rtl;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--red), #c0392b);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231,76,60,0.6);
    color: white;
    background: linear-gradient(135deg, #c0392b, var(--red));
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-side {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-card-float {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.hero-korean-display {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 40px rgba(243,156,18,0.5);
}

.hero-hangul-meaning {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 10px;
}

.floating-tag {
    position: absolute;
    background: var(--red);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
}

.floating-tag.tag-1 { top: -15px; left: -20px; animation-delay: 0s; }
.floating-tag.tag-2 { bottom: -15px; right: -20px; animation-delay: 1.5s; }
.floating-tag.tag-gold { background: var(--gold); color: var(--navy); }

/* ===== SECTION STYLES ===== */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .accent { color: var(--red); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== COURSE CARDS ===== */
#courses { background: var(--light-gray); }

.course-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}

.course-card:hover::before { transform: scaleX(1); }

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.course-card:hover .course-icon {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    transform: rotate(5deg) scale(1.05);
}

.course-level {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.level-beginner { background: rgba(231,76,60,0.1); color: var(--red); }
.level-intermediate { background: rgba(243,156,18,0.1); color: #d68910; }
.level-advanced { background: rgba(26,26,46,0.1); color: var(--navy); }
.level-exam { background: rgba(15,52,96,0.1); color: var(--navy-mid); }

.course-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.course-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-item i { color: var(--red); font-size: 0.8rem; }

.btn-course {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: var(--transition);
}

.btn-course:hover {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
#about { background: white; }

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.feature-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.about-image-block {
    position: relative;
    padding: 20px;
}

.about-main-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-main-card::before {
    content: '한국어';
    position: absolute;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.big-korean {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(243,156,18,0.5);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(231,76,60,0.15) 0%, transparent 60%);
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231,76,60,0.6);
    color: white;
}

/* ===== CONTACT SECTION ===== */
#contact { background: var(--light-gray); }

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ADMISSION FORM ===== */
.admission-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 100px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admission-hero::before {
    content: '입학';
    position: absolute;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.admission-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.admission-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

.form-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.form-wrapper {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-progress {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-step {
    display: flex;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.step-circle.active {
    background: var(--red);
    border-color: var(--red);
}

.step-circle.done {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.step-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-left: 10px;
    font-weight: 500;
}

.step-label.active { color: white; }

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 0 15px;
}

.form-body { padding: 40px 35px; }

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title .section-num {
    width: 28px;
    height: 28px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus, .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.required-star { color: var(--red); }

.btn-submit-main {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231,76,60,0.6);
}

/* Photo upload */
.photo-upload-area {
    border: 3px dashed var(--border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
}

.photo-upload-area:hover {
    border-color: var(--red);
    background: rgba(231,76,60,0.05);
}

.photo-upload-area i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ===== SUCCESS PAGE ===== */
.success-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.success-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 600px;
    animation: scaleIn 0.6s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    animation: bounceIn 0.8s ease;
}

.app-id-badge {
    background: rgba(243,156,18,0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 30px;
}

.footer-brand .korean-char-lg {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.footer-brand h4 {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-links a i { font-size: 0.7rem; color: var(--red); }

.footer-contact { list-style: none; padding: 0; }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact li i { color: var(--gold); width: 16px; }

.social-links { display: flex; gap: 10px; }

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-btn:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== ADMIN STYLES ===== */
.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    animation: scaleIn 0.5s ease;
}

.login-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 40px 35px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-header::before {
    content: '관리자';
    position: absolute;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.login-logo {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.login-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

.login-body { padding: 35px; }

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f0f2f5;
}

.admin-sidebar {
    width: 260px;
    background: var(--navy);
    color: white;
    flex-shrink: 0;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    transition: var(--transition);
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.sidebar-logo {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.sidebar-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 8px 0 2px;
}

.sidebar-header small {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

.sidebar-nav { padding: 15px 10px; }

.nav-section-label {
    padding: 15px 15px 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 3px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.sidebar-link.active {
    background: var(--red);
    color: white;
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.sidebar-badge {
    margin-left: auto;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 50px;
    font-weight: 700;
}

.admin-content {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-topbar {
    background: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.topbar-title span { color: var(--red); }

.admin-main { padding: 30px; flex: 1; }

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card.total { border-left-color: var(--navy-mid); }
.stat-card.pending { border-left-color: #f39c12; }
.stat-card.approved { border-left-color: #27ae60; }
.stat-card.rejected { border-left-color: var(--red); }

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-icon.bg-navy { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.stat-icon.bg-warning { background: linear-gradient(135deg, #f39c12, #e67e22); }
.stat-icon.bg-success { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.stat-icon.bg-danger { background: linear-gradient(135deg, var(--red), var(--red-dark)); }

.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-info .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
}

.admin-card {
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h5 {
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    font-size: 1rem;
}

.admin-card-body { padding: 0; }

.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-pending { background: rgba(243,156,18,0.15); color: #d68910; }
.badge-approved { background: rgba(39,174,96,0.15); color: #1e8449; }
.badge-rejected { background: rgba(231,76,60,0.15); color: var(--red-dark); }

.table th {
    background: var(--light-gray);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 14px 16px;
    border: none;
}

.table td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-color: var(--border);
}

.table tbody tr:hover { background: rgba(26,26,46,0.02); }

.btn-sm {
    padding: 5px 12px;
    font-size: 0.78rem;
    border-radius: 7px;
    font-weight: 600;
}

.filter-bar {
    background: white;
    border-radius: 18px;
    padding: 20px 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

/* Application Detail */
.detail-card {
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.detail-card-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 20px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-card-header h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.detail-card-header i { color: var(--gold); font-size: 1.1rem; }

.detail-card-body { padding: 25px; }

.detail-row {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.detail-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.detail-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85rem;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    color: #444;
    font-size: 0.9rem;
    flex: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .sidebar-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    .sidebar-overlay.show { display: block; }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .form-body { padding: 25px 20px; }
    .form-progress { padding: 20px; }
    .step-label { display: none; }
    .success-card { padding: 40px 25px; }
    .detail-row { flex-direction: column; gap: 5px; }
    .detail-label { min-width: auto; }
}

@media (max-width: 576px) {
    .hero-korean-chars { font-size: 8rem; opacity: 0.5; }
    .admin-main { padding: 15px; }
}
