:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    --secondary: #6b7280;
    --dark: #111827;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --sidebar-width: 260px;
    --header-height: 64px;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
    --transition: .2s cubic-bezier(.4,0,.2,1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }

body { font-family: var(--font); font-size: .875rem; color: var(--gray-800); background: var(--gray-50); -webkit-font-smoothing: antialiased; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.cursor-pointer { cursor: pointer; }
.fs-6 { font-size: .8rem !important; }

.auth-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%); padding: 2rem 1rem; position: relative; overflow: hidden; }
.auth-body::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 50%); animation: authPulse 8s ease-in-out infinite; }
@keyframes authPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.auth-wrapper { width: 100%; max-width: 440px; position: relative; z-index: 1; }
.auth-card { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg), 0 0 40px rgba(37,99,235,.1); border: 1px solid rgba(255,255,255,.2); animation: slideUp .5s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo i { font-size: 2.5rem; color: var(--primary); display: block; margin-bottom: .5rem; }
.auth-logo span { font-size: 1.25rem; font-weight: 700; color: var(--dark); letter-spacing: -.025em; }

.auth-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: .25rem; color: var(--dark); }
.auth-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 1.75rem; font-size: .9rem; }
.auth-link { color: var(--primary); text-decoration: none; transition: var(--transition); }
.auth-link:hover { color: var(--primary-dark); text-decoration: underline; }

.btn-auth { padding: .75rem; font-weight: 600; border-radius: var(--radius); transition: var(--transition); }
.btn-auth:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.3); }

