/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff; /* Dominan Putih */
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: #ffffff; /* Putih Bersih */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #16a34a; /* Garis aksen hijau di bawah header */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 5px;
}

.logo h1 {
    font-size: 24px;
    color: #4b5563; /* warna logo agak hitam */
    /*color: #15803d; /* Hijau Tua untuk nama utama */-->
}

.logo span {
    color: #16a34a; /* Hijau Terang */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    /*color: #4b5563;*/
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #16a34a; /* Hover berubah menjadi hijau */
}

/* --- HERO BANNER --- */
.hero {
    /* Latar belakang transparan hijau tua di atas gambar industri */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/background.png')  no-repeat center center/cover;
    color: #ffffff;
    padding: 240px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #f0fdf4; /* Putih agak kehijauan lembut */
}

.btn {
    background-color: #ffffff; /* Tombol putih kontras */
    color: #15803d; /* Teks hijau */
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
}

/* --- LAYOUT SECTIONS --- */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-bg-gray {
    background-color: #f8fafc; /* Abu-abu sangat terang agar elemen putih di atasnya menonjol */
    max-width: 100%;
}

.container-inner {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    /*color: #4b5563; /* Judul rada hitam */
    color: #15803d; /* Judul Hijau */
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    /*background-color: #4b5563;/* Garis bawah rada hitam */
    background-color: #16a34a; /* Garis bawah hijau */
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- TENTANG KAMI --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #4b5563;
}

.badge-container {
    flex: 1;
    min-width: 300px;
    background-color: #f0fdf4; /* Kotak hijau sangat muda */
    border-left: 5px solid #16a34a;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.badge-container h3 {
    color: #4b5563; /* Judul rada hitam */
    /*color: #15803d;*/
    margin-bottom: 12px;
    font-size: 20px;
}

/* --- PRODUK GRID --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff; /* Kartu Putih Bersih */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #16a34a; /* Border berubah hijau saat dilewati kursor */
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
}

.product-img {
    width: 100%;
    height: 220px;
    background-color: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-weight: 600;
}

.product-card h3 {
    margin: 20px 0 10px;
    color: #4b5563; /* Judul rada hitam */
    /*color: #15803d; /* Judul Produk Hijau */
}

.product-card p {
    color: #64748b;
    padding: 0 15px;
    font-size: 15px;
}

/* --- KONTAK & FORM --- */
.contact-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-details h3, .contact-form h3 {
    color: #4b5563; /* Judul rada hitam */
    /*color: #15803d; */
    margin-bottom: 20px;
}

.contact-details p {
    color: #4b5563;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #16a34a; /* Input menyala hijau saat diketik */
}

.contact-form button {
    background-color: #16a34a; /* Tombol kirim hijau */
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #15803d;
}

/* --- FOOTER --- */
footer {
    background-color: #111827; /* Hitam arang agar teks kaki tetap terbaca sangat jelas */
    color: #9ca3af;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    border-top: 4px solid #16a34a;
}

footer p {
    margin-bottom: 8px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li {
        margin: 0 12px;
    }
    .hero h2 {
        font-size: 30px;
    }
}

/* --- KARIER / LOWONGAN KERJA --- */
.career-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.career-card {
    background: #ffffff; /* Putih Dominan */
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.career-card:hover {
    border-color: #16a34a; /* Efek hijau saat hover */
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.08);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.career-header h3 {
    color: #15803d; /* Hijau Utama */
    font-size: 20px;
}

.job-status {
    background-color: #f0fdf4; /* Hijau Muda */
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.job-loc {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.job-req {
    list-style-type: none;
    margin-bottom: 20px;
}

.job-req li {
    font-size: 15px;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

/* Bullet list kostum berupa centang/titik hijau kecil */
.job-req li::before {
    content: "•";
    color: #16a34a;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

.btn-job {
    display: inline-block;
    border: 2px solid #16a34a;
    color: #16a34a;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-job:hover {
    background-color: #16a34a;
    color: #ffffff;
}