@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
        
        * {
            -webkit-font-smoothing: antialiased;
            box-sizing: border-box;
        }
        
        html, body {
            margin: 0px;
            height: 100%;
        }
        
        button:focus-visible {
            outline: 2px solid #4a90e2 !important;
            outline: -webkit-focus-ring-color auto 5px !important;
        }
        
        a {
            text-decoration: none;
        }

        :root {
  --sidebar: rgba(240, 241, 245, 1);
  --bg: #E6F2FF ;
  --card: rgba(255, 255, 255, 1);
  --border: rgba(209, 209, 214, 0.5);
  --text-1: rgba(28, 28, 30, 1);
  --text-2: rgba(75, 88, 101, 1);
  --primary: rgba(0, 122, 255, 1);
  --hoverbiru: rgba(239, 247, 255, 1);
  --aktif: rgba(52, 199, 89, 1);
  --hoveraktif: rgba(236, 253, 243, 1);
  --warning: rgba(224, 62, 92, 1);
  --grafik: 0px -4px 1px 0px rgba(49, 130, 189, 1);
  --h2-font-family: "Poppins", Helvetica;
  --h2-font-weight: 600;
  --h2-font-size: 36px;
  --h2-letter-spacing: 0px;
  --h2-line-height: normal;
  --h2-font-style: normal;
  --h1-font-family: "Poppins", Helvetica;
  --h1-font-weight: 700;
  --h1-font-size: 40px;
  --h1-letter-spacing: 0px;
  --h1-line-height: normal;
  --h1-font-style: normal;
  --h3-font-family: "Poppins", Helvetica;
  --h3-font-weight: 500;
  --h3-font-size: 30px;
  --h3-letter-spacing: 0px;
  --h3-line-height: normal;
  --h3-font-style: normal;
  --h4-font-family: "Poppins", Helvetica;
  --h4-font-weight: 500;
  --h4-font-size: 24px;
  --h4-letter-spacing: 0px;
  --h4-line-height: normal;
  --h4-font-style: normal;
  --body-large-font-family: "Poppins", Helvetica;
  --body-large-font-weight: 400;
  --body-large-font-size: 18px;
  --body-large-letter-spacing: 0px;
  --body-large-line-height: normal;
  --body-large-font-style: normal;
  --body-font-family: "Poppins", Helvetica;
  --body-font-weight: 400;
  --body-font-size: 16px;
  --body-letter-spacing: 0px;
  --body-line-height: normal;
  --body-font-style: normal;
  --caption-font-family: "Poppins", Helvetica;
  --caption-font-weight: 300;
  --caption-font-size: 14px;
  --caption-letter-spacing: 0px;
  --caption-line-height: normal;
  --caption-font-style: normal;
  --h5-font-family: "Poppins", Helvetica;
  --h5-font-weight: 500;
  --h5-font-size: 20px;
  --h5-letter-spacing: 0px;
  --h5-line-height: normal;
  --h5-font-style: normal;
  --h6-font-family: "Poppins", Helvetica;
  --h6-font-weight: 500;
  --h6-font-size: 18px;
  --h6-letter-spacing: 0px;
  --h6-line-height: normal;
  --h6-font-style: normal;
  --1: 1px -1px 4px 0px rgba(0, 0, 0, 0.25);
  --12: -4px 4px 4px 0px rgba(0, 0, 0, 0.25), 4px -4px 4px 0px
    rgba(0, 0, 0, 0.25);
  --hover: 1px -1px 4px 0px rgba(0, 122, 255, 0.25), -1px 1px 4px 0px
    rgba(0, 122, 255, 0.25);
  --variable-collection-border: rgba(232, 232, 232, 1);
  --variable-collection-color: rgba(209, 196, 233, 1);
}

        /* --- NAVBAR MENYATU DENGAN BACKGROUND --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(230, 242, 255, 0.9); /* Mengikuti var(--bg) #E6F2FF tapi agak transparan */
    backdrop-filter: blur(10px); /* Efek kaca elegan saat di-scroll */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: none; /* Hilangkan bayangan agar terlihat menyatu dengan background atas */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Garis batas super tipis */
}

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            background-image: none !important;
            width: auto !important;
            height: auto !important;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: #1c1c1e;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-box {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 50px;
            width: 300px;
            gap: 8px;
            color: var(--text-2);
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            color: var(--text-1);
            background: transparent;
        }

        .search-box input::placeholder {
            color: var(--text-2);
        }

        .search-box svg {
            color: var(--text-2);
            transition: color 0.3s;
        }

        .search-box:hover svg {
            color: var(--primary);
        }

        .icon-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
            color: var(--text-1);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .icon-btn:hover {
            color: var(--primary);
        }

        .icon-btn.notification::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
            border: 2px solid white;
        }

        .profile-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            object-fit: cover;
            border: 2px solid var(--border);
            transition: border-color 0.3s;
        }

        .profile-img:hover {
            border-color: var(--primary);
        }

        .hamburger {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-1);
        }

        .nav-links-desktop {
            display: flex;
        }

        .nav-links-mobile {
            display: none;
        }

        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }

            .nav-links-mobile {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .hamburger {
                display: block;
            }

            .navbar-right {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh; /* Gunakan 100vh agar tinggi menu pasti full 100% layar HP dari atas ke bawah */
    width: 250px;
    background-color: #ffffff !important; /* Tambahkan !important untuk memaksa warna putih solid menimpa kode transparan/hitam lainnya */
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px 20px; /* Padding atas dibuat 80px agar menu tidak terlalu mepet dengan atas layar */
    gap: 15px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto; /* Jika isi menu terlalu banyak, layarnya bisa di-scroll ke bawah */
}

.navbar-right.active {
    right: 0;
}

            .nav-links-mobile {
                width: 100%;
                border-bottom: 1px solid var(--border);
                padding-bottom: 15px;
                margin-bottom: 10px;
            }

            .nav-links-mobile a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
                border-bottom: none;
            }

            .nav-links-mobile a:hover {
                background: var(--hoverbiru);
            }

            .nav-links-mobile a.active {
                background: var(--hoverbiru);
                border-bottom: none;
            }

            .search-box {
                width: 100%;
            }

            .icon-group {
                width: 100%;
                flex-direction: column;
                gap: 10px;
            }

            .icon-btn {
                width: 100%;
                justify-content: flex-start;
                padding-left: 16px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }
        }
        
        .frame {
            background-color: var(--bg);
            width: 100%;
            min-height: 100vh;
            position: relative;
            margin-bottom: 40px;
            overflow: hidden;
        }

        .ellipse {
            top: 0;
            left: 632px;
            width: 678px;
            height: 657px;
            position: absolute;
            background: radial-gradient(circle, rgba(187, 222, 251, 0.3) 0%, transparent 70%);
        }

        .div {
            top: 160px;
            left: 372px;
            width: 300px;
            height: 300px;
            background-color: #BBDEFB;
            border-radius: 239px;
            filter: blur(50px);
            position: absolute;
        }

        .div2 {
            top: 140px;
            right: 400px;
            width: 300px;
            height: 300px;
            background-color: #BBDEFB;
            border-radius: 239px;
            filter: blur(50px);
            position: absolute;
        }

        .decorative-shape {
            position: absolute;
            opacity: 0.6;
        }

        .shape-1 {
            top: -13px;
            left: 0;
            width: 284px;
            height: 283px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 50% 50% 0 50%;
            transform: rotate(-45deg);
        }

        .shape-2 {
            top: 624px;
            left: 0;
            width: 320px;
            height: 256px;
            background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
            border-radius: 50% 0 50% 50%;
            opacity: 0.4;
        }

        .shape-3 {
            top: 363px;
            right: 72px;
            width: 360px;
            height: 324px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 50% 50% 50% 0;
            transform: rotate(180deg);
        }

        .shape-4 {
            top: 538px;
            right: 0;
            width: 403px;
            height: 342px;
            background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
            border-radius: 0 50% 50% 50%;
            opacity: 0.4;
        }

        .testimonial-card-top-left {
            position: absolute;
            top: 100px;
            left: 60px;
            width: 400px;
            background: white;
            border-radius: 15px;
            padding: 10px;
            border: 1px solid var(--border);
            display: flex;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .testimonial-card-top-left .image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: url('../Images/ct.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .testimonial-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .testimonial-name {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: #000;
        }

        .testimonial-role {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #000;
        }

        .testimonial-text {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: #000;
            line-height: 1.5;
        }

        .pin-icon {
        position: absolute;
        top: -20px; /* naikkan sedikit */
        right: 5px;
        width: 40px;
        height: 40px;
        transform: rotate(45deg); /* miring 45 derajat */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pin-icon svg {
            width: 100%;
            height: 100%;
        }

        .testimonial-card-top-right {
            position: absolute;
            top: 100px;
            right: 60px;
            width: 400px;
            background: white;
            border-radius: 15px;
            padding: 10px;
            border: 1px solid var(--border);
            display: flex;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .testimonial-card-top-right .image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: url('../Images/gt.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .testimonial-bubble-left {
            position: absolute;
            bottom: 30px;
            left: 60px;
            width: 400px;
            transform: rotate(180deg);
        }

        .bubble-content-left {
            background: #0d519b;
            border-radius: 50px 5px 40px 50px;
            padding: 15px;
            display: flex;
            gap: 10px;
            box-shadow: 0px 4px 4px rgba(8, 93, 197, 0.25);
            transform: rotate(180deg);
        }

        .bubble-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50px;
            background: url('../Images/jose.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .bubble-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .bubble-text {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: white;
            line-height: 1.4;
        }

        .bubble-name {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: white;
        }

        .cursor-icon-left {
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            transform: rotate(-90deg);
        }

        .testimonial-bubble-right {
            position: absolute;
            bottom: 30px;
            right: 60px;
            width: 400px;
        }

        .bubble-content-right {
            background: #085dc5;
            border-radius: 5px 50px 50px 40px;
            padding: 15px;
            display: flex;
            gap: 10px;
            box-shadow: 0px 4px 4px rgba(8, 93, 197, 0.25);
        }

        .bubble-avatar2 {
           width: 50px;
            height: 50px;
            border-radius: 50px;
            background: url('../Images/puji.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .cursor-icon-right {
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            transform: rotate(-90deg);
        }

        .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            position: absolute;
            top: 200px;
            left: 50%;
            transform: translateX(-50%);
            width: 823px;
            text-align: center;
            z-index: 10;
        }

        .hero-title {
            font-family: var(--h1-font-family);
            font-weight: var(--h1-font-weight);
            font-size: var(--h1-font-size);
            color: #0e315d;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            color: var(--text-2);
            line-height: 1.5;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .btn-primary {
    display: flex;               /* aktifkan flexbox */
    justify-content: center;     /* horizontal tengah */
    align-items: center;         /* vertical tengah */
    padding: 10px 20px;          /* lebih enak ada space kiri kanan */
    background: var(--primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: var(--h5-font-family);
    font-weight: var(--h5-font-weight);
    font-size: var(--h5-font-size);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;          /* jaga-jaga tambahan */
}

        .btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        .btn-secondary {
            padding: 10px 25px;
            background: white;
            border: 1px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--hoverbiru);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
        }
        
        @media (max-width: 1024px) {
            .frame {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 120px 20px 60px;
                min-height: 80vh;
            }

            /* Sembunyikan semua kartu di HP & Tablet */
            .testimonial-card-top-left,
            .testimonial-card-top-right,
            .testimonial-bubble-left,
            .testimonial-bubble-right {
                display: none !important; 
            }

            .hero-section {
                position: relative;
                top: auto; left: auto;
                transform: none;
                width: 100%;
                margin: 0 auto; 
            }

            .div, .div2 {
                width: 300px;
                height: 300px;
            }
        }
        /* Latest Jobs Section */
        .latest-jobs-section {
            background-color: var(--bg);
            padding: 20px 60px;
        }

        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .jobs-header-left {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .jobs-icon {
            width: 40px;
            height: 40px;
            color: var(--text-1);
        }

        .jobs-title-wrapper h2 {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: var(--h2-font-size);
            color: var(--text-1);
            margin: 0 0 8px 0;
        }

        .jobs-title-wrapper p {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: var(--text-2);
            margin: 0;
        }

        .browse-jobs-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .browse-jobs-btn:hover {
            transform: translateX(5px);
        }

        .job-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .job-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            cursor: pointer;
        }

        .job-card:hover {
            border-color: var(--primary); /* border jadi primary */
            box-shadow: 0 0 12px rgba(52, 152, 219, 0.5); /* glow effect warna primary */
            transform: translateY(-2px); /* sedikit naik */
        }

        .job-card-left {
            display: flex;
            gap: 20px;
            align-items: center;
            flex: 1;
        }

        .job-time {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
            min-width: 80px;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
        }

        .job-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .company-name-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .company-name {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
        }

        .hiring-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--caption-font-family);
            font-weight: 500;
            font-size: 13px;
            color: var(--aktif);
        }

        .hiring-dot {
            width: 6px;
            height: 6px;
            background: var(--aktif);
            border-radius: 50%;
        }

        .job-title {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-1);
        }

        .job-title2 {
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    font-size: var(--h4-font-size);
    color: var(--text-1);
    line-height: 1.5;
}

        .job-tags {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .job-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
        }

        .job-tag svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .job-card-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .job-salary {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
            white-space: nowrap;
        }
        .bookmark-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        }

        .bookmark-btn:hover,
        .bookmark-btn.active {
        background: var(--hoverbiru);
        border-color: var(--primary);
        }

        .bookmark-btn svg {
        width: 20px;
        height: 20px;
        color: var(--text-2);
        transition: color 0.3s;
        }

        .bookmark-btn:hover svg,
        .bookmark-btn.active svg {
        color: var(--primary);
        }

        /* Platform Section */
        .platform-section {
            background-color: var(--bg);
            padding: 50px 60px;
            text-align: center;
        }

        .platform-header {
            max-width: 1100px;
            margin: 0 auto 80px;
        }

        .platform-header h2 {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: var(--h2-font-size);
            color: var(--text-1);
            margin: 0 0 20px 0;
        }

        .platform-header p {
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin: 0;
        }

        .platform-content {
            display: grid;
    grid-template-columns: 1fr; /* cuma 1 kolom */
    gap: 60px;
    max-width: 1900px;
    margin: 0 auto;
        }

        .platform-card {
            background: var(--card);
            border-radius: 20px;
            padding: 60px 50px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: all 0.3s;
        }

        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .card-content-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .card-text-content {
            flex: 1;
        }

        .card-illustration {
            width: 280px;
            height: 280px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-illustration img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .platform-card h3 {
            font-family: var(--h3-font-family);
            font-weight: var(--h3-font-weight);
            font-size: var(--h3-font-size);
            color: var(--text-1);
            margin: 0 0 15px 0;
        }

        .recruitment-text {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-2);
            line-height: 1;
            }

        .platform-card > p {
            font-family: var(--body-large-font-family);
            font-weight: var(--body-large-font-weight);
            font-size: var(--body-large-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin: 0 0 25px 0;
        }

        .platform-features {
            list-style: none;
            padding: 10px;
            margin: 0 0 10px 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .platform-features li {
            font-family: var(--body-large-font-family);
            font-weight: var(--body-large-font-weight);
            font-size: var(--body-large-font-size);
            color: var(--text-2);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .platform-features li::before {
            content: "•";
            color: var(--primary);
            font-size: 24px;
            font-weight: bold;
        }

        .platform-cta {
            padding: 14px 40px;
            background: var(--primary);
            border: none;
            border-radius: 30px;
            color: white;
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .platform-cta:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
        }

        /* Job Seeker Illustration */
        .job-seeker-illustration {
            position: relative;
        }

        .chart-window {
            width: 240px;
            height: 180px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
            transform: rotate(-5deg);
        }

        .window-header {
            height: 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            padding: 0 10px;
            gap: 5px;
        }

        .window-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
            opacity: 0.7;
        }

        .chart-content {
            padding: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 120px;
        }

        .chart-bar {
            width: 30px;
            border-radius: 5px;
            position: relative;
        }

        .bar-blue {
            height: 70px;
            background: linear-gradient(180deg, #667eea, #764ba2);
        }

        .bar-purple {
            height: 85px;
            background: linear-gradient(180deg, #764ba2, #667eea);
        }

        .bar-green {
            height: 60px;
            background: linear-gradient(180deg, #52c41a, #73d13d);
        }

        .floating-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b9d, #c44569);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        .floating-button::before {
            content: "+";
            color: white;
            font-size: 28px;
            font-weight: 300;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .color-accent-1 {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #a8edea, #fed6e3);
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.6;
            top: -20px;
            right: -20px;
        }

        .color-accent-2 {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            border-radius: 50%;
            filter: blur(25px);
            opacity: 0.5;
            bottom: 10px;
            left: -10px;
        }

        /* HR Illustration */
        .hr-illustration {
            position: relative;
        }

        .phone-mockup {
            width: 180px;
            height: 260px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
            transform: rotate(5deg);
            padding: 15px;
        }

        .profile-cards {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
        }

        .profile-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            height: 8px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 4px;
            width: 70%;
            margin-bottom: 5px;
        }

        .profile-skill {
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 3px;
            width: 50%;
        }

        .magnifier {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border: 4px solid #209cee;
            border-radius: 50%;
            background: rgba(32, 156, 238, 0.1);
            box-shadow: 0 4px 16px rgba(32, 156, 238, 0.3);
        }

        .magnifier::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 50px;
            background: #209cee;
            bottom: -45px;
            right: -15px;
            transform: rotate(-45deg);
            border-radius: 3px;
        }

        .folder-icon {
            position: absolute;
            bottom: 30px;
            right: -20px;
            width: 80px;
            height: 65px;
            background: linear-gradient(135deg, #ff9a56, #ff6b9d);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
            animation: float 3s ease-in-out infinite 0.5s;
        }

        .folder-icon::before {
            content: "";
            position: absolute;
            top: -8px;
            left: 0;
            width: 35px;
            height: 12px;
            background: linear-gradient(135deg, #ff9a56, #ff6b9d);
            border-radius: 4px 4px 0 0;
        }

        .checkmark-badge {
            position: absolute;
            top: 30px;
            right: -25px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ffd93d, #ffa500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
            animation: float 3s ease-in-out infinite 1s;
        }

        .checkmark-badge::before {
            content: "✓";
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        /* Company Section */
        .company-section {
            background-color: var(--bg);
            text-align: center;
            padding: 60px 20px;
        }

        .company-title {
            background-color: var(--bg);
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: clamp(24px, 4vw, 36px);
            color: var(--text-1);
            margin-bottom: 50px;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            background: var(--bg);
        }

        .logo-track {
            display: flex;
            width: fit-content;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 80px;
            padding: 0 40px;
        }

        .logo-item {
            flex-shrink: 0;
            height: 50px;
            display: flex;
            align-items: center;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .logo-item:hover {
            opacity: 1;
        }

        .logo-item img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        /* Testimonial Section */
        .testimonial-section {
            background-color: var(--bg);
            text-align: center;
            padding: 30px 20px;
        }

        .testimonial-title {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: clamp(24px, 4vw, 36px);
            color: var(--text-1);
            margin-bottom: 60px;
        }

        .review-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 30px 0px;
        }

        .review-track {
            display: flex;
            width: fit-content;
            gap: 30px;
        }

        .review-group {
            display: flex;
            gap: 30px;
        }

        .review-box {
            flex-shrink: 0;
            width: 450px;
            background: var(--card);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: left;
            transition: transform 0.3s;
        }

        .review-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            flex-shrink: 0;
        }

        .review-avatar.avatar-1 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .review-avatar.avatar-2 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .review-avatar.avatar-3 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .review-avatar.avatar-4 {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .review-info h3 {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-1);
            margin-bottom: 4px;
        }

        .review-info p {
            font-family: var(--body-font-family);
            font-size: 14px;
            color: var(--text-2);
        }

        .review-text {
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .star {
            color: #ffc107;
            font-size: 20px;
        }

        .rating-text {
            margin-left: 8px;
            font-family: var(--body-font-family);
            font-weight: 600;
            color: var(--text-1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo-group {
                gap: 50px;
            }

            .logo-item {
                height: 35px;
            }

            .review-box {
                width: 350px;
                padding: 20px;
            }

            .review-avatar {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .logo-group {
                gap: 40px;
                padding: 0 20px;
            }

            .review-box {
                width: 300px;
                padding: 18px;
            }

            .review-text {
                font-size: 14px;
            }
        }
        
        .footer {
            background-color: var(--card);
            padding: 60px 80px 40px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 10px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon img {
    width: 200px;
    height: auto;
}


        .logo-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .brand-name {
            font-family: var(--h3-font-family);
            font-weight: var(--h3-font-weight);
            font-size: 28px;
            color: var(--text-1);
        }

        .footer-column h3 {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li a {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: var(--text-2);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-2);
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            transition: all 0.3s;
        }

        .social-link:hover {
            color: var(--primary);
            transform: translateX(4px);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .linkedin-icon { color: #0077b5; }
        .instagram-icon { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .facebook-icon { color: #1877f2; }
        .youtube-icon { color: #ff0000; }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            color: var(--text-2);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-bottom {
            max-width: 1440px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .copyright {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer {
                padding: 50px 40px 30px;
            }

            .footer-columns {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 20px 30px;
            }

            .footer-brand {
                margin-bottom: 40px;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1;
                grid-template-columns: 1fr;
            }

            .brand-name {
                font-size: 24px;
            }

            .footer-column h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 15px 20px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-icon svg {
                width: 24px;
                height: 24px;
            }

            .brand-name {
                font-size: 20px;
            }

            .footer-links li a,
            .contact-item,
            .social-link {
                font-size: 14px;
            }
        }
        /* Find Jobs Section */
        .findjobs-section {
            background-color: var(--bg);
            padding: 10px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 20px;
        }

        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .jobs-header-left {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .jobs-icon {
            width: 40px;
            height: 40px;
            color: var(--text-1);
        }

        .jobs-title-wrapper h2 {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: var(--h2-font-size);
            color: var(--text-1);
            margin: 0 0 8px 0;
        }

        .jobs-title-wrapper p {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: var(--text-2);
            margin: 0;
        }

        .job-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .job-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            cursor: pointer;
        }

        .job-card:hover {
            border-color: var(--primary); /* border jadi primary */
            box-shadow: 0 0 12px rgba(52, 152, 219, 0.5); /* glow effect warna primary */
            transform: translateY(-2px); /* sedikit naik */
        }

        .job-card-left {
            display: flex;
            gap: 20px;
            align-items: center;
            flex: 1;
        }

        .job-time {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
            min-width: 80px;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
        }

        .job-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .company-name-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .company-name {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
        }

        .hiring-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--caption-font-family);
            font-weight: 500;
            font-size: 13px;
            color: var(--aktif);
        }

        .hiring-dot {
            width: 6px;
            height: 6px;
            background: var(--aktif);
            border-radius: 50%;
        }

        .job-title {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-1);
        }

        .job-title2 {
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    font-size: var(--h4-font-size);
    color: var(--text-1);
    line-height: 1.5;
}

        .job-tags {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .job-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
        }

        .job-tag svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .job-card-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .job-salary {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
            white-space: nowrap;
        }
        .bookmark-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        }

        .bookmark-btn:hover,
        .bookmark-btn.active {
        background: var(--hoverbiru);
        border-color: var(--primary);
        }

        .bookmark-btn svg {
        width: 20px;
        height: 20px;
        color: var(--text-2);
        transition: color 0.3s;
        }

        .bookmark-btn:hover svg,
        .bookmark-btn.active svg {
        color: var(--primary);
        }
        /* Desktop Filter Sidebar */
.filter-sidebar {
    width: 280px;
    background: var(--card);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--1);
}

.filter-sidebar h3 {
    font-family: var(--h5-font-family);
    font-weight: var(--h5-font-weight);
    font-size: var(--h5-font-size);
    color: var(--text-1);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-sidebar .filter-header {
    font-weight: 500;
    margin: 12px 0 8px;
    color: var(--text-2);
}

.filter-sidebar .filter-group label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    font-family: var(--body-font-family);
    color: var(--text-2);
}

.filter-sidebar .filter-group input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--primary);
}

.salary-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.salary-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}
/* Mobile Filter (Default hidden) */
.mobile-filter {
    display: none;
    background: var(--card);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: var(--1);
}

.mobile-filter h3 {
    font-family: var(--h5-font-family);
    font-weight: var(--h5-font-weight);
    font-size: var(--h5-font-size);
    color: var(--text-1);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-filter .filter-header {
    font-weight: 500;
    margin: 12px 0 8px;
    color: var(--text-2);
}

.mobile-filter .filter-group label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-2);
}

.mobile-filter .filter-group input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--primary);
}

.mobile-filter .salary-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.mobile-filter .salary-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}

/* Responsive: Hide desktop sidebar on mobile, show mobile filter in hamburger */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .filter-sidebar {
        display: none;
    }

    .job-list {
        width: 100%;
    }

    .mobile-filter {
        display: block;
    }
}
 .notif-popup {
    position: absolute;
    top: 60px; /* muncul di bawah tombol */
    right: 10px;
    width: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    display: none; /* tersembunyi default */
    z-index: 1000;
  }

  .notif-popup.active {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .notif-popup h4 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
  }

  .notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    text-align: center;
    padding: 20px 0;
  }

  .notif-empty i {
    font-size: 48px;
    color: #6b7280;
    margin-bottom: 10px;
  }

  .notif-empty p {
    font-size: 14px;
    color: #555;
  }

  /* Tombol notifikasi */
  .icon-btn.notification {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }

  .icon-btn.notification:hover svg {
    color: var(--primary, #0066ff);
  }

  /* =========================================
   RESPONSIVE LATEST JOBS (TABLET & HP)
   Gaya Compact / LinkedIn Style
   ========================================= */

/* Untuk Tablet (Setengah Laptop) */
@media (max-width: 1024px) {
    .latest-jobs-section {
        padding: 40px 40px; /* Kurangi jarak kiri-kanan */
    }
}

/* Untuk Layar HP */
@media (max-width: 768px) {
    .latest-jobs-section {
        padding: 40px 20px; 
    }

    /* 1. Header & Icon Disesuaikan */
    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .jobs-title-wrapper h2, .job-title2 {
        font-size: 24px !important; /* Judul tidak terlalu raksasa */
    }

    .jobs-title-wrapper p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 2. Job Card Dibuat Susun Bawah (Compact) */
    .job-card {
        flex-direction: column !important; 
        align-items: flex-start !important;
        padding: 16px !important;
        gap: 12px;
    }

    /* Bagian Atas: Logo & Nama Perusahaan */
    .company-logo-info {
        gap: 12px !important; /* Memaksa timpa style dari PHP */
    }

    .logo-box {
        width: 45px !important;
        height: 45px !important;
    }

    .job-title-container h3, .job-title {
        font-size: 16px !important;
    }

    .job-title-container p, .company-name {
        font-size: 13px !important;
    }

    /* Bagian Bawah: Gaji, Tag & Tombol Bookmark */
    .job-meta {
        width: 100%;
        display: flex;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        border-top: 1px solid var(--border); /* Garis tipis pemisah ala LinkedIn */
        padding-top: 16px;
        margin-top: 4px;
    }

    .job-info {
        text-align: left !important; /* Pindah ke kiri */
    }

    .job-tags {
        justify-content: flex-start !important;
        margin-top: 8px;
    }

    .tag, .job-tag {
        font-size: 11px !important;
        padding: 2px 8px;
    }

    .salary-range {
        font-size: 14px !important;
    }

    .bookmark-btn {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
}
/* =========================================
   RESPONSIVE PLATFORM SECTION (TABLET & HP)
   ========================================= */

/* Untuk Tablet (Setengah Laptop) */
@media (max-width: 1024px) {
    .platform-section {
        padding: 80px 40px; /* Jarak luar dikurangi */
    }
    
    .platform-header h2 {
        font-size: 32px;
    }
    
    .platform-card {
        padding: 40px 30px;
    }
    
    .card-content-wrapper {
        gap: 30px; /* Jarak antara teks dan gambar dipersempit */
    }
    
    .card-illustration {
        width: 220px;
        height: 220px;
    }
}

/* Untuk Mobile (Layar HP) */
@media (max-width: 768px) {
    .platform-section {
        padding: 60px 20px;
    }

    .platform-header h2 {
        font-size: 26px;
    }
    
    .platform-header p {
        font-size: 15px;
        padding: 0 10px;
    }

    .platform-content {
        gap: 30px; /* Jarak antar 2 kartu */
    }

    .platform-card {
        padding: 30px 20px; /* Kartu lebih padat di HP */
    }

    /* Mengubah layout menjadi Atas-Bawah (Vertical) */
    .card-content-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    /* Trik jitu: Memaksa Ilustrasi / Gambar SELALU ada di urutan pertama (atas) */
    .card-illustration {
        order: 1; 
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
    }

    /* Memaksa Teks SELALU ada di urutan kedua (bawah gambar) */
    .card-text-content {
        order: 2; 
        text-align: left;
    }

    .platform-card h3 {
        font-size: 22px;
        text-align: center; /* Judul di-tengah untuk HP */
    }

    .recruitment-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .platform-features {
        margin-bottom: 24px;
    }

    .platform-features li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .platform-features li::before {
        font-size: 20px; /* Ukuran bullet disesuaikan */
    }

    /* Tombol dibikin full-width agar mudah di-tap di HP */
    .platform-card .btn-primary {
        width: 100%; 
        max-width: 100%;
        padding: 12px 20px;
        margin-top: 5px;
    }
}
/* --- Letakkan ini DI LUAR / SEBELUM @media --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(230, 242, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Tambahan untuk Safari */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* --- Bagian Responsif HP & Tablet --- */
@media (max-width: 1024px) {
    .nav-links-desktop {
        display: none;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .hamburger {
        display: block;
    }

    /* Kunci utama perbaikan transparan ada di sini */
    .navbar-right {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 250px;
        /* WAJIB !important untuk menimpa rgba dari .navbar jika terjadi bocor */
        background: #ffffff !important; 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px 20px;
        gap: 15px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        /* Pastikan index lebih besar dari .navbar */
        z-index: 1001 !important; 
        overflow-y: auto;
        /* Matikan efek blur dari .navbar utama */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar-right.active {
        right: 0;
    }

    .nav-links-mobile a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        border-bottom: none;
    }

    .nav-links-mobile a:hover {
        background: var(--hoverbiru);
    }

    .nav-links-mobile a.active {
        background: var(--hoverbiru);
        border-bottom: none;
    }

    .search-box {
        width: 100%;
    }

    .icon-group {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .icon-btn {
        width: 100%;
        justify-content: flex-start;
        padding-left: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    /* 1. Paksa Logo Muncul di HP dengan !important */
    .logo {
        display: flex !important;
        align-items: center !important;
        background-image: none !important;
        width: auto !important;
        height: auto !important;
    }

    /* 2. Matikan sisa-sisa efek transparan yang masih nyangkut di layar HP */
    .navbar-right {
        background: #ffffff !important;
        height: 100vh !important;
        z-index: 1001 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar-right.active {
        background: #ffffff !important;
    }
}