.auth-divider { position: relative; text-align: center; margin: 1.5rem 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; border-top: 1px solid var(--gray-200); }
.auth-divider span { background: #fff; padding: 0 1rem; position: relative; color: var(--gray-400); font-size: .8rem; }

.auth-footer { text-align: center; margin-top: 1.5rem; }
.auth-footer p { color: rgba(255,255,255,.4); font-size: .75rem; }

.input-group-text { background: var(--gray-50); border-color: var(--gray-200); color: var(--gray-400); }
.form-control, .form-select { border-color: var(--gray-200); border-radius: var(--radius-sm); transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

.app-body { display: flex; min-height: 100vh; }

.sidebar { position: fixed; top: 0; left: 0; width: var(--sidebar-width); height: 100vh; background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); color: #e2e8f0; z-index: 1000; display: flex; flex-direction: column; transition: transform var(--transition); overflow-y: auto; }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.sidebar-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.sidebar-logo i { font-size: 1.5rem; color: var(--primary-light); }
.sidebar-logo span { font-size: 1.1rem; font-weight: 700; letter-spacing: -.025em; color: #fff; }
.sidebar-logo-img { max-height: 44px; max-width: 160px; object-fit: contain; }
.lp-logo-img { max-height: 40px; max-width: 160px; object-fit: contain; }

.sidebar-user { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: .75rem; }
.sidebar-avatar img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.avatar-placeholder { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.avatar-placeholder--lg { width: 100px; height: 100px; font-size: 2.5rem; margin: 0 auto; }
.sidebar-user-info { display: flex; flex-direction: column; }
.sidebar-user-name { font-weight: 600; font-size: .875rem; color: #fff; }
.sidebar-user-credits { font-size: .75rem; color: #94a3b8; }

.sidebar-nav { padding: .75rem 0; flex: 1; }
.sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
.sidebar-section { padding: .75rem 1.5rem .25rem; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: #475569; font-weight: 600; }
.sidebar-nav a { display: flex; align-items: center; gap: .75rem; padding: .6rem 1.5rem; color: #94a3b8; text-decoration: none; transition: var(--transition); font-size: .85rem; border-left: 3px solid transparent; }
.sidebar-nav a:hover { background: rgba(255,255,255,.04); color: #e2e8f0; }
.sidebar-nav a.active { background: rgba(37,99,235,.12); color: var(--primary-light); border-left-color: var(--primary-light); font-weight: 600; }
.sidebar-nav a i { width: 20px; text-align: center; font-size: .9rem; }

.notification-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; font-size: .65rem; font-weight: 700; background: var(--danger); color: #fff; border-radius: 999px; padding: 0 5px; margin-left: auto; }
.notification-badge:empty { display: none; }

.app-main { flex: 1; margin-left: var(--sidebar-width); display: flex; flex-direction: column; min-height: 100vh; }

.app-header { height: var(--header-height); background: #fff; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; position: sticky; top: 0; z-index: 500; box-shadow: var(--shadow-sm); }
.header-left { display: flex; align-items: center; gap: 1rem; }
.page-title { font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--dark); }
.header-right { display: flex; align-items: center; gap: .75rem; }
.btn-icon { border: none; background: none; padding: .5rem; color: var(--gray-500); position: relative; cursor: pointer; border-radius: var(--radius-sm); transition: var(--transition); }
.btn-icon:hover { background: var(--gray-100); color: var(--dark); }
.notification-dot { position: absolute; top: 4px; right: 4px; width: 8px; height: 8px; background: var(--danger); border-radius: 50%; border: 2px solid #fff; }

.notification-dropdown { width: 340px; max-height: 400px; padding: 0; }
.notification-dropdown .dropdown-header { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-100); font-weight: 600; }
.notification-list { max-height: 300px; overflow-y: auto; }
.notification-dropdown .dropdown-footer { padding: .5rem 1rem; border-top: 1px solid var(--gray-100); text-align: center; }

.app-content { padding: 1.5rem; flex: 1; }

.card { border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; margin-bottom: 0; }
.card-header { padding: .875rem 1.25rem; background: transparent; border-bottom: 1px solid var(--gray-100); font-weight: 600; }

.stat-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card__icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.stat-card--primary .stat-card__icon { background: var(--primary-50); color: var(--primary); }
.stat-card--success .stat-card__icon { background: #ecfdf5; color: var(--success); }
.stat-card--warning .stat-card__icon { background: #fffbeb; color: var(--warning); }
.stat-card--danger .stat-card__icon { background: #fef2f2; color: var(--danger); }
.stat-card--info .stat-card__icon { background: #ecfeff; color: var(--info); }
.stat-card--secondary .stat-card__icon { background: var(--gray-100); color: var(--secondary); }
.stat-card__info { display: flex; flex-direction: column; }
.stat-card__value { font-size: 1.5rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-card__label { font-size: .75rem; color: var(--gray-500); margin-top: .25rem; }

.table { font-size: .85rem; }
.table th { font-weight: 600; color: var(--gray-500); text-transform: uppercase; font-size: .7rem; letter-spacing: .05em; border-bottom: 2px solid var(--gray-200); white-space: nowrap; }
.table td { vertical-align: middle; padding: .75rem; }
.table-hover tbody tr:hover { background-color: var(--primary-50); }

.badge { font-weight: 500; font-size: .7rem; padding: .35em .65em; border-radius: var(--radius-sm); }

.service-list { display: flex; flex-direction: column; gap: .5rem; }
.service-item { display: flex; align-items: center; gap: .75rem; padding: .75rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.service-item:hover { border-color: var(--primary-light); background: var(--primary-50); }
.service-checkbox { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.service-checkbox:checked ~ .service-info { color: var(--primary); }
.service-info { display: flex; justify-content: space-between; flex: 1; }
.service-name { font-weight: 500; }
.service-cost { font-weight: 600; color: var(--primary); }

.credit-summary { padding: 1rem; background: var(--gray-50); border-radius: var(--radius-sm); }

.transaction-list { display: flex; flex-direction: column; gap: .75rem; }
.transaction-item { display: flex; align-items: center; gap: .75rem; }
.transaction-icon { font-size: 1.1rem; }
.transaction-info { flex: 1; display: flex; flex-direction: column; }
.transaction-desc { font-size: .8rem; font-weight: 500; }
.transaction-amount { font-weight: 700; font-size: .85rem; white-space: nowrap; }

.message-list { display: flex; flex-direction: column; gap: .75rem; max-height: 500px; overflow-y: auto; }
.message-item { padding: .75rem 1rem; border-radius: var(--radius); position: relative; }
.message-user { background: var(--gray-50); border: 1px solid var(--gray-200); }
.message-admin { background: var(--primary-50); border: 1px solid var(--primary-100); }
.message-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .25rem; }
.message-body { font-size: .85rem; color: var(--gray-700); line-height: 1.5; }
.message-attachment { margin-top: .5rem; font-size: .8rem; }
.message-attachment a { color: var(--primary); }

.notification-item.unread { background: var(--primary-50); border-left: 3px solid var(--primary); }
.notification-type-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }

.file-item { padding: .5rem; border-radius: var(--radius-sm); transition: var(--transition); }
.file-item:hover { background: var(--gray-50); }

.profile-avatar { display: flex; justify-content: center; }
.profile-avatar img { border: 3px solid var(--primary-100); }

.pagination { margin-top: 1.5rem; justify-content: center; }
.page-link { color: var(--primary); border-color: var(--gray-200); border-radius: var(--radius-sm); margin: 0 2px; }
.page-link:hover { background: var(--primary-50); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

.alert { border-radius: var(--radius-sm); border: none; font-size: .85rem; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fffbeb; color: #92400e; }
.alert-info { background: #ecfeff; color: #155e75; }

.dropzone { border: 2px dashed var(--gray-300); border-radius: var(--radius); background: var(--gray-50); transition: var(--transition); min-height: 180px; }
.dropzone:hover { border-color: var(--primary); background: var(--primary-50); }
.dropzone .dz-message { margin: 2em 0; text-align: center; }
.dropzone .dz-preview .dz-details { padding: .5rem; }

/* ============================================================
   YENİ TALEP FORMU — Full Redesign v2: Premium Dark Dashboard
   ============================================================ */

/* --- Wrapper --- */
.request-form-wrapper {
    background: #07111f;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(56,189,248,.12);
    box-shadow:
        0 24px 64px rgba(0,0,0,.65),
        0 0 0 1px rgba(56,189,248,.04) inset;
    position: relative;
    display: flex;
    flex-direction: column;
}
@keyframes rfHeaderLine {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.request-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0369a1, #0ea5e9 30%, #38bdf8 60%, #0ea5e9 80%, #0369a1);
    background-size: 200% 100%;
    animation: rfHeaderLine 5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

/* --- Header --- */
.request-form-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(90deg, rgba(14,165,233,.10) 0%, rgba(56,189,248,.04) 60%, transparent 100%);
    border-bottom: 1px solid rgba(56,189,248,.1);
    position: relative;
}
.rfh-left { display: flex; align-items: center; gap: 1rem; }
.rfh-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(14,165,233,.22), rgba(56,189,248,.08));
    border: 1px solid rgba(56,189,248,.28);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #38bdf8;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(56,189,248,.14);
}
.request-form-header h5 {
    color: #f0f9ff;
    font-size: 1rem;
    letter-spacing: -.01em;
    margin-bottom: 0;
}
.rfh-subtitle {
    font-size: .71rem;
    color: #334155;
    margin-top: 2px;
    display: block;
}
.total-credit-badge {
    color: #38bdf8;
    font-weight: 700;
    font-size: .83rem;
    background: rgba(14,165,233,.1);
    padding: .45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,.22);
    display: flex; align-items: center; gap: .4rem;
    box-shadow: 0 0 16px rgba(14,165,233,.1);
    letter-spacing: .01em;
}

/* --- Body --- */
.request-form-body { padding: 1.5rem 1.75rem; flex: 1; }

/* --- Section Cards (Araç Bilgileri) --- */
.form-section-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.form-section-card-header {
    display: flex; align-items: center; gap: .6rem;
    padding: .65rem 1.1rem;
    background: rgba(14,165,233,.06);
    border-bottom: 1px solid rgba(255,255,255,.045);
    border-left: 3px solid #0ea5e9;
    font-size: .68rem;
    font-weight: 700;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.form-section-card-header i { font-size: .82rem; color: #0ea5e9; }
.form-section-card-body { padding: 1rem 1.1rem; }

/* --- Grid & Fields --- */
.form-grid-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }
.form-grid-row--mt { margin-top: .75rem; }
.form-field-group { display: flex; flex-direction: column; }
.form-label-sm {
    display: block;
    font-size: .62rem;
    color: #475569;
    margin-bottom: .3rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* --- Inputs & Selects --- */
.form-select-dark, .form-control-dark {
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.07);
    color: #cbd5e1;
    font-size: .8rem;
    padding: .55rem .85rem;
    border-radius: 8px;
    transition: all .2s ease;
    outline: none;
    width: 100%;
    height: 38px;
    line-height: 1;
}
.form-control-dark { height: auto; }
.form-select-dark:hover, .form-control-dark:hover { border-color: rgba(56,189,248,.22); }
.form-select-dark:focus, .form-control-dark:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14,165,233,.14), 0 0 20px rgba(14,165,233,.06);
    background: rgba(14,165,233,.06);
    color: #e0f2fe;
}
.form-select-dark option { background: #0c1525; color: #cbd5e1; }
.form-control-dark::placeholder { color: rgba(148,163,184,.32); font-size: .77rem; }

/* --- Stage Selection Area --- */
.stage-selection-area {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 12px;
    padding: 1.1rem 1.1rem .75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.stage-selection-label {
    display: flex; align-items: center; gap: .5rem;
    font-size: .65rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .85rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.stage-selection-label i { color: #0ea5e9; font-size: .8rem; }

/* Stage Buttons — Card Style */
.stage-buttons-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; }
.stage-btn {
    padding: 1rem .6rem .85rem;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
    color: #64748b;
    border-radius: 10px;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .15rem;
    min-height: 88px;
}
.stage-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0369a1, #38bdf8);
    transform: scaleX(0);
    transition: transform .22s ease;
    border-radius: 0 0 10px 10px;
}
.stage-btn:hover {
    border-color: rgba(14,165,233,.38);
    background: rgba(14,165,233,.07);
    color: #bae6fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,.12);
}
.stage-btn:hover::after { transform: scaleX(1); }
.stage-btn.active {
    background: linear-gradient(160deg, rgba(14,165,233,.16), rgba(56,189,248,.07));
    border-color: #0ea5e9;
    color: #e0f2fe;
    box-shadow: 0 0 0 1px rgba(14,165,233,.28), 0 8px 28px rgba(14,165,233,.18);
}
.stage-btn.active::after { transform: scaleX(1); }
.stage-btn-name {
    font-size: .62rem;
    font-weight: 700;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.3;
}
.stage-btn-credit {
    font-size: 1.55rem;
    font-weight: 800;
    color: inherit;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-top: .1rem;
}
.stage-btn.active .stage-btn-credit { color: #38bdf8; }
.stage-btn-unit {
    font-size: .58rem;
    color: inherit;
    opacity: .6;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* More Options */
.more-options-row { display: flex; margin-top: .65rem; }
.more-options-btn {
    padding: .5rem 1.4rem;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.025);
    color: #475569;
    font-size: .73rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex; align-items: center; gap: .4rem;
}
.more-options-btn:hover {
    border-color: rgba(14,165,233,.32);
    background: rgba(14,165,233,.07);
    color: #7dd3fc;
}
.more-options-btn.active {
    background: rgba(14,165,233,.14);
    border-color: #0ea5e9;
    color: #38bdf8;
    box-shadow: 0 0 12px rgba(14,165,233,.15);
}

/* --- Selected Stage Summary --- */
#selectedStageSummary {
    margin-bottom: .65rem;
    margin-top: 1.25rem;
}
.selected-stage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.selected-stage-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem .75rem;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 700;
    background: rgba(16, 185, 129, .13);
    border: 1px solid rgba(16, 185, 129, .35);
    color: #34d399;
    letter-spacing: .02em;
}
.selected-stage-badge i {
    font-size: .72rem;
    color: #10b981;
}
.selected-stage-badge-credit {
    font-weight: 600;
    opacity: .8;
    font-size: .68rem;
}

/* --- Services --- */
.services-section-title {
    color: #475569;
    font-size: .65rem;
    font-weight: 700;
    margin-bottom: .75rem;
    margin-top: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    display: flex; align-items: center; gap: .5rem;
}
.services-section-title::after {
    content: ''; flex: 1;
    height: 1px;
    background: rgba(255,255,255,.04);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.service-grid-item { background: transparent; }
.service-grid-label {
    display: flex; align-items: center; gap: .55rem;
    padding: .55rem .8rem;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    color: #475569;
    font-size: .77rem;
    background: rgba(255,255,255,.02);
}
.service-grid-label:hover {
    border-color: rgba(14,165,233,.28);
    background: rgba(14,165,233,.07);
    color: #bae6fd;
}
.service-grid-label input[type="checkbox"] {
    accent-color: #0ea5e9;
    width: 15px; height: 15px;
    flex-shrink: 0; cursor: pointer;
}
.service-grid-label input[type="checkbox"]:checked ~ .service-grid-text { color: #38bdf8; }
.service-grid-text { font-weight: 500; }

/* --- Original File Notice --- */
.original-file-notice {
    color: #38bdf8;
    font-size: .82rem;
    padding: .65rem .9rem;
    background: rgba(14,165,233,.07);
    border: 1px solid rgba(14,165,233,.18);
    border-radius: 8px;
    display: flex; align-items: center; gap: .6rem;
    margin: .5rem 0;
}

/* --- Upload Section --- */
.upload-section { margin-bottom: 1.1rem; }
.upload-section-header, .notes-section-header {
    display: flex; align-items: center; gap: .5rem;
    font-size: .65rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: .55rem;
}
.upload-section-header i, .notes-section-header i { color: #0ea5e9; font-size: .82rem; }

/* --- Dropzone Upload Lock --- */
.dropzone-hint-locked {
    color: #f59e0b;
    font-size: .78rem;
    padding: .5rem .8rem;
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: 8px;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.dropzone-locked {
    cursor: not-allowed !important;
}
.stage-btn-disabled {
    opacity: 0.38 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(60%);
}

.dropzone-dark {
    background: rgba(14,165,233,.03) !important;
    border: 2px dashed rgba(14,165,233,.18) !important;
    border-radius: 12px !important;
    min-height: 140px !important;
    transition: all .25s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
}
.dropzone-dark:hover {
    background: rgba(14,165,233,.08) !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 32px rgba(14,165,233,.12) !important;
}
.dropzone-dark .dz-message { margin: 0 !important; text-align: center; }
.dropzone-dark .fa-file-alt { color: #1e3a5f !important; }
.dropzone-text { color: #38bdf8; font-size: .8rem; margin-bottom: 0; }

/* --- Notes Section --- */
.notes-section { margin-bottom: 1rem; }

/* --- Submit Footer --- */
.form-submit-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,.05);
    background: rgba(0,0,0,.22);
}
.credit-info-inline { display: flex; align-items: center; gap: .25rem; }
.credit-info-item { display: flex; flex-direction: column; padding: 0 1.1rem; }
.credit-info-item:first-child { padding-left: 0; }
.credit-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,.07);
    flex-shrink: 0;
}
.credit-label {
    font-size: .62rem;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
    margin-bottom: 1px;
}
.credit-info-item strong {
    font-size: .92rem;
    color: #e0f2fe;
    font-weight: 700;
}

.btn-submit-request {
    display: flex; align-items: center; gap: .65rem;
    padding: .75rem 2.2rem;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .22s ease;
    box-shadow: 0 4px 20px rgba(14,165,233,.28);
    letter-spacing: .01em;
}
.btn-submit-request:hover:not(:disabled) {
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    box-shadow: 0 8px 28px rgba(14,165,233,.38);
    transform: translateY(-1px);
}
.btn-submit-request:disabled {
    opacity: .35;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media (max-width: 991.98px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.show { transform: translateX(0); }
    .app-main { margin-left: 0; }
    .app-content { padding: 1rem; }
    .form-grid-row { grid-template-columns: repeat(2, 1fr); }
    .stage-buttons-row { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .request-form-body { padding: 1.1rem 1.1rem; }
    .form-submit-row { padding: 1rem 1.1rem; }
}

@media (max-width: 575.98px) {
    .form-grid-row { grid-template-columns: 1fr; }
    .stage-buttons-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; gap: 1rem; align-items: stretch; }
    .btn-submit-request { width: 100%; justify-content: center; }
    .request-form-header { flex-wrap: wrap; gap: .75rem; }
    .stage-btn { min-height: 76px; }
    .stage-btn-credit { font-size: 1.3rem; }
}

.service-notice-bar {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .75rem 1.5rem;
    background: rgba(239,68,68,.08);
    border-top: 1px solid rgba(239,68,68,.2);
    color: #fca5a5;
    font-size: .78rem;
    line-height: 1.5;
}
.service-notice-bar strong { color: #fca5a5; font-weight: 700; }
.service-notice-icon { font-size: 1rem; flex-shrink: 0; }
