/* Loker Job Board Theme Styles - Optimized Version */

/* Import Google Fonts - Poppins */
/* poppins-300 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v24-latin_latin-ext-300.woff2') format('woff2'); 
}
/* poppins-regular - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin_latin-ext-regular.woff2') format('woff2'); 
}
/* poppins-500 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin_latin-ext-500.woff2') format('woff2'); 
}
/* poppins-600 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin_latin-ext-600.woff2') format('woff2'); 
}
/* poppins-700 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin_latin-ext-700.woff2') format('woff2'); 
}
/* CSS Variables */
:root {
    --primary-color: #3b3bff;
    --primary-hover: #2d2dff;
    --secondary-color: #6c5ce7;
    --text-color: #2d3436;
    --light-text: #636e72;
    --border-color: #dfe6e9;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --success: #00b894;
    --danger: #d63031;
    --warning: #fdcb6e;
    --info: #0984e3;
    --dark: #2d3436;
    --light: #ddd;
    --spacing-unit: 15px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Poppins', sans-serif;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin: 20px 0 15px;
    color: var(--dark);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-unit);
}

ul, ol {
    margin-bottom: var(--spacing-unit);
    padding-left: 20px;
}

/* Buttons with Enhanced Styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

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

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

.btn-large {
    padding: 12px 24px;
    font-size: 18px;
}

/* Forms with Improved UX */
input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
}

/* Site Header with Sticky Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-branding {
    flex: 1;
}

.site-title {
    font-size: 1.75rem;
    margin: 0;
}

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

.site-description {
    margin: 5px 0 0;
    font-size: 1rem;
    color: var(--light-text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
}

.mobile-menu-toggle {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
}

/* Main Navigation */
.main-navigation {
    /* HAPUS border-top global di sini */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: var(--spacing-unit) 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}
/* =================================================================== */
/* --- STYLE DROPDOWN MENU DESKTOP (BARU) --- */
/* =================================================================== */

/* Sembunyikan dropdown secara default */
.nav-menu .sub-menu {
    display: block; /* Ganti dari 'none' agar transisi berfungsi */
    visibility: hidden; /* Sembunyikan dari tampilan dan interaksi */
    opacity: 0; /* Buat transparan */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px; /* Lebar minimum dropdown */
    padding: 10px 0;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Tampilkan dropdown saat parent di-hover */
.nav-menu > li:hover > .sub-menu {
    visibility: visible; /* Tampilkan kembali */
    opacity: 1; /* Buat menjadi solid */
}

/* Atur gaya untuk setiap item di dalam dropdown */
.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu a {
    padding: 10px 20px; /* Padding yang lebih cocok untuk list vertikal */
    white-space: nowrap; /* Mencegah teks menu terpotong ke baris baru */
    border-bottom: 1px solid var(--border-color);
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none; /* Hapus border di item terakhir */
}

/* Atur ulang gaya ikon untuk sub-menu agar konsisten */
.nav-menu .sub-menu .menu-item > a::before {
    font-family: inherit !important;
    font-weight: bold;
    content: '•';
    color: var(--text-color);
    font-size: 1.2em;
    width: auto;
    height: auto;
    margin-right: -5px;
}

.nav-menu .sub-menu {
    list-style: none;
    padding-left: 0; /* Atur ulang padding kiri dari perbaikan sebelumnya */
}

/* =================================================================== */
/* --- AKHIR DARI BLOK DROPDOWN MENU DESKTOP --- */
/* =================================================================== */

/* Hero Section with Enhanced Visuals */
.hero-section {
    padding: 60px 0;
    margin-bottom: 45px;
    position: relative;
    overflow: visible;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    color: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.search-form-wrapper {
    background-color: var(--white);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: calc(var(--spacing-unit) + 5px);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.search-form-wrapper .search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
    align-items: flex-end;
}

.search-form-wrapper .search-field {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-field-with-icon > .fas {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    z-index: 2;
    color: var(--light-text);
    font-size: 16px;
    pointer-events: none;
}

.search-form-wrapper .search-input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    background-color: var(--white);
    box-sizing: border-box;
    transition: var(--transition);
    padding: 12px 20px 12px 50px;
}

.search-form-wrapper .search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
    outline: none;
}

.search-form-wrapper .search-submit {
    background-color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: var(--white);
    height: 52px;
    padding: 0 25px;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    transition: var(--transition);
}

.search-form-wrapper .search-submit:hover {
    background-color: var(--primary-hover);
}

/* Custom Dropdown Components */
.location-dropdown-container,
.category-dropdown-container {
    position: relative;
    width: 100%;
    height: 52px;
}

.location-label,
.category-label {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 45px 0 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    font-size: 16px;
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: var(--transition);
}

.location-label:hover,
.category-label:hover {
    border-color: #ccc;
}

.location-label.active,
.category-label.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.location-label.has-selection .label-text,
.category-label.has-selection .label-text {
    color: var(--text-color);
}

.search-field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--light-text);
}

