/* ============================================
   huunr - Naukri.com Inspired Design
   Clean, Information-Dense Job Portal
   ============================================ */

/* ============================================
   1. VARIABLES
   ============================================ */

:root {
    /* Naukri-inspired Colors */
    --primary: #457eff;
    --primary-hover: #3366e6;
    --primary-light: #e8f0ff;
    --primary-dark: #1a4fcc;

    --secondary: #ff7555;
    --secondary-hover: #e65c3d;
    --secondary-light: #fff0ed;

    --success: #00c853;
    --success-light: #e6f9ed;
    --success-dark: #00a344;

    --warning: #ff9800;
    --warning-light: #fff4e5;
    --warning-dark: #e68a00;

    --danger: #f44336;
    --danger-light: #ffebee;
    --danger-dark: #d32f2f;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #474d52;
    --gray-900: #212121;

    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #8c8c8c;

    --bg-page: #f7f7f7;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);

    /* Borders */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-xs: 11px;
    --font-sm: 13px;
    --font-base: 14px;
    --font-md: 15px;
    --font-lg: 17px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 28px;

    /* Spacing */
    --header-height: 60px;
    --container-max: 1200px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */

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

html {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-base);
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-page);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
}

h1 { font-size: var(--font-2xl); }
h2 { font-size: var(--font-xl); }
h3 { font-size: var(--font-lg); }
h4 { font-size: var(--font-md); }

p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: var(--font-sm); }

/* ============================================
   4. LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

main {
    flex: 1;
    padding: 20px 0;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.hidden { display: none !important; }

/* ============================================
   5. HEADER - Naukri Style
   ============================================ */

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
}

.header .container {
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo-img {
    height: 32px;
    width: auto;
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: var(--font-sm);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
    text-decoration: none;
}

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

.nav-btn-login {
    margin-left: 8px;
}

/* User Menu */
.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-sm);
    font-weight: 600;
}

.nav-username {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-sm);
}

.nav-logout {
    color: var(--text-muted) !important;
    font-size: var(--font-sm);
}

.nav-logout:hover {
    color: var(--danger) !important;
}

/* Notification Bell */
.nav-notification {
    position: relative;
}

