/* ============================================
   EduDass - School Management System
   Color: Blue (#4366F6) + Gold (#FBBF24)
   Font: Plus Jakarta Sans
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: #F1F5F9;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(24px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

.anim-fade-up { animation: fadeInUp 0.5s ease-out both; }
.anim-fade-in { animation: fadeIn 0.5s ease-out both; }
.anim-slide-left { animation: slideInLeft 0.5s ease-out both; }
.anim-slide-right { animation: slideInRight 0.5s ease-out both; }
.anim-scale-in { animation: scaleIn 0.4s ease-out both; }
.anim-float { animation: float 3s ease-in-out infinite; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---- Sidebar ---- */
.sidebar {
    position: fixed; top: 0; left: 0;
    width: 260px; height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    padding-bottom: 2rem;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

.sidebar-brand {
    display: flex; align-items: center; gap: 12px;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}
.sidebar-brand-icon {
    width: 40px; height: 40px; background: #4366F6; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
}
.sidebar-brand-text { font-size: 1.25rem; font-weight: 800; color: #1e293b; letter-spacing: -0.5px; }

.menu-category {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #94a3b8; padding: 1.5rem 1.5rem 0.5rem;
}
.menu-item {
    display: flex; align-items: center; gap: 12px;
    padding: 0.6rem 1.5rem; color: #64748b; text-decoration: none;
    font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
    border-left: 3px solid transparent; margin: 1px 0;
}
.menu-item:hover { color: #4366F6; background: #f0f4ff; border-left-color: #4366F6; }
.menu-item.active { color: #4366F6; background: #EEF2FF; border-left-color: #4366F6; font-weight: 600; }
.menu-item i { width: 20px; text-align: center; font-size: 0.9rem; }

/* ---- Top Navbar ---- */
.top-navbar {
    position: fixed; top: 0; left: 260px; right: 0; height: 64px;
    background: #ffffff; border-bottom: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; z-index: 999;
}
.navbar-left { display: flex; align-items: center; gap: 16px; }
.navbar-search {
    display: flex; align-items: center; background: #f1f5f9;
    border-radius: 12px; padding: 0 1rem; gap: 8px; width: 320px; transition: all 0.2s;
}
.navbar-search:focus-within { background: #e2e8f0; box-shadow: 0 0 0 3px rgba(67,102,246,0.1); }
.navbar-search i { color: #94a3b8; font-size: 0.85rem; }
.navbar-search input {
    border: none; background: none; outline: none; padding: 0.6rem 0;
    font-size: 0.875rem; color: #1e293b; width: 100%; font-family: inherit;
}
.navbar-search input::placeholder { color: #94a3b8; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; background: #f1f5f9; border: none; cursor: pointer;
    transition: all 0.2s; text-decoration: none; font-size: 0.9rem;
}
.nav-icon-btn:hover { background: #e2e8f0; color: #4366F6; }

.nav-user {
    display: flex; align-items: center; gap: 10px;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border-radius: 12px; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.nav-user:hover { background: #f1f5f9; }
.nav-user-avatar {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, #4366F6, #6B8CFF);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.8rem; overflow: hidden;
}
.nav-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-user-name { font-size: 0.8rem; font-weight: 600; color: #1e293b; }
.nav-user-role { font-size: 0.7rem; color: #94a3b8; }

/* ---- Main Content ---- */
.main-content { margin-left: 260px; margin-top: 64px; padding: 2rem; min-height: calc(100vh - 64px); }

/* ---- Page Header ---- */
.page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem;
}
.page-header h2 { font-size: 1.5rem; font-weight: 700; color: #1e293b; letter-spacing: -0.3px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #94a3b8; margin-bottom: 4px; }
.breadcrumb-custom a { color: #4366F6; text-decoration: none; font-weight: 500; }

/* ---- Stat Cards ---- */
.stat-card {
    background: #ffffff; border-radius: 16px; padding: 1.5rem;
    border: 1px solid #e2e8f0; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.stat-value { font-size: 1.75rem; font-weight: 800; color: #1e293b; letter-spacing: -1px; line-height: 1.1; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: #94a3b8; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: white; flex-shrink: 0;
}
.stat-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.stat-icon.blue { background: linear-gradient(135deg, #4366F6, #6B8CFF); }
.stat-icon.gold { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.stat-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.stat-icon.slate { background: linear-gradient(135deg, #475569, #334155); }

.stat-card-green { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); border-color: #BBF7D0; }
.stat-card-green .stat-value { color: #15803d; }
.stat-card-blue { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); border-color: #BFDBFE; }
.stat-card-blue .stat-value { color: #1d4ed8; }
.stat-card-gold { background: linear-gradient(135deg, #FEF3C7, #FDE68A); border-color: #FDE68A; }
.stat-card-gold .stat-value { color: #b45309; }
.stat-card-slate { background: linear-gradient(135deg, #F1F5F9, #E2E8F0); border-color: #E2E8F0; }

/* ---- Content Card ---- */
.content-card {
    background: #ffffff; border-radius: 16px; border: 1px solid #e2e8f0;
    overflow: hidden; transition: all 0.3s;
}
.content-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.content-card .card-header {
    padding: 1rem 1.5rem; background: #ffffff; border-bottom: 1px solid #f1f5f9;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; font-size: 0.9rem; color: #1e293b;
}
.content-card .card-body { padding: 1.5rem; }

/* ---- Tables ---- */
.table-modern { width: 100%; border-collapse: collapse; }
.table-modern thead th {
    background: #f8fafc; padding: 0.75rem 1.25rem; font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.75px;
    color: #64748b; border-bottom: 1px solid #e2e8f0; text-align: left;
}
.table-modern tbody td {
    padding: 0.85rem 1.25rem; border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem; color: #334155; vertical-align: middle;
}
.table-modern tbody tr:last-child td { border-bottom: none; }
.table-modern tbody tr:hover { background: #fafbfd; }

/* ---- Buttons ---- */
.btn-primary-blue {
    background: #4366F6; color: white; border: none;
    padding: 0.6rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: inherit; line-height: 1.5;
}
.btn-primary-blue:hover { background: #3454d1; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(67,102,246,0.3); color: white; }

.btn-outline-blue {
    background: transparent; color: #4366F6; border: 1.5px solid #4366F6;
    padding: 0.55rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: inherit;
}
.btn-outline-blue:hover { background: #4366F6; color: white; }

.btn-gold {
    background: #FBBF24; color: #92400e; border: none;
    padding: 0.6rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: inherit;
}
.btn-gold:hover { background: #F59E0B; transform: translateY(-1px); }

.btn-success-green {
    background: #22c55e; color: white; border: none;
    padding: 0.6rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: inherit;
}
.btn-success-green:hover { background: #16a34a; transform: translateY(-1px); color: white; }

.btn-outline-gray {
    background: transparent; color: #64748b; border: 1.5px solid #e2e8f0;
    padding: 0.55rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: inherit;
}
.btn-outline-gray:hover { border-color: #94a3b8; color: #475569; }

.btn-sm-action {
    width: 34px; height: 34px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid #e2e8f0; background: white; color: #64748b;
    cursor: pointer; transition: all 0.2s; text-decoration: none; font-size: 0.8rem;
}
.btn-sm-action:hover { border-color: #4366F6; color: #4366F6; background: #f0f4ff; }
.btn-sm-action.danger:hover { border-color: #ef4444; color: #ef4444; background: #fef2f2; }
.btn-sm-action.success:hover { border-color: #22c55e; color: #22c55e; background: #f0fdf4; }

/* ---- Badges ---- */
.badge-status {
    display: inline-flex; align-items: center; padding: 0.3rem 0.75rem;
    border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px;
}
.badge-status.approved, .badge-status.present, .badge-status.paid, .badge-status.active { background: #DCFCE7; color: #15803d; }
.badge-status.pending, .badge-status.partial, .badge-status.late { background: #FEF3C7; color: #b45309; }
.badge-status.rejected, .badge-status.absent, .badge-status.overdue, .badge-status.cancelled { background: #FEE2E2; color: #dc2626; }
.badge-status.half_day, .badge-status.on_leave { background: #E0E7FF; color: #4338ca; }

.badge-pill { display: inline-flex; align-items: center; padding: 0.25rem 0.65rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; }
.badge-blue { background: #EEF2FF; color: #4366F6; }
.badge-gold { background: #FEF3C7; color: #b45309; }
.badge-green { background: #DCFCE7; color: #15803d; }
.badge-red { background: #FEE2E2; color: #dc2626; }

/* ---- Forms ---- */
.form-control {
    width: 100%; padding: 0.65rem 1rem; border: 1.5px solid #e2e8f0;
    border-radius: 10px; font-size: 0.875rem; color: #1e293b;
    background: #ffffff; transition: all 0.2s; font-family: inherit; outline: none;
}
.form-control:focus { border-color: #4366F6; box-shadow: 0 0 0 3px rgba(67,102,246,0.1); }
.form-control::placeholder { color: #94a3b8; }
.form-label { font-size: 0.8rem; font-weight: 600; color: #475569; margin-bottom: 6px; display: block; }
.form-check-input:checked { background-color: #4366F6; border-color: #4366F6; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-control-sm { padding: 0.45rem 0.75rem; font-size: 0.8rem; }

/* ---- Avatar ---- */
.avatar {
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; color: white; font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.sm { width: 36px; height: 36px; font-size: 0.8rem; border-radius: 10px; }
.avatar.lg { width: 80px; height: 80px; font-size: 1.5rem; border-radius: 16px; }
.avatar.xl { width: 100px; height: 100px; font-size: 2rem; border-radius: 20px; }
.avatar.blue { background: linear-gradient(135deg, #4366F6, #6B8CFF); }
.avatar.gold { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.avatar.circle { border-radius: 50%; }

/* ---- Admit Card ---- */
.admit-card { max-width: 700px; margin: 0 auto; background: white; border-radius: 16px; border: 2px solid #4366F6; overflow: hidden; }
.admit-card-header { background: linear-gradient(135deg, #4366F6, #6B8CFF); color: white; padding: 1.5rem 2rem; text-align: center; }
.admit-card-body { padding: 2rem; }
.admit-card-footer { padding: 1rem 2rem; border-top: 1px solid #e2e8f0; background: #f8fafc; }

/* ---- Auth Pages ---- */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #F1F5F9 100%); padding: 2rem;
}
.auth-card {
    width: 100%; max-width: 420px; background: #ffffff; border-radius: 20px;
    padding: 2.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 1px solid #e2e8f0;
}
.auth-card h2 { font-size: 1.5rem; font-weight: 800; color: #1e293b; letter-spacing: -0.5px; }
.auth-card .subtitle { font-size: 0.875rem; color: #94a3b8; margin-top: 4px; }
.auth-divider { text-align: center; color: #94a3b8; font-size: 0.8rem; margin: 1.5rem 0; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: #e2e8f0; }
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ---- Public / Hero ---- */
.hero-section {
    padding: 8rem 0 5rem; background: linear-gradient(135deg, #4366F6, #6B8CFF);
    color: white; position: relative; overflow: hidden;
}
.hero-section::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 80px; background: #F1F5F9; clip-path: ellipse(55% 100% at 50% 100%);
}
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: #1e293b; letter-spacing: -0.5px; }
.section-title .line { width: 50px; height: 4px; background: #FBBF24; border-radius: 2px; margin: 1rem auto 0; }

.feature-card {
    background: white; border-radius: 16px; padding: 2rem; border: 1px solid #e2e8f0;
    transition: all 0.3s; height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: #4366F6; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; }

.pricing-card {
    background: white; border-radius: 20px; padding: 2.5rem;
    border: 1px solid #e2e8f0; text-align: center; transition: all 0.3s; height: 100%;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pricing-card.featured { border-color: #4366F6; box-shadow: 0 8px 32px rgba(67,102,246,0.15); position: relative; }
.pricing-card.featured::before {
    content: 'POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #FBBF24; color: #92400e; font-size: 0.65rem; font-weight: 800;
    padding: 4px 16px; border-radius: 20px; letter-spacing: 1px;
}
.pricing-card .price { font-size: 2.75rem; font-weight: 800; color: #1e293b; line-height: 1; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 500; color: #94a3b8; }

/* ---- Footer ---- */
.footer { background: #0f172a; color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer h5, .footer h6 { color: white; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #FBBF24; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; margin-top: 3rem; text-align: center; font-size: 0.85rem; }

/* ---- Portfolio ---- */
.portfolio-hero { padding: 8rem 0 5rem; background: linear-gradient(135deg, #4366F6, #6B8CFF); color: white; text-align: center; }
.portfolio-section { padding: 4rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---- Alerts ---- */
.alert-msg {
    padding: 0.85rem 1.25rem; border-radius: 12px; font-size: 0.875rem; font-weight: 500;
    display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
    border: 1px solid; animation: fadeInUp 0.3s ease-out;
}
.alert-msg.success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-msg.error { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.alert-msg.warning { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.alert-msg.info { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.alert-msg .close-btn { margin-left: auto; background: none; border: none; cursor: pointer; color: inherit; opacity: 0.6; font-size: 1.1rem; }
.alert-msg .close-btn:hover { opacity: 1; }

/* ---- Attendance Buttons ---- */
.att-group { display: flex; gap: 4px; }
.att-group label {
    padding: 0.3rem 0.65rem; border-radius: 6px; border: 1.5px solid #e2e8f0;
    font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.15s;
    color: #64748b; background: white;
}
.att-group input[type="radio"] { display: none; }
.att-group input[type="radio"]:checked + label.present { background: #22c55e; color: white; border-color: #22c55e; }
.att-group input[type="radio"]:checked + label.absent { background: #ef4444; color: white; border-color: #ef4444; }
.att-group input[type="radio"]:checked + label.late { background: #f59e0b; color: white; border-color: #f59e0b; }
.att-group input[type="radio"]:checked + label.half-day { background: #6366f1; color: white; border-color: #6366f1; }
.att-group input[type="radio"]:checked + label.on-leave { background: #64748b; color: white; border-color: #64748b; }

/* ---- Print ---- */
@media print {
    .no-print, .sidebar, .top-navbar { display: none !important; }
    .main-content { margin: 0; padding: 0; }
    .admit-card { border: 2px solid #333; }
    body { background: white; }
}

/* ---- Responsive ---- */
.sidebar-toggle { display: none; background: none; border: none; font-size: 1.2rem; color: #475569; cursor: pointer; padding: 4px; }
@media (max-width: 1024px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.show { transform: translateX(0); box-shadow: 4px 0 24px rgba(0,0,0,0.1); }
    .top-navbar { left: 0; }
    .main-content { margin-left: 0; }
    .sidebar-toggle { display: block; }
    .navbar-search { width: 200px; }
}
@media (max-width: 768px) {
    .main-content { padding: 1.25rem; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .page-header h2 { font-size: 1.25rem; }
    .stat-value { font-size: 1.4rem; }
    .hero-section { padding: 6rem 0 4rem; }
    .hero-section h1 { font-size: 2rem; }
    .navbar-search { display: none; }
}

/* ---- Custom File Upload ---- */
.file-upload-area {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}
.file-upload-area:hover {
    border-color: #4366F6;
    background: #f0f4ff;
}
.file-upload-area.dragover {
    border-color: #4366F6;
    background: #EEF2FF;
    transform: scale(1.01);
}
.file-upload-area input[type="file"] {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.file-upload-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4366F6, #6B8CFF);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    color: white; font-size: 1.1rem;
    transition: transform 0.3s;
}
.file-upload-area:hover .file-upload-icon {
    transform: translateY(-2px);
}
.file-upload-icon.gold {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
}
.file-upload-text {
    font-size: 0.85rem; font-weight: 600; color: #475569; margin-bottom: 4px;
}
.file-upload-hint {
    font-size: 0.75rem; color: #94a3b8;
}
.file-upload-name {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #22c55e;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
.file-upload-name.show {
    display: flex;
}

/* ---- Form Group Enhanced ---- */
.form-group-icon {
    position: relative;
}
.form-group-icon .form-control {
    padding-left: 2.75rem;
}
.form-group-icon .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s;
}
.form-group-icon .form-control:focus ~ .input-icon,
.form-group-icon .form-control:focus + .input-icon {
    color: #4366F6;
}

/* ---- Section Divider ---- */
.section-step {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
}
.step-number {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, #4366F6, #6B8CFF);
    color: white; font-size: 0.75rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-number.gold { background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #92400e; }
.step-number.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.step-title { font-size: 0.85rem; font-weight: 700; color: #1e293b; }

/* ---- Utility ---- */
.text-blue { color: #4366F6; }
.text-gold { color: #F59E0B; }
.bg-blue { background: #4366F6; }
.bg-gold { background: #FBBF24; }
