/* Kerja Kota Kita — Custom Design */
* { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            background: #faf7f2;
            color: #3d2c1e;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.85rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo-icon {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, #b8651a, #d4892a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            box-shadow: 0 3px 10px rgba(184, 101, 26, 0.35);
        }

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

        .brand-main {
            font-size: 1rem;
            font-weight: 800;
            color: #3d2c1e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .brand-sub {
            font-size: 0.72rem;
            color: #c8813a;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            list-style: none;
        }

        .nav-links li a {
            text-decoration: none;
            color: #5a3e28;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links li a:hover { color: #c8813a; }

        .btn-pasang-loker {
            background: #c8813a !important;
            color: white !important;
            padding: 0.6rem 1.5rem !important;
            border-radius: 25px !important;
            font-weight: 700 !important;
            box-shadow: 0 3px 10px rgba(200, 129, 58, 0.35);
            transition: all 0.2s !important;
        }

        .btn-pasang-loker:hover {
            background: #a86828 !important;
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(200, 129, 58, 0.45) !important;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 360px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero background photo */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('images/hero.jpg');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(30, 15, 5, 0.35) 0%,
                rgba(30, 15, 5, 0.25) 50%,
                rgba(30, 15, 5, 0.5) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 760px;
            padding: 2.5rem 2rem 3rem;
            text-align: center;
        }

        /* Search bar */
        .hero-search-box {
            background: white;
            border-radius: 50px;
            padding: 5px 5px 5px 0;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        /* Sticky search bar saat scroll */
        .sticky-search-bar {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 98;
            background: rgba(42, 26, 14, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.7rem 2rem;
            display: flex;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(0,0,0,0.3);
            transform: translateY(-120%);
            opacity: 0;
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
        }

        .sticky-search-bar.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .sticky-search-bar .hero-search-box {
            max-width: 720px;
            width: 100%;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            border-radius: 40px;
            padding: 4px 4px 4px 0;
        }

        .sticky-search-bar .search-field input { font-size: 0.8rem; }
        .sticky-search-bar .search-btn { padding: 0.6rem 1.4rem; font-size: 0.78rem; }

        .search-field {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.65rem 1.4rem;
        }

        .search-field i {
            color: #b0a090;
            font-size: 0.88rem;
            flex-shrink: 0;
        }

        .search-field input {
            border: none;
            outline: none;
            font-family: inherit;
            font-size: 0.82rem;
            color: #4a3728;
            width: 100%;
            background: transparent;
        }

        .search-field input::placeholder { color: #b8a898; }

        .search-divider {
            width: 1px;
            height: 28px;
            background: #e8ddd4;
            flex-shrink: 0;
        }

        .search-btn {
            background: linear-gradient(135deg, #c8813a, #d4892a);
            color: white;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            font-family: inherit;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.5px;
            white-space: nowrap;
            box-shadow: 0 3px 12px rgba(200, 129, 58, 0.4);
        }

        .search-btn:hover {
            background: linear-gradient(135deg, #a86828, #b8711a);
            transform: scale(1.02);
        }

        /* ===== CATEGORIES ===== */
        .categories-section {
            background: white;
            border-bottom: 1px solid #f0e8de;
        }

        .categories-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.4rem 2rem;
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

        .cat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .cat-item:hover { transform: translateY(-3px); }

        .cat-icon {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            background: #fdf0e2;
            border: 2.5px solid #f0ddc8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        .cat-item:hover .cat-icon {
            background: #fae6d0;
            border-color: #c8813a;
            box-shadow: 0 4px 12px rgba(200, 129, 58, 0.2);
        }

        .cat-item.active .cat-icon {
            background: #c8813a;
            border-color: #a86828;
        }

        .cat-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: #4a3728;
            text-align: center;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: linear-gradient(135deg, #3d2c1e 0%, #6a4520 60%, #c8813a 100%);
            border-bottom: 3px solid #a86828;
        }

        .stats-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .stats-left {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f5e6d3;
            font-size: 0.82rem;
            font-weight: 500;
        }

        .stats-left i { color: #f5c87a; font-size: 0.9rem; }

        .stats-items {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .stat-chip {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            padding: 0.35rem 0.9rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .stat-chip i { font-size: 0.85rem; }

        .stat-chip .stat-num {
            font-size: 1rem;
            font-weight: 800;
            color: #f5c87a;
        }

        .stat-chip.posisi .stat-num { color: #a8f0c8; }

        .stat-divider {
            color: rgba(255,255,255,0.3);
            font-size: 1.1rem;
            font-weight: 300;
        }

        .stats-update {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
            font-style: italic;
        }

        /* ===== MAIN LAYOUT ===== */
        .page-wrap {
            max-width: 1200px;
            margin: 1.8rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 270px;
            gap: 1.8rem;
            align-items: start;
        }

        /* ===== FILTER BAR ===== */
        .filter-bar {
            background: white;
            border-radius: 12px;
            padding: 0.9rem 1.1rem;
            margin-bottom: 1.1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-bar select {
            padding: 0.5rem 0.85rem;
            border: 1.5px solid #e8ddd4;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.8rem;
            color: #5a3e28;
            background: white;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .filter-bar select:focus {
            outline: none;
            border-color: #c8813a;
        }

        .filter-count {
            margin-left: auto;
            font-size: 0.78rem;
            color: #9a7a5a;
            font-weight: 500;
        }

        /* ===== JOB CARDS ===== */
        .jobs-list {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

        .job-card {
            background: white;
            border-radius: 16px;
            padding: 1.25rem 1.35rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
            border: 1.5px solid transparent;
            position: relative;
            cursor: pointer;
        }

        /* Lift-up hover effect */
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 36px rgba(0,0,0,0.13);
            border-color: #e8c99a;
        }

        /* ── Card Header ── */
        .card-header {
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .company-logo {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, #fae6d0, #f5d4a8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            border: 2px solid #f0ddc8;
            box-shadow: 0 2px 6px rgba(200,129,58,0.15);
        }

        .card-title-area { flex: 1; min-width: 0; }

        .job-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1e1208;
            margin-bottom: 0.18rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .company-name {
            font-size: 0.78rem;
            color: #7a5c3c;
            font-weight: 600;
        }

        /* BARU badge */
        .badge-new {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #ff7043, #f4511e);
            color: white;
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.22rem 0.55rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(244,81,30,0.4);
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 2px 8px rgba(244,81,30,0.4); }
            50%       { box-shadow: 0 2px 16px rgba(244,81,30,0.7); }
        }

        /* ── Meta row: lokasi · tipe · kuota ── */
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 0.7rem;
        }

        .meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.72rem;
            color: #6b5040;
            background: #faf5ee;
            border: 1px solid #efe5d8;
            padding: 0.22rem 0.6rem;
            border-radius: 20px;
            font-weight: 500;
        }

        .meta-chip i { font-size: 0.62rem; color: #c8813a; }
        .meta-chip.quota i { color: #2e7d32; }
        .meta-chip.location i { color: #e05a5a; }

        /* ── Salary box (green) ── */
        .salary-box {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border: 1.5px solid #a5d6a7;
            color: #1b5e20;
            font-size: 0.88rem;
            font-weight: 700;
            padding: 0.45rem 0.9rem;
            border-radius: 10px;
            margin-bottom: 0.75rem;
        }

        .salary-box i { color: #2e7d32; font-size: 0.8rem; }

        /* ── Skill tags ── */
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 0.85rem;
        }

        .stag {
            padding: 0.26rem 0.65rem;
            border-radius: 20px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        /* Kuning — pendidikan */
        .stag-edu  { background: #fffde7; color: #f57f17; border: 1.5px solid #ffe082; }
        /* Biru — keahlian teknis */
        .stag-tech { background: #e3f2fd; color: #1565c0; border: 1.5px solid #90caf9; }
        /* Hijau — soft skill */
        .stag-soft { background: #e8f5e9; color: #2e7d32; border: 1.5px solid #a5d6a7; }
        /* Ungu — pengalaman */
        .stag-exp  { background: #f3e5f5; color: #6a1b9a; border: 1.5px solid #ce93d8; }

        /* ── Card Footer ── */
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.75rem;
            border-top: 1px solid #f5ede3;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .post-time {
            font-size: 0.7rem;
            color: #a08060;
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }

        .post-time i { font-size: 0.65rem; }

        .card-actions {
            display: flex;
            gap: 0.5rem;
        }

        /* Tombol Lihat Detail — solid amber agar kontras */
        .btn-detail {
            background: linear-gradient(135deg, #c8813a, #d4892a);
            color: white;
            border: none;
            padding: 0.52rem 1.1rem;
            border-radius: 25px;
            font-family: inherit;
            font-size: 0.76rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 3px 10px rgba(200,129,58,0.35);
            white-space: nowrap;
        }

        .btn-detail:hover {
            background: linear-gradient(135deg, #a86828, #b8711a);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(200,129,58,0.45);
        }

        .btn-wa {
            background: #25D366;
            color: white;
            border: none;
            padding: 0.52rem 1rem;
            border-radius: 25px;
            font-family: inherit;
            font-size: 0.76rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .btn-wa:hover {
            background: #1db954;
            transform: translateY(-1px);
        }

        /* ===== SIDEBAR ===== */
        .sidebar { position: sticky; top: 88px; }

        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 1.2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }

        .sidebar-title {
            font-size: 0.82rem;
            font-weight: 800;
            color: #3d2c1e;
            margin-bottom: 0.9rem;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid #f5e6d4;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .popular-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.55rem 0;
            border-bottom: 1px solid #faf5ee;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .popular-item:last-child { border-bottom: none; }
        .popular-item:hover { opacity: 0.75; }

        .pop-logo {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fae6d0, #f5d4a8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            border: 2px solid #f0ddc8;
        }

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

        .pop-name {
            font-size: 0.8rem;
            font-weight: 700;
            color: #3d2c1e;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pop-cat {
            font-size: 0.7rem;
            color: #9a7a5a;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #2a1a0e;
            color: #c8a880;
            margin-top: 3rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.8rem 2rem;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.3rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .footer-links {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #c8a880;
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #f5c87a; }

        .footer-social {
            display: flex;
            gap: 0.6rem;
        }

        .soc-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c8a880;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .soc-icon:hover {
            background: #c8813a;
            color: white;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .footer-tagline {
            font-size: 0.78rem;
            color: #8a6848;
        }

        /* ===== MISC ===== */
        .no-jobs {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 16px;
            color: #9a7a5a;
            font-size: 0.9rem;
            line-height: 2;
        }

        .scroll-top-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #c8813a;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(200, 129, 58, 0.45);
            z-index: 1000;
            border: none;
        }

        .scroll-top-btn.show { opacity: 1; visibility: visible; }
        .scroll-top-btn:hover { background: #a86828; transform: translateY(-3px); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 960px) {
            .page-wrap { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }

        @media (max-width: 640px) {
            .hero-search-box { flex-direction: column; border-radius: 18px; padding: 8px; }
            .search-divider { width: 100%; height: 1px; margin: 0 1rem; }
            .search-btn { width: 100%; border-radius: 12px; }
            .nav-links { display: none; }
            .categories-wrap { gap: 1.2rem; }
            .cat-icon { width: 54px; height: 54px; font-size: 1.5rem; }
            .stats-wrap { justify-content: center; gap: 0.6rem; padding: 0.7rem 1rem; }
            .stats-update { display: none; }
            .stats-left { font-size: 0.75rem; }
        }

        /* ===== FLASH MESSAGES ===== */
        .flash-msg {
            padding: 0.85rem 1.2rem;
            border-radius: 8px;
            margin-bottom: 0.5rem;
            font-size: 0.88rem;
            font-weight: 500;
        }
        .flash-success { background: #e6f3e6; color: #276749; border-left: 4px solid #48bb78; }
        .flash-danger { background: #fee; color: #c53030; border-left: 4px solid #e53e3e; }
        .flash-warning { background: #fef3c7; color: #92400e; border-left: 4px solid #fbbf24; }
        .flash-info { background: #ebf8ff; color: #2b6cb0; border-left: 4px solid #4299e1; }

        /* ===== FORM PAGES (Login, Register, etc.) ===== */
        .form-page {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .form-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            width: 100%;
            max-width: 460px;
        }
        .form-card h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #3d2c1e;
            font-size: 1.3rem;
        }
        .form-group {
            margin-bottom: 1.1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 600;
            color: #5a3e28;
            font-size: 0.85rem;
        }
        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid #e8ddd0;
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: inherit;
            transition: all 0.2s;
            background: #fdfaf5;
        }
        .form-input:focus {
            outline: none;
            border-color: #c8813a;
            box-shadow: 0 0 0 3px rgba(200, 129, 58, 0.1);
            background: white;
        }
        .btn-submit {
            width: 100%;
            padding: 0.8rem;
            background: #c8813a;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }
        .btn-submit:hover {
            background: #b0651a;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(184, 101, 26, 0.3);
        }
        .form-link {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #5a3e28;
        }
        .form-link a { color: #c8813a; text-decoration: none; font-weight: 600; }
        .form-link a:hover { text-decoration: underline; }

        /* ===== DASHBOARD ===== */
        .dash-container {
            max-width: 1100px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .dash-header {
            margin-bottom: 1.5rem;
            color: #3d2c1e;
        }
        .dash-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .dash-stat-card {
            background: white;
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .dash-stat-card .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #c8813a;
        }
        .dash-stat-card .stat-label {
            font-size: 0.8rem;
            color: #5a3e28;
            margin-top: 0.3rem;
        }
        .dash-actions {
            display: flex;
            gap: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .btn-dash {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0.7rem 1.4rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.2s;
            font-family: inherit;
            cursor: pointer;
        }
        .btn-primary-action {
            background: #c8813a;
            color: white;
            border: none;
        }
        .btn-primary-action:hover { background: #b0651a; }
        .btn-secondary-action {
            background: white;
            color: #5a3e28;
            border: 1.5px solid #e8ddd0;
        }
        .btn-secondary-action:hover { background: #faf7f2; }

        .table-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .table-card table {
            width: 100%;
            border-collapse: collapse;
        }
        .table-card th {
            background: #faf7f2;
            padding: 0.8rem 1rem;
            text-align: left;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            color: #8c6d50;
            font-weight: 700;
        }
        .table-card td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #f0eae0;
            font-size: 0.88rem;
            color: #3d2c1e;
        }
        .table-card tr:last-child td { border-bottom: none; }
        .table-card tr:hover td { background: #fdfaf5; }
        .badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.73rem;
            font-weight: 700;
        }
        .badge-active { background: #e6f3e6; color: #276749; }
        .badge-inactive { background: #f0eae0; color: #8c6d50; }
        .btn-sm-action {
            padding: 0.3rem 0.8rem;
            font-size: 0.75rem;
            border-radius: 20px;
            border: 1px solid #e8ddd0;
            background: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
            font-family: inherit;
        }
        .btn-sm-deactivate { color: #c8813a; border-color: #c8813a; }
        .btn-sm-activate { color: #48bb78; border-color: #48bb78; }
        .btn-sm-action:hover { transform: translateY(-1px); }

        /* Detail page */
        .detail-page {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2rem;
        }
        @media (max-width: 800px) { .detail-page { grid-template-columns: 1fr; } }
        .detail-main {
            background: white;
            border-radius: 14px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .detail-main h3 { color: #3d2c1e; margin-bottom: 0.8rem; }
        .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1rem;
            color: #8c6d50;
            font-size: 0.85rem;
        }
        .detail-salary {
            display: inline-block;
            background: #fdf3e4;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 700;
            color: #3d2c1e;
            margin-bottom: 1rem;
        }
        .sidebar-apply {
            background: white;
            border-radius: 14px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        /* ══════════════════════════════════════════════
           ENHANCEMENTS (non-conflicting)
           ══════════════════════════════════════════════ */

        /* ── HERO SEARCH GLOW ── */
        .hero-search-box:focus-within {
            box-shadow: 0 0 0 4px rgba(200,129,58,0.2), 0 12px 40px rgba(0,0,0,0.4) !important;
            border-color: rgba(200,129,58,0.5) !important;
        }
        .search-btn {
            transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
            position: relative !important;
            overflow: hidden !important;
        }
        .search-btn::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0; transition: opacity 0.25s;
        }
        .search-btn:hover { transform: scale(1.04); }
        .search-btn:hover::after { opacity: 1; }
        .search-btn:active { transform: scale(0.97); }

        /* ── STATS BAR GLASS ── */
        .stats-bar {
            background: rgba(26,18,10,0.85) !important;
            backdrop-filter: blur(12px) !important;
            -webkit-backdrop-filter: blur(12px) !important;
            border-bottom: 1px solid rgba(200,129,58,0.25) !important;
        }
        .stat-chip {
            background: rgba(200,129,58,0.1) !important;
            border: 1px solid rgba(200,129,58,0.2) !important;
            border-radius: 25px !important;
            padding: 6px 16px !important;
            transition: all 0.25s !important;
        }
        .stat-chip:hover { background: rgba(200,129,58,0.18) !important; transform: translateY(-2px); }
        .stat-num { font-weight: 800 !important; font-size: 1.1rem !important; color: #d4892a !important; margin: 0 4px !important; }

        /* ── CATEGORY HOVER ── */
        .cat-item { transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important; text-decoration: none !important; }
        .cat-item:hover { transform: translateY(-4px); }
        .cat-item:hover .cat-icon { box-shadow: 0 8px 25px rgba(200,129,58,0.4); transform: scale(1.08); }
        .cat-icon { transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important; }

        /* ── BUTTON HOVER ── */
        .btn-pasang-loker, .btn-submit, .btn-primary-action {
            transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
        }
        .btn-pasang-loker:hover, .btn-submit:hover, .btn-primary-action:hover {
            transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,129,58,0.4) !important;
        }

        /* ── BOOKMARK & SHARE BUTTONS ── */
        .job-card-wrapper { position: relative; }
        .job-actions {
            position: absolute; top: 10px; right: 10px;
            display: flex; gap: 5px; z-index: 5;
            opacity: 0; transition: opacity 0.2s;
        }
        .job-card-wrapper:hover .job-actions { opacity: 1; }
        .btn-bookmark, .btn-share {
            width: 32px; height: 32px; border-radius: 50%;
            border: 1px solid rgba(200,129,58,0.3);
            background: rgba(255,255,255,0.95); color: #8c6d50;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem; transition: all 0.2s;
        }
        .btn-bookmark:hover, .btn-share:hover { background: #c8813a; color: white; border-color: #c8813a; transform: scale(1.1); }

        /* ── EMPTY STATE ── */
        @keyframes float-empty {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        .no-jobs i, .fa-folder-open { animation: float-empty 3s ease-in-out infinite; }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .hero-search-box { flex-direction: column !important; }
            .search-divider { display: none !important; }
            .jobs-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
            .job-card { padding: 1.1rem !important; }
            .dash-stats { grid-template-columns: 1fr 1fr !important; }
        }