.notification-bell {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.notification-bell:hover {
    background: var(--gray-100);
}

.bell-icon {
    display: flex;
    color: var(--text-secondary);
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 200;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.notification-header span {
    font-weight: 600;
}

.notification-list {
    max-height: 320px;
    overflow-y: auto;
}

.notification-empty {
    padding: 40px 16px;
    text-align: center;
    color: var(--text-muted);
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: var(--primary-light);
}

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open {
    display: block;
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.25rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
    text-decoration: none;
}

.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(45, 95, 234, 0.08);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

/* Menu toggle animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .nav { display: block; }
    .menu-toggle { display: none; }
    .mobile-nav { display: none !important; }
    .mobile-nav-overlay { display: none !important; }
}

/* ============================================
   6. FOOTER
   ============================================ */

.footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 32px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 12px;
}

.footer-logo:hover { text-decoration: none; }

.footer-logo-img {
    height: 28px;
}

.footer-tagline {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--success);
    background: var(--success-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

.footer-links h4,
.footer-title {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin: 0;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
    .footer-brand {
        grid-column: span 1;
    }
}

/* ============================================
   7. BUTTONS - Naukri Style
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* Primary - Blue */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

/* Secondary - Orange (CTA) */
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

/* Accent - Green */
.btn-accent {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-accent:hover {
    background: var(--success-dark);
    border-color: var(--success-dark);
}

/* Warning */
.btn-warning {
    background: var(--warning);
    color: var(--white);
    border-color: var(--warning);
}

.btn-warning:hover {
    background: var(--warning-dark);
    border-color: var(--warning-dark);
}

/* Danger */
.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-danger:hover {
    background: var(--danger-dark);
    border-color: var(--danger-dark);
}

/* Outline */
.btn-outline {
    background: var(--white);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* Outline Primary */
.btn-outline-primary {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

/* Sizes */
.btn-sm {
    padding: 6px 14px;
    font-size: var(--font-xs);
}

.btn-lg {
    padding: 14px 28px;
    font-size: var(--font-base);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   8. FORMS
   ============================================ */

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: var(--font-base);
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:hover {
    border-color: var(--gray-400);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control.error {
    border-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.05);
}

.form-control.error:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-control.success {
    border-color: var(--success);
}

.form-control.success:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-hint {
    font-size: var(--font-xs);
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    font-size: var(--font-xs);
    color: var(--danger);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: shake 0.3s ease-in-out;
}

.form-error::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 16px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-section-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light, #eff6ff);
    border-radius: 10px;
    color: var(--primary);
}

.form-section-icon svg {
    width: 20px;
    height: 20px;
}

.form-section-title {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--text-primary);
}

/* Salary Range */
.salary-range-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.salary-range-row .form-control {
    flex: 1;
}

.salary-range-separator {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Form Actions */
.form-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.form-actions .btn {
    min-width: 150px;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
}

.phone-prefix {
    padding: 10px 14px;
    background: var(--gray-100);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--text-secondary);
    font-size: var(--font-base);
    font-weight: 500;
}

.phone-input-wrapper .form-control {
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================
   9. CARDS
   ============================================ */

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.card-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ============================================
   10. ALERTS
   ============================================ */

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: var(--font-sm);
}

.alert-success {
    background: var(--success-light);
    color: var(--success-dark);
    border: 1px solid var(--success);
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger-dark);
    border: 1px solid var(--danger);
}

.alert-warning {
    background: var(--warning-light);
    color: var(--warning-dark);
    border: 1px solid var(--warning);
}

.alert-info {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

/* ============================================
   11. BADGES
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: var(--font-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

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

.badge-secondary {
    background: var(--gray-500);
    color: var(--white);
}

.badge-success {
    background: var(--success-light);
    color: var(--success-dark);
}

.badge-warning {
    background: var(--warning-light);
    color: var(--warning-dark);
}

.badge-danger {
    background: var(--danger-light);
    color: var(--danger-dark);
}

.badge-verified {
    background: var(--success-light);
    color: var(--success);
}

/* ============================================
   12. LOADING
   ============================================ */

.loading {
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
    border-radius: 4px;
}

.skeleton-text.short { width: 40%; }
.skeleton-text.medium { width: 70%; }
.skeleton-text.long { width: 100%; }

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-card {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.skeleton-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Loading overlay for buttons/forms */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-outline.loading::after {
    border-color: rgba(0,0,0,0.2);
    border-top-color: var(--primary);
}

/* ============================================
   13. HOME - HERO (Naukri Style)
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #457eff 0%, #1a4fcc 100%);
    color: var(--white);
    padding: 40px 16px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -20px;
    margin-bottom: 24px;
    width: 100vw;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: var(--font-md);
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.9;
}

.hero-stats .stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats .stat-icon svg {
    width: 18px;
    height: 18px;
}

.hero-stats .stat-text {
    font-size: var(--font-sm);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (min-width: 768px) {
    .hero-section {
        padding: 50px 24px;
    }
    .hero-title {
        font-size: var(--font-3xl);
    }
}

/* ============================================
   14. HOME - SECTIONS
   ============================================ */

.search-section {
    margin-bottom: 32px;
}

.search-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.search-form {
    margin-top: 16px;
}

.search-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-field {
    flex: 1;
}

.search-btn {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .search-row {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* How It Works */
.how-it-works {
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xs);
    font-weight: 700;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 6px;
}

.step-desc {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* Categories - Naukri Style */
.categories-section {
    margin-bottom: 32px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.category-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.category-icon svg {
    width: 22px;
    height: 22px;
}

.category-name {
    font-weight: 500;
    font-size: var(--font-sm);
    color: var(--text-primary);
}

.category-card-all {
    background: var(--gray-50);
}

.category-card-all .category-icon {
    background: var(--gray-200);
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    margin-bottom: 24px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.cta-card:hover {
    box-shadow: var(--shadow);
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-worker .cta-icon {
    background: var(--success-light);
    color: var(--success);
}

.cta-employer .cta-icon {
    background: var(--secondary-light);
    color: var(--secondary);
}

.cta-card h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ============================================
   15. JOB SEARCH PAGE - Naukri Style
   ============================================ */

.job-search-container {
    max-width: 100%;
}

.search-hero {
    background: linear-gradient(135deg, #457eff 0%, #1a4fcc 100%);
    color: var(--white);
    padding: 32px 16px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -20px;
    margin-bottom: 24px;
    width: 100vw;
    text-align: center;
}

.search-hero h1 {
    color: var(--white);
    margin-bottom: 8px;
}

.search-hero p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0 14px;
    flex: 1;
}

.search-input-group svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-input-group input {
    flex: 1;
    border: none;
    padding: 12px 10px;
    font-size: var(--font-base);
    background: transparent;
    color: var(--text-primary);
}

.search-input-group input:focus {
    outline: none;
}

.search-input-group input::placeholder {
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .search-bar {
        flex-direction: row;
        background: var(--white);
        border-radius: var(--radius);
        padding: 6px;
        gap: 0;
    }
    .search-input-group {
        border-radius: 0;
    }
    .search-input-group:first-child {
        border-right: 1px solid var(--border-color);
    }
    .search-bar .btn {
        border-radius: var(--radius-sm);
    }
}

/* Filter Mobile Toggle */
.filter-toggle-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: var(--font-sm);
    color: var(--text-primary);
}

.filter-toggle-mobile svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .filter-toggle-mobile {
        display: none;
    }
}

/* Search Content */
.search-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .search-content {
        grid-template-columns: 240px 1fr;
    }
}

/* Filter Sidebar */
.filter-sidebar {
    display: none;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    height: fit-content;
}

.filter-sidebar.open {
    display: block;
}

@media (min-width: 768px) {
    .filter-sidebar {
        display: block;
        position: sticky;
        top: calc(var(--header-height) + 16px);
    }
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.filter-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-base);
    margin: 0;
}

.filter-header h3 svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.filter-reset {
    font-size: var(--font-sm);
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

.filter-section {
    margin-bottom: 16px;
}

.filter-section-title {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Results */
.results-area {
    min-height: 400px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

/* Job Cards - Naukri Style */
.job-card-enhanced {
    display: block;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.job-card-enhanced:hover {
    text-decoration: none;
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.job-card-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.job-card-company {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.job-card-company svg {
    width: 14px;
    height: 14px;
}

.job-card-salary {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--success);
    white-space: nowrap;
}

.job-card-salary svg {
    width: 14px;
    height: 14px;
}

.job-card-meta {
    margin-bottom: 10px;
}

.job-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.job-card-meta-item svg {
    width: 14px;
    height: 14px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.job-card-category {
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.job-card-posted {
    font-size: var(--font-xs);
    color: var(--text-muted);
}

/* Empty State */
.search-empty {
    text-align: center;
    padding: 48px 20px;
}

.search-empty-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.search-empty-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
}

.search-empty-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.search-empty-text {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ============================================
   16. REGISTRATION PAGES
   ============================================ */

.register-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .register-layout {
        grid-template-columns: 1fr 300px;
    }
}

.register-form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
}

.register-header {
    text-align: center;
    margin-bottom: 24px;
}

.register-header h1 {
    font-size: var(--font-xl);
    margin-bottom: 8px;
}

.register-header p {
    color: var(--text-secondary);
    margin: 0;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: var(--font-xs);
    color: var(--text-muted);
}

.progress-step.active {
    color: var(--primary);
}

.progress-step .step-number {
    position: static;
    transform: none;
    width: 28px;
    height: 28px;
    background: var(--gray-200);
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.progress-step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.progress-line {
    width: 50px;
    height: 2px;
    background: var(--gray-200);
    margin-bottom: 16px;
}

/* Category Chips */
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-size: var(--font-sm);
}

.category-chip:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.category-chip.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.category-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.category-chip-icon svg {
    width: 16px;
    height: 16px;
}

.category-chip-check {
    display: none;
}

.category-chip.selected .category-chip-check::before {
    content: '\2713';
    font-size: var(--font-sm);
}

/* Benefits Card */
.benefits-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
}

.benefits-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: 16px;
}

.benefits-title svg {
    width: 18px;
    height: 18px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--success-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--success);
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
}

.benefit-content h4 {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.benefit-content p {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    margin: 0;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--success-light);
    border-radius: var(--radius);
}

.trust-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 18px;
    height: 18px;
}

.trust-badge-text {
    font-size: var(--font-xs);
    color: var(--text-secondary);
}

.trust-badge-text strong {
    display: block;
    font-size: var(--font-sm);
    color: var(--text-primary);
}

/* Employer Type Cards */
.employer-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .employer-type-cards {
        grid-template-columns: 1fr;
    }
}

.employer-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.employer-type-card:hover {
    border-color: var(--primary);
}

.employer-type-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.employer-type-card input[type="radio"] {
    display: none;
}

.employer-type-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.employer-type-icon svg {
    width: 20px;
    height: 20px;
}

.employer-type-card.selected .employer-type-icon {
    background: var(--primary);
    color: var(--white);
}

.employer-type-name {
    font-weight: 600;
    font-size: var(--font-sm);
}

.employer-type-desc {
    font-size: var(--font-xs);
    color: var(--text-muted);
}

/* ============================================
   17. LOGIN PAGE
   ============================================ */

.login-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--bg-page);
}

.login-container {
    width: 100%;
    max-width: 380px;
}

.login-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo-img {
    height: 36px;
    margin: 0 auto;
}

.login-title {
    font-size: var(--font-xl);
    margin-bottom: 6px;
}

.login-subtitle {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-sm);
}

.login-form {
    margin-bottom: 20px;
}

.otp-input {
    text-align: center;
    font-size: var(--font-xl);
    letter-spacing: 8px;
    font-weight: 600;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.register-options {
    text-align: center;
}

.register-text {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.register-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-xs);
    color: var(--text-muted);
}

.trust-indicator svg {
    width: 14px;
    height: 14px;
    color: var(--success);
}

/* Login page layout fixes - break out of container */
.login-page {
    margin: -20px -16px; /* Negate main padding and container padding */
    padding: 24px 16px;
    width: calc(100% + 32px);
}

@media (min-width: 768px) {
    .login-page {
        margin: -20px -24px;
        width: calc(100% + 48px);
    }
}

/* ============================================
   18. DASHBOARD
   ============================================ */

.dashboard-layout {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-header {
    margin-bottom: 24px;
}

.welcome-header h1 {
    font-size: var(--font-xl);
    margin-bottom: 4px;
}

.welcome-header p {
    color: var(--text-secondary);
    margin: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card .stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-card .stat-icon.primary {
    background: var(--primary-light);
    color: var(--primary);
}

.stat-card .stat-icon.secondary {
    background: var(--success-light);
    color: var(--success);
}

.stat-card .stat-icon.warning {
    background: var(--warning-light);
    color: var(--warning);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

/* Pending Alert */
.pending-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--warning-light);
    border: 1px solid var(--warning);
    border-radius: var(--radius);
    margin-bottom: 20px;
    gap: 12px;
}

.pending-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pending-alert-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warning);
    flex-shrink: 0;
}

.pending-alert-icon svg {
    width: 18px;
    height: 18px;
}

.pending-alert-text {
    font-size: var(--font-sm);
    color: var(--warning-dark);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 500px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    text-decoration: none;
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.quick-action-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-action-icon svg {
    width: 22px;
    height: 22px;
}

.quick-action-icon.primary {
    background: var(--primary-light);
    color: var(--primary);
}

.quick-action-icon.secondary {
    background: var(--success-light);
    color: var(--success);
}

.quick-action-content h4 {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: 2px;
}

.quick-action-content p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: var(--font-lg);
    margin: 0;
}

.section-header a {
    font-size: var(--font-sm);
}

/* Recent Jobs */
.recent-jobs-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.recent-job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.recent-job-item:last-child {
    border-bottom: none;
}

.recent-job-item:hover {
    background: var(--gray-50);
}

.recent-job-info h4 {
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 2px;
}

.recent-job-info p {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    margin: 0;
}

.recent-job-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recent-job-applicants {
    font-size: var(--font-xs);
    color: var(--text-secondary);
}

.empty-recent-jobs {
    padding: 40px 20px;
    text-align: center;
}

.empty-recent-jobs svg {
    width: 48px;
    height: 48px;
    color: var(--gray-300);
    margin: 0 auto 12px;
}

.empty-recent-jobs h4 {
    font-size: var(--font-base);
    margin-bottom: 4px;
}

.empty-recent-jobs p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Profile Link */
.profile-link {
    text-align: center;
}

.profile-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* ============================================
   19. PROFILE PAGES
   ============================================ */

.profile-layout {
    max-width: 700px;
    margin: 0 auto;
}

.company-header {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.company-header-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-logo {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
}

.company-logo svg {
    width: 32px;
    height: 32px;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: var(--font-xl);
    margin-bottom: 8px;
}

.company-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.company-type-badge svg {
    width: 12px;
    height: 12px;
}

.company-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.company-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.company-contact-item svg {
    width: 14px;
    height: 14px;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 500px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

.stats-row .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0;
}

.stats-row .stat-value {
    font-size: var(--font-2xl);
    margin-bottom: 4px;
}

/* Edit Profile Card */
.edit-profile-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.edit-profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.edit-profile-header h2 {
    font-size: var(--font-lg);
    margin: 0;
}

.edit-profile-header svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* ============================================
   20. WORKER SEARCH
   ============================================ */

.search-layout {
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: var(--font-xl);
    margin-bottom: 4px;
}

.page-header p {
    color: var(--text-secondary);
    margin: 0;
}

.search-controls-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

/* Worker Cards */
.worker-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.worker-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.worker-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.worker-info h3 {
    font-size: var(--font-base);
    margin-bottom: 4px;
}

.worker-info h3 a {
    color: var(--text-primary);
}

.worker-info h3 a:hover {
    color: var(--primary);
}

.worker-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.worker-badges {
    display: flex;
    gap: 8px;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.skill-chip {
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.worker-actions {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* Load More */
.load-more {
    text-align: center;
    padding: 20px;
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 24px;
}

/* ============================================
   21. JOB MANAGEMENT
   ============================================ */

.jobs-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.jobs-layout .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.jobs-layout .page-header h1 {
    margin: 0;
}

/* Data Table */
.data-table-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.data-table thead {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: var(--font-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

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

.data-table tbody tr:hover {
    background: var(--bg-light);
}

.job-title-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-title-text {
    font-weight: 600;
    color: var(--text-primary);
}

.job-title-location {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: var(--font-xs);
    font-weight: 500;
    text-transform: capitalize;
}

.status-badge.open {
    background: #dcfce7;
    color: #166534;
}

.status-badge.filled {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.closed {
    background: #f3f4f6;
    color: #6b7280;
}

.applicant-count {
    font-weight: 600;
    color: var(--text-primary);
}

.applicant-count.has-pending {
    color: var(--primary);
}

.posted-date {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.row-actions {
    display: flex;
    gap: 8px;
}

.row-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.row-action-btn svg {
    width: 16px;
    height: 16px;
}

.row-action-btn:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.row-action-btn.primary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.row-action-btn.danger:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Empty State */
.empty-state-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--text-secondary);
}

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

.empty-state-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.back-link {
    margin-top: 24px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-sm);
    margin-bottom: 16px;
}

.back-btn:hover {
    color: var(--primary);
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

/* Form Card */
.form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.form-card h1 {
    font-size: var(--font-xl);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

/* Quick Actions Card */
.quick-actions-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
}

.quick-actions-title {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

/* Danger Zone */
.danger-zone {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
}

.danger-zone-title {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--danger);
    margin-bottom: 12px;
}

/* Applicants Layout */
.applicants-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Job Header */
.job-header {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.job-header h2 {
    font-size: var(--font-lg);
    margin-bottom: 8px;
}

.job-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.job-header-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Cover Message */
.cover-message {
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.cover-message-label {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cover-message-text {
    font-size: var(--font-sm);
    color: var(--text-primary);
    font-style: italic;
}

.job-list {
    margin-bottom: 24px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.job-card:hover {
    box-shadow: var(--shadow);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.job-title {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.job-company {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.job-salary {
    font-weight: 600;
    color: var(--success);
}

/* ============================================
   22. APPLICANTS
   ============================================ */

.applicant-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
}

.applicant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.applicant-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* ============================================
   23. UTILITIES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.grid { display: grid; }
.w-full { width: 100%; }

@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* ============================================
   24. PROFILE PAGES (Worker & Employer)
   ============================================ */

/* Profile Container */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Profile Header Card */
.profile-header {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.profile-header-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar-text {
    color: var(--white);
    font-size: var(--font-2xl);
    font-weight: 700;
    text-transform: uppercase;
}

/* Profile Info */
.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-id {
    margin-bottom: 8px;
}

/* ID Badge Styling */
.id-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.id-badge .id-prefix {
    color: var(--primary);
    font-weight: 700;
}

.id-badge .id-number {
    color: var(--text-primary);
}

/* Worker ID variant */
.id-badge.id-worker {
    background: linear-gradient(135deg, rgba(69, 126, 255, 0.05) 0%, rgba(69, 126, 255, 0.1) 100%);
    border-color: rgba(69, 126, 255, 0.2);
}

.id-badge.id-worker .id-prefix {
    color: var(--primary);
}

/* Employer ID variant */
.id-badge.id-employer {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.id-badge.id-employer .id-prefix {
    color: #10b981;
}

/* Job ID variant */
.id-badge.id-job {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.id-badge.id-job .id-prefix {
    color: #f59e0b;
}

.profile-phone {
    font-size: var(--font-base);
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.profile-location {
    font-size: var(--font-sm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-location svg {
    width: 14px;
    height: 14px;
}

/* Profile Categories */
.profile-categories {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.profile-categories-label {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.profile-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Profile Stats Row */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.stat-card.highlight {
    background: var(--primary-light);
    border-color: var(--primary);
}

.stat-value {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-card.highlight .stat-value {
    color: var(--primary-dark);
}

.stat-label {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

/* ============================================
   25. VERIFICATION CTA
   ============================================ */

.verification-cta-card {
    background: linear-gradient(135deg, var(--warning-light) 0%, #fff9f0 100%);
    border: 1px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.verification-cta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.verification-cta-icon {
    width: 40px;
    height: 40px;
    background: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verification-cta-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.verification-cta-content h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.verification-cta-content p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

/* Verification Steps */
.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.verification-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verification-step-icon.pending {
    background: var(--gray-200);
    color: var(--text-muted);
}

.verification-step-icon.completed {
    background: var(--success);
    color: var(--white);
}

.verification-step-icon svg {
    width: 16px;
    height: 16px;
}

.verification-step-text {
    flex: 1;
}

.verification-step-text strong {
    display: block;
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.verification-step-text span {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

/* ============================================
   26. EDIT FORM CARDS
   ============================================ */

.edit-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.edit-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-primary);
}

.edit-form-header svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.edit-form-body {
    padding: 20px;
}

/* Category Chips for Edit Form */
.category-chips-edit {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-chip-edit {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.category-chip-edit:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.category-chip-edit.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.category-chip-edit input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   27. APPLICATIONS PAGE
   ============================================ */

.applications-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.applications-header {
    margin-bottom: 24px;
}

.applications-header h1 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Back Link Enhancement */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: var(--font-sm);
    text-decoration: none;
    margin-bottom: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: var(--font-xs);
    font-weight: 600;
}

.filter-tab.active .filter-tab-count {
    background: rgba(255,255,255,0.25);
}

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.results-count {
    font-size: var(--font-sm);
    color: var(--text-muted);
}

/* Application Cards */
.application-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 16px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s ease;
}

.application-card:hover {
    box-shadow: var(--shadow);
}

.application-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.application-job-info {
    flex: 1;
    min-width: 0;
}

.application-job-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.application-job-title:hover {
    text-decoration: underline;
}

.application-company {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.application-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.application-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-sm);
    color: var(--text-muted);
}

.application-meta-item svg {
    width: 14px;
    height: 14px;
}

.application-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge-pending {
    background: var(--warning-light);
    color: var(--warning-dark);
}

.status-badge-viewed {
    background: var(--primary-light);
    color: var(--primary);
}

.status-badge-accepted {
    background: var(--success-light);
    color: var(--success-dark);
}

.status-badge-rejected {
    background: var(--danger-light);
    color: var(--danger-dark);
}

.status-badge-withdrawn {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Job Closed Notice */
.job-closed-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin-top: 12px;
}

.job-closed-notice svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Empty States */
.applications-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.applications-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.applications-empty-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
}

.applications-empty-title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.applications-empty-text {
    font-size: var(--font-base);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Load More */
.load-more-section {
    text-align: center;
    padding: 20px;
}

/* ============================================
   28. VERIFICATION BADGES (Enhanced)
   ============================================ */

.badge-verified {
    background: var(--success);
    color: var(--white);
}

.badge-pending {
    background: var(--warning);
    color: var(--white);
}

.badge-unverified {
    background: var(--gray-400);
    color: var(--white);
}

/* ============================================
   29. RESPONSIVE PROFILE ADJUSTMENTS
   ============================================ */

@media (max-width: 600px) {
    .profile-header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-name {
        justify-content: center;
    }

    .profile-location {
        justify-content: center;
    }

    .profile-categories-list {
        justify-content: center;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .verification-cta-header {
        flex-direction: column;
        text-align: center;
    }

    .filter-tabs {
        justify-content: center;
    }

    .application-card-header {
        flex-direction: column;
    }

    .application-meta {
        flex-direction: column;
        gap: 8px;
    }
}