.location-label .label-text,
.category-label .label-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-label .arrow,
.category-label .arrow {
    position: absolute;
    right: 15px;
    transition: var(--transition);
}

.location-label.active .arrow,
.category-label.active .arrow {
    transform: rotate(180deg);
}

.location-dropdown,
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.location-dropdown.active,
.category-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-search,
.category-search {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1;
}

.location-search input,
.category-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
}

.location-search input:focus,
.category-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
}

.location-options,
.category-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-option,
.category-option {
    color: var(--text-color);
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f5f5f5;
}

.location-option:last-child,
.category-option:last-child {
    border-bottom: none;
}

.location-option:hover,
.category-option:hover {
    background-color: var(--bg-color);
}

.location-option.selected,
.category-option.selected {
    background-color: rgba(59, 59, 255, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.location-group,
.category-group {
    font-weight: 600;
    color: var(--dark);
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    margin-top: 5px;
    position: sticky;
    top: 58px;
}

.location-group:first-child,
.category-group:first-child {
    margin-top: 0;
}

/* Job Grid with Modern Card Design */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Job Card Component */
.job-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-card-main-content {
    display: flex;
    gap: var(--spacing-unit);
    padding: var(--spacing-unit);
    width: 100%;
}

.job-card-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.job-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.job-card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.job-card-title {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.job-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
}


.job-card-footer {
    width: 100%;
    margin-top: auto;
    padding: var(--spacing-unit);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.job-card-footer .btn {
    padding: 6px 20px;
    font-size: 0.9rem;
}

/* Major Cities Section */
.major-cities-section {
    margin-top: 45px;
    margin-bottom: 45px;
}

.city-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.city-tag-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #e6f0ff;
    color: var(--text-color);
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.city-tag-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Company Card Component */
.company-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-card-main-content {
    display: flex;
    gap: var(--spacing-unit);
    padding: var(--spacing-unit);
    width: 100%;
}

.company-card-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.company-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.company-card-info {
    flex-grow: 1;
}

.company-card .company-name {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.company-card .company-name a {
    color: var(--dark);
    transition: var(--transition);
}

.company-card .company-name a:hover {
    color: var(--primary-color);
}

.company-card .company-industry {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

.company-card-action {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-unit);
    margin-top: auto;
    text-align: center;
}

.company-card-action .btn {
    padding: 6px 20px;
    font-size: 0.9rem;
}

/* Job Detail Page */
.job-detail {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.job-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.job-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-unit);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
    margin-bottom: 20px;
}

.job-company {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.job-location {
    display: flex;
    align-items: center;
}

.job-location:before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.job-types {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.job-type {
    background-color: var(--bg-color);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.job-date {
    color: var(--light-text);
}

.job-actions {
    display: flex;
    gap: 10px;
}

/* Company Info Box */
.company-info {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.company-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-unit);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.company-logo {
    text-align: center;
    margin-bottom: var(--spacing-unit);
}

.company-logo img {
    max-height: 80px;
    width: auto;
}

.company-industry, .company-size {
    color: var(--light-text);
    margin-bottom: 5px;
}

.company-description {
    margin-bottom: 20px;
}

/* Job Content with Enhanced Readability */
.job-main-content h2,
.job-main-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.job-main-content ul,
.job-main-content ol {
    margin-bottom: 20px;
}

.job-main-content li {
    margin-bottom: 8px;
}

/* Closing Date and Disclaimer Boxes */
.closing-date-box,
.disclaimer-box {
    border-radius: var(--border-radius);
    padding: var(--spacing-unit);
    line-height: 1.7;
    margin-bottom: var(--spacing-unit);
}

.closing-date-box {
    border: 1px solid var(--warning);
    background-color: #fffbe6;
}

.disclaimer-box {
    border: 1px solid var(--danger);
    background-color: #ffebe9;
}

.disclaimer-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--dark);
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* Job Tags */
.job-tags {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.job-tags strong {
    margin-right: 10px;
}

.job-tags a {
    display: inline-block;
    background-color: var(--bg-color);
    padding: 5px 12px;
    border-radius: 50px;
    margin: 0 5px 5px 0;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

/* Related Jobs */
.related-jobs .related-title {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: var(--spacing-unit);
}

.related-jobs ul {
    list-style: none;
    padding-left: 0;
}

.related-jobs ul li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

/* Comment Form */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
}

.comments-title,
.comment-reply-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: var(--spacing-unit);
}

.comments-title:after,
.comment-reply-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comment-body {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.comment-author .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}

.comment-form p {
    margin-bottom: var(--spacing-unit);
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-cookies-consent input {
    width: auto;
}

.comment-form .form-submit {
    margin-top: 20px;
}

.comment-form .submit {
    /* Class .btn and .btn-primary already handled */
}

/* Social Share */
.social-share {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-share .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.telegram { background-color: #0088cc; }
.social-icon.whatsapp { background-color: #25d366; }
.social-icon.email { background-color: #777; }

/* Section Title */
.section-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: var(--spacing-unit);
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* View More Button */
.view-all-link {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background-color: #e6f0ff;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Penyesuaian Jarak Halaman Arsip */
.archive-search-header {
    position: relative;
    padding: 45px 0;
    margin-bottom: 30px;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    overflow: visible;
}
/* Archive & Search Page Titles */
.archive-title,
.search-results-header .page-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.search-results-header .page-title span {
    font-weight: 700;
}

/* "No Results" Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.no-results h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Job Filters Container */
.job-filters-container {
    margin: 25px 0;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.filter-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-toggle-btn:hover {
    background-color: var(--bg-color);
}

.job-filters-form {
    padding-top: 20px;
    display: none; /* Hidden by default, controlled by JS */
    grid-template-columns: 1fr;
    gap: var(--spacing-unit);
}

.job-filters-form select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.job-filters-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
}

/* Dropdown Loading Animation */
.dropdown-loader {
    display: none; /* Hide by default */
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: var(--light-text);
}

.location-dropdown.is-loading .dropdown-loader,
.category-dropdown.is-loading .dropdown-loader {
    display: flex; /* Show when loading */
}

.location-dropdown.is-loading .dropdown-content,
.category-dropdown.is-loading .dropdown-content {
    display: none; /* Hide content when loading */
}

.spinner-svg {
    width: 24px;
    height: 24px;
}

.spinner-svg rect {
    fill: var(--primary-color);
}

/* New Job Detail Styles */
.job-detail-new {
    background-color: var(--white);
    padding: var(--spacing-unit);
    border-radius: var(--border-radius);
}

@media (min-width: 768px) {
    .job-detail-new {
        padding: calc(var(--spacing-unit) * 2);
    }
}

.job-detail-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-unit);
}

.company-logo-small img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    object-fit: contain;
}

.job-title-wrapper {
    flex: 1;
}

.job-title-main {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.company-name-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.company-name-subtitle a {
    color: var(--text-color);
}

.job-views-count {
    font-size: 0.9rem;
    color: var(--light-text);
}

.job-actions-new {
    margin-bottom: var(--spacing-unit);
}

.job-actions-new .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.social-share.company-page-share {
    justify-content: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Detail Item with SVG Icons */
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-top: 2px;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.detail-label {
    flex-basis: 130px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--text-color);
}

.detail-value {
    flex-grow: 1;
    color: var(--light-text);
    text-align: right;
    overflow-wrap: break-word;
    word-break: break-all;
}

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

.detail-value a:hover {
    text-decoration: underline;
}

/* Company Details Box Moved */
.company-details-box-moved {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 25px;
    margin: 0;
}

.company-details-box-moved .detail-item {
    display: flex; /* Already defined above */
}

.company-details-box-moved .detail-label {
    flex-basis: 150px; /* Already defined above */
}

/* Job Main Content */
.job-main-content {
    margin-bottom: calc(var(--spacing-unit) * 2);
}
.job-main-content h2,
.job-main-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.closing-date-box,
.disclaimer-box {
    border-radius: var(--border-radius);
    padding: var(--spacing-unit);
    line-height: 1.7;
}

.closing-date-box {
    border: 1px solid var(--warning);
    background-color: #fffbe6;
}

.disclaimer-box {
    border: 1px solid var(--danger);
    background-color: #ffebe9;
}

.disclaimer-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--dark);
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* Job Tags */
.job-tags {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.job-tags strong {
    margin-right: 10px;
}

.job-tags a {
    display: inline-block;
    background-color: var(--bg-color);
    padding: 5px 12px;
    border-radius: 50px;
    margin: 0 5px 5px 0;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

/* Related Jobs */
.related-jobs .related-title {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: var(--spacing-unit);
}

.related-jobs ul {
    list-style: none;
    padding-left: 0;
}

.related-jobs ul li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

/* Comment Form */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
}

.comments-title,
.comment-reply-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: var(--spacing-unit);
}

.comments-title:after,
.comment-reply-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comment-body {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.comment-author .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}

.comment-form p {
    margin-bottom: var(--spacing-unit);
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-cookies-consent input {
    width: auto;
}

.comment-form .form-submit {
    margin-top: 20px;
}

.comment-form .submit {
    /* Class .btn and .btn-primary already handled */
}

/* Back to Top Button */
#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#backToTop.hide {
    opacity: 0;
    transform: translateY(20px);
}

#backToTop:hover {
    background-color: #0056b3;
}

/* Footer Branding & Social Media */
.footer-branding-social {
    text-align: left;
    border-bottom: none;
    margin-bottom: 45px;
    padding-bottom: 0;
}

.footer-logo .custom-logo {
    max-height: 45px;
    margin-left: 0;
    margin-bottom: 10px;
}

.footer-description {
    margin-left: 0;
    max-width: 100%;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px 0;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 15px;
}

.footer-bottom .footer-menu {
    display: none;
}

/* Related Jobs List */
.related-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-job-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
}

.related-job-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.related-job-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.related-job-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.related-job-info {
    flex-grow: 1;
}

.related-job-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.related-job-location {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Error 404 Page */
.error-404-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 1.75rem;
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--dark);
}

.error-404-search .search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.error-404-search .search-field,
.error-404-search input[type="search"] {
    width: 100%;
    height: 48px;
    border-radius: var(--border-radius);
}

.error-404-search .search-submit {
    height: 48px;
    padding: 0 25px;
    background-color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.error-404-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    min-height: 48px;
}

.loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pagination */
.pagination-container,
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination-container .page-numbers,
.pagination .page-numbers {
    padding: 8px 15px;
    margin: 0 4px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
}

.pagination-container .page-numbers:hover,
.pagination .page-numbers:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination-container .page-numbers.current,
.pagination .page-numbers.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    cursor: default;
}

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

.view-all-link {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background-color: #e6f0ff;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Filter Toggle Button */
.job-filters-container {
    margin: 25px 0;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.filter-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-toggle-btn:hover {
    background-color: var(--bg-color);
}

.job-filters-form {
    padding-top: 20px;
    display: none; /* Disembunyikan secara default, dikontrol oleh JS */
    grid-template-columns: 1fr;
    gap: var(--spacing-unit);
}

.job-filters-form select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.job-filters-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 59, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-wrapper {
        padding: 15px 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .hero-section {
        padding: 40px 0;
    }

    .search-form-wrapper {
        max-width: 100%;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-link {
        margin-top: 10px;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu a {
        padding: var(--spacing-unit) 20px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .search-form-wrapper {
        padding: var(--spacing-unit);
    }

    .job-card {
        padding: 15px;
    }

    .job-card-main-content {
        gap: var(--spacing-unit);
        padding: var(--spacing-unit);
    }

    .job-card-logo {
        width: 60px;
        height: 60px;
    }

    .job-card-actions .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .comments-area {
        padding: 15px;
    }

    .error-404-title {
        font-size: 6rem;
    }

    .pagination-container .page-numbers,
    .pagination .page-numbers {
        padding: 6px 10px;
        font-size: 14px;
    }
}
/* FIX: Aturan CSS untuk Memperbaiki Warna Teks Footer */
.site-footer {
    background-color: var(--dark); /* Menggunakan variabel warna gelap */
    color: var(--light-text); /* Mengatur warna teks default untuk footer */
    padding: 45px 0 0; /* Memberi sedikit ruang di bagian atas footer */
}

.footer-widgets .widget-title {
    color: var(--white); /* Membuat judul widget menjadi putih agar kontras */
}

.footer-widgets a,
.footer-description,
.copyright {
    color: var(--light); /* Mengatur warna link dan teks lain menjadi lebih terang */
}

.footer-widgets a:hover {
    color: var(--primary-color); /* Mengubah warna link saat disentuh mouse */
}
/* Hapus garis bawah dari semua judul section */
.section-title:after,
.lowongan-tersedia h2:after,
.featured-companies h2:after,
.lokasi-populer h2:after,
.jenis-pekerjaan h2:after,
.tentang-kami h2:after,
.loker-di-kota-besar h2:after {
    display: none;
}

/* Hapus garis bawah dari tautan di footer */
.footer-widgets a {
    text-decoration: none;
}

/* Hapus garis bawah dari tautan di kartu pekerjaan */
.job-card-title a,
.company-card .company-name a,
.job-detail .job-title a {
    text-decoration: none;
}

/* Hapus garis bawah dari tag di halaman detail */
.tag {
    text-decoration: none;
}

/* Hapus garis bawah dari tautan di halaman detail */
.note-content a {
    text-decoration: none;
}
/* Hapus garis bawah dari semua link dan elemen interaktif */
a[href],
*[role="link"],
button:not([disabled]),
input[type="button"],
input[type="reset"],
input[type="submit"] {
    text-decoration: none !important;
}

/* Hapus pseudo-element ::after pada link */
a[href]::after,
*[role="link"]::after {
    content: "" !important;
    display: none !important;
}

/* Target spesifik untuk elemen yang masih memiliki garis bawah */
.breadcrumb-nav a,
.breadcrumb-nav span,
.job-detail .company-name a,
.job-tags a,
.note-content a {
    text-decoration: none !important;
}

/* Pastikan tidak ada gaya hover yang menambahkan garis bawah */
.breadcrumb-nav a:hover,
.job-detail .company-name a:hover,
.job-tags a:hover,
.note-content a:hover {
    text-decoration: none !important;
}
/* Ubah warna teks pada kartu pekerjaan menjadi hitam (seperti kartu perusahaan) */
.job-card-title {
    color: var(--dark) !important;
}

/* Hapus garis bawah dari semua link */
a[href] {
    text-decoration: none !important;
}

/* Pastikan semua judul kartu pekerjaan memiliki warna teks yang konsisten */
.job-card .job-card-title {
    color: var(--dark) !important;
    font-weight: 600;
}

/* Contoh spesifik untuk kartu pekerjaan di halaman detail */
.job-detail .job-title {
    color: var(--dark) !important;
}

/* Hapus warna biru spesifik pada judul pekerjaan */
.job-detail .job-title,
.job-card .job-card-title a {
    color: var(--dark) !important;
}
/* FIX: Menambah Jarak Antar Kotak Filter di Halaman Arsip */
.job-filters-form select {
    margin-bottom: 10px;
}
/* PERBAIKAN WARNA DAN TAMPILAN IKON DETAIL ITEMS */
.job-details-box .detail-item .detail-icon {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.job-details-box .detail-item .detail-icon svg {
    fill: var(--primary-color) !important;
}

/* Social Share Icons - Diperbarui */
.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.telegram { background: #0088cc; }
.social-icon.whatsapp { background: #25d366; }
.social-icon.email { background: #ea4335; }

/* Detail Items Layout */
.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.detail-item:hover {
    background-color: #f8f9fa;
}

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

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.detail-label {
    flex-basis: 140px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.detail-value {
    flex-grow: 1;
    color: var(--light-text);
    text-align: right;
    font-size: 0.95rem;
}

/* Disclaimer and Info Box Styling */
.disclaimer-box, .info-box.whatsapp-note-box {
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    line-height: 1.6;
}

.disclaimer-box {
    border-left: 4px solid #d63031;
    background: #ffebe9;
}

.info-box.whatsapp-note-box {
    border-left: 4px solid #2196f3;
    background: #e3f2fd;
}

.disclaimer-box h4, .info-box.whatsapp-note-box h4 {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.info-box.whatsapp-note-box ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
}

.info-box.whatsapp-note-box li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.info-box.whatsapp-note-box a {
    color: #1976d2;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.info-box.whatsapp-note-box a:hover {
    border-bottom-color: #1976d2;
}

/* Closing Date Box */
.closing-date-box {
    background: #fffbe6;
    border: 1px solid #fdcb6e;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .detail-item {
        gap: 12px;
        padding: 12px 0;
    }
    
    .detail-label {
        flex-basis: 120px;
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .social-share {
        gap: 8px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}
/* Company Profile Specific Styles */
.company-profile-new {
    background-color: var(--white);
    padding: var(--spacing-unit);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .company-profile-new {
        padding: calc(var(--spacing-unit) * 2);
    }
}

.company-profile-header-new {
    margin-bottom: 30px;
}

.company-details-box-moved {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.company-main-content-area {
    margin-top: 30px;
}

.company-section {
    margin-bottom: 40px;
}

.company-section:last-child {
    margin-bottom: 0;
}

.company-section .section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--dark);
}

.company-description {
    line-height: 1.7;
    font-size: 1rem;
}

.company-description h2,
.company-description h3,
.company-description h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: var(--dark);
}

.company-description ul,
.company-description ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.company-description li {
    margin-bottom: 8px;
}

/* Social Share di Company Page */
.social-share.company-page-share {
    justify-content: center;
    margin: 40px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Responsive Company Profile */
@media (max-width: 768px) {
    .company-profile-new {
        padding: 15px;
    }
    
    .company-details-box-moved {
        padding: 15px;
    }
    
    .company-section .section-title {
        font-size: 1.3rem;
    }
    
    .social-share.company-page-share {
        margin: 30px 0;
        padding: 20px 0;
    }
}

/* Job Grid dalam Company Profile */
.company-profile-new .job-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

@media (max-width: 480px) {
    .company-profile-new .job-grid {
        grid-template-columns: 1fr;
    }
}

/* No Results Styling untuk Company Profile */
.company-profile-new .no-results {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.company-profile-new .no-results p {
    margin: 0;
    color: var(--light-text);
    font-size: 1rem;
}
/* Enhanced Interactions */
.social-icon {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon.hover {
    transform: translateY(-2px) scale(1.05);
}

.job-card {
    transition: all 0.3s ease;
}

.job-card.card-hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .social-icon, .job-card, .detail-item {
    transition: all 0.3s ease;
}

/* Back to Top Button States */
#backToTop {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#backToTop.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Enhancements */
body.mobile-menu-open {
    overflow: hidden;
}

#site-navigation.active {
    transform: translateX(0);
}

/* Form Enhancements */
input:focus, select:focus, textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 59, 255, 0.15);
}

/* Enhanced dropdown animations */
.location-dropdown, .category-dropdown {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.location-label.active .arrow, .category-label.active .arrow {
    transform: rotate(180deg);
}
/* ===== VARIASI 2 - JOB CARD ALA SCREENSHOT BKK BISA (BARU) ===== */
.job-card-screenshot {
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.job-card-screenshot:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: #eee;
}

/* Sembunyikan elemen-elemen dari struktur modern card lama yang tidak dipakai */
.job-card-screenshot .job-card-header,
.job-card-screenshot .job-card-footer,
.job-card-screenshot .job-card-content,
.job-card-screenshot .job-card-company,
.job-card-screenshot .job-card-meta {
    display: none !important;
}

/* Mengatur ulang layout job-card-screenshot */
.job-card-screenshot .job-card-title-line {
    margin-bottom: 10px;
}

.job-card-screenshot .job-card-title {
    margin: 0;
    font-size: 1.25rem;
    /* --- PERBAIKAN PENTING: MENGGUNAKAN WARNA DARK */
    color: var(--dark) !important; 
    font-weight: 700;
    line-height: 1.2;
}

.job-card-screenshot .job-card-title a {
    /* --- PERBAIKAN PENTING: Memastikan link juga berwarna dark */
    color: var(--dark) !important;
    text-decoration: none;
}

.job-card-screenshot .job-card-title a:hover {
    /* Mengubah sedikit warna saat hover agar ada feedback visual */
    color: var(--primary-color) !important; 
}


.job-card-screenshot .job-card-main-info-screenshot {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.job-card-screenshot .job-card-logo-screenshot {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.job-card-screenshot .job-card-logo-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    border-radius: 12px;
}

.job-card-screenshot .job-card-details-screenshot {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.job-card-screenshot .job-card-details-screenshot div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark); /* Menggunakan dark untuk teks perusahaan dan info lainnya agar sesuai screenshot */
    font-weight: 500;
}

.job-card-screenshot .job-card-details-screenshot div:first-child {
    margin-bottom: 5px;
}

.job-card-screenshot .job-card-details-screenshot div svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color); /* Ikon tetap biru */
}

.job-card-screenshot .job-card-company-screenshot {
    font-weight: 600; 
    color: var(--dark) !important; 
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .job-card-screenshot {
        padding: 12px;
    }
    
    .job-card-screenshot .job-card-title {
        font-size: 1.1rem;
    }
    
    .job-card-screenshot .job-card-logo-screenshot {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .job-card-screenshot .job-card-logo-screenshot img {
        border-radius: 8px;
    }
    
    .job-card-screenshot .job-card-main-info-screenshot {
        gap: 10px;
    }
    
    .job-card-screenshot .job-card-details-screenshot {
        gap: 3px;
    }

    .job-card-screenshot .job-card-details-screenshot div {
        font-size: 0.85rem;
    }
    
    .job-card-screenshot .job-card-details-screenshot div svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== VARIASI 5 - COMPANY CARD JOB-LIKE LAYOUT (BARU) ===== */
.company-card-job-like {
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card-job-like:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.company-card-title-line-like {
    margin-bottom: 15px;
}

.company-card-title-like {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark) !important; 
    font-weight: 700;
    line-height: 1.2;
}

.company-card-title-like a {
    color: var(--dark) !important; 
    text-decoration: none;
}

.company-card-title-like a:hover {
    color: var(--primary-color) !important;
}

.company-main-info-horizontal {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-grow: 1; /* Agar konten bisa mengisi ruang sebelum footer */
    margin-bottom: 15px;
}

.company-logo-horizontal {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px; /* Lebih kotak */
    border: 1px solid var(--border-color);
    background: var(--white);
}

.company-logo-horizontal .company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.company-details-vertical {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-details-vertical .meta-item-vertical {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.company-details-vertical .meta-item-vertical svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color); /* Ikon biru */
}

/* Footer dan Tombol */
.company-card-footer-like {
    margin-top: auto;
    width: 100%;
}

.company-card-job-like .btn-lihat-profil-like {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px; 
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px; /* Lebih kotak */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.company-card-job-like .btn-lihat-profil-like svg {
    color: white; /* Pastikan ikon di tombol juga putih */
}

.company-card-job-like .btn-lihat-profil-like:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 59, 255, 0.3);
}

/* Penyesuaian Media Query */
@media (max-width: 576px) {
    .company-card-job-like {
        padding: 12px;
    }

    .company-card-title-line-like {
        margin-bottom: 10px;
    }

    .company-card-title-like {
        font-size: 1.1rem;
    }
    
    .company-logo-horizontal {
        width: 60px;
        height: 60px;
    }
    
    .company-details-vertical .meta-item-vertical {
        font-size: 0.85rem;
    }
    
    .company-details-vertical .meta-item-vertical svg {
        width: 16px;
        height: 16px;
    }

    .company-card-job-like .btn-lihat-profil-like {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Mengganti class grid lama agar konsisten */
.company-grid .company-card-modern,
.company-grid .company-card-clean,
.company-grid .company-card-final {
    display: none; /* Sembunyikan gaya lama */
}

.company-grid .company-card-job-like {
    display: flex; /* Tampilkan gaya baru */
}

/* =================================================================== */
/* ===== STYLE IKON MENU MOBILE (METODE FONT AWESOME + !important) ===== */
/* =================================================================== */

/* Gaya dasar untuk link di menu yang memiliki ikon */
.nav-menu .menu-item > a {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antara ikon dan teks */
}

/* Gaya dasar untuk pseudo-element ::before yang akan menjadi ikon */
.nav-menu .menu-item > a::before {
    /* MEMAKSA PENGGUNAAN FONT AWESOME */
    font-family: "Font Awesome 5 Free" !important; 
    
    font-weight: 900; /* Menggunakan ikon style 'Solid' */
    font-size: 18px; /* Sesuaikan ukuran jika perlu */
    width: 20px; /* Jaga lebar untuk alignment */
    text-align: center; /* Pusatkan ikon */
    color: var(--text-color); /* Warna ikon default */
    transition: color 0.2s ease;
    
    /* Mencegah properti lain mengganggu rendering */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Ubah warna ikon saat menu di-hover */
.nav-menu .menu-item > a:hover::before {
    color: var(--primary-color);
}

/* --- Ikon untuk setiap menu (menggunakan properti 'content') --- */

/* 1. Ikon Beranda (Home) */
.nav-menu .menu-icon-home > a::before {
    content: "\f015"; /* Kode Unicode untuk ikon fa-home */
}

/* 2. Ikon Daftar Perusahaan (Building) */
.nav-menu .menu-icon-company > a::before {
    content: "\f1ad"; /* Kode Unicode untuk ikon fa-building */
}

/* 3. Ikon Lowongan Terbaru (Briefcase/Work) */
.nav-menu .menu-icon-jobs > a::before {
    content: "\f0b1"; /* Kode Unicode untuk ikon fa-briefcase */
}

/* 4. Ikon Lokasi (Map Pin) */
.nav-menu .menu-icon-location > a::before {
    content: "\f3c5"; /* Kode Unicode untuk ikon fa-map-marker-alt */
}
/* PERBAIKAN: Menghilangkan bullet point ganda di sub-menu */
.nav-menu .sub-menu {
    list-style: none; /* Ini akan menghilangkan 'o' atau bullet bawaan browser */
    padding-left: 20px; /* Opsional: Memberi sedikit indentasi agar lebih rapi */
}

/* Khusus untuk sub-menu, gunakan bullet point sederhana */
.nav-menu .sub-menu .menu-item > a::before {
    font-family: inherit !important; /* Kembalikan ke font default */
    font-weight: bold;
    content: '•';
    color: var(--text-color);
    font-size: 1.2em;
    width: auto;
    height: auto;
    margin-right: -5px; /* Sesuaikan jarak */
}

/* Khusus untuk sub-menu, gunakan bullet point sederhana */
.nav-menu .sub-menu .menu-item > a::before {
    font-family: inherit !important; /* Kembalikan ke font default */
    font-weight: bold;
    content: '•';
    color: var(--text-color);
    font-size: 1.2em;
    width: auto;
    height: auto;
    margin-right: -5px; /* Sesuaikan jarak */
}
