:root {
    --primary-red: #ED001C;
    --primary-red-hover: #c90017;
    --bg-light: #f4f7f6;
    --text-main: #2b2b2b;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
}

/* --- Navbar Styling --- */
.navbar-custom {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    /* Gradient transparan agar text tetap terbaca di atas gambar */
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.navbar-brand {
    color: #ffffff !important;
    font-size: 1.35rem;
}

.brand-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-bold {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: #ffffff;
}

/* --- Buttons --- */
.btn-primary-custom {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-red-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 0, 28, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)), 
                url('/img/hero.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* --- Search Bar --- */
.search-container {
    margin-top: 2.5rem;
}

.search-input-group {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.4rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.search-input-group .form-control {
    border: none;
    padding: 1rem 1rem;
    font-size: 1.05rem;
    box-shadow: none;
    background: transparent;
}

.search-input-group .input-group-text {
    background-color: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding-left: 1rem;
}

.search-input-group .btn {
    border-radius: 8px;
    padding: 0 2rem;
    font-size: 1.05rem;
}

/* --- Job Card Styling --- */
.job-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

/* Aksen garis merah di atas card */
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary-red);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Badge New */
.badge-new {
    background-color: #e8f5e9; 
    color: #2e7d32;
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-new i {
    font-size: 0.4rem;
    margin-right: 6px;
}

.qualification-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.qualification-list {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
    flex-grow: 1; /* Memastikan tombol selalu di bawah */
}

.qualification-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}

.qualification-list li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-right: 10px;
    margin-top: -1px;
}

/* --- Footer --- */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 2rem 0;
    margin-top: 4rem;
}