/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
/* === CSS Navbar Profesional - Revisi Final === */

/* Base styling untuk navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Style saat halaman di-scroll */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Kontainer utama untuk mengatur layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* DIUBAH: Lebar ditambah untuk kurangi space kosong di samping */
    margin: 0 auto;
    padding: 0 2.5rem; /* DIUBAH: Padding disesuaikan */
    height: 72px;      /* DIUBAH: Tinggi navbar dikurangi agar lebih ramping */
    box-sizing: border-box;
}

/* Styling untuk brand (logo + nama) */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px; /* DIUBAH: Jarak antara logo dan teks disesuaikan */
    text-decoration: none;
}

/* Ukuran logo */
.brand-icon-logo {
    height: 52px; /* DIUBAH: Logo diperbesar secara signifikan */
    width: auto;
}

/* Styling untuk nama perusahaan */
.brand-text {
    font-size: 1.3rem; /* DIUBAH: Ukuran font disesuaikan dengan logo baru */
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: -0.5px;
}

/* Kontainer untuk link navigasi */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem; /* DIUBAH: Jarak antar menu sedikit dirapatkan */
}

/* Styling untuk setiap link navigasi */
.nav-link {
    font-size: 1.05rem; /* DIUBAH: Font link sedikit diperbesar agar lebih terlihat */
    font-weight: 500;
    color: #334155; /* Warna abu-abu tua untuk kontras yang baik */
    text-decoration: none;
    position: relative;
    padding: 8px 4px;
    transition: color 0.3s ease;
}

/* Efek saat kursor di atas link */
.nav-link:hover {
    color: #3b82f6;
}

/* Styling untuk link yang sedang aktif */
.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Garis bawah untuk link yang aktif */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 3px;
    background-color: #3b82f6;
    border-radius: 2px;
}

/* Tombol hamburger untuk tampilan mobile (disembunyikan di desktop) */
.nav-toggle {
    display: none;
    font-size: 1.75rem;
    color: #475569;
    background: transparent;
    border: none;
    cursor: pointer;
}
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex; /* Kunci untuk centering */
            align-items: center; /* Menengahkan vertikal */
            justify-content: center; /* Menengahkan horizontal */
            text-align: center;
            overflow: hidden;
            color: white;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            background-image: url('img/tuk.avif'); /* atau URL lengkap */
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5); /* Overlay gelap */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 1rem; /* Jarak di layar kecil */
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Gaya untuk tombol di dalam hero */
        .hero .btn-outline {
            border-color: white;
            color: white;
        }
        .hero .btn-outline:hover {
            background: white;
            color: #0d6efd;
        }

        /* Container untuk tombol modal */
        .modal-trigger-container {
            padding: 4rem;
            text-align: center;
        }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-danger {
    background: #ef4444; /* merah soft */
    color: white;
    transition: all 0.2s ease-in-out;
}

.btn-danger:hover {
    background: #dc2626; /* merah lebih gelap */
    transform: translateY(-2px);
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Vision & Mission Section */
.vision-mission {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* biru elegan */
    color: #ffffff;
    padding: 4rem 2rem;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: rgb(190, 190, 190)255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #ffff;
}

.vm-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.vm-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.vm-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* History Section */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 20rem auto 10rem auto; /* Atas: 8rem, Bawah: 4rem (atau bisa 2rem kalau mau lebih dekat) */
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #cbd5e1;
  z-index: 0;
}

.timeline-item {
  position: relative;
  flex: 1;
  min-width: 150px;
  text-align: center;
  z-index: 1;
}

.timeline-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #3b82f6;
  color: white;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 9999px;
  font-weight: bold;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 0 0 4px #f8fafc;
}

.timeline-content {
  position: absolute;
  width: 220px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 1.2rem;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease;
  z-index: 3; /* <- supaya gak ketimpa heading */
}

/* Zigzag: Atas & Bawah + Tambah Jarak */
.timeline-item:nth-child(odd) .timeline-content {
  bottom: calc(100% + 3.5rem);
}

.timeline-item:nth-child(even) .timeline-content {
  top: calc(100% + 3.5rem);
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .timeline::before {
    left: 50%;
    width: 2px;
    height: 100%;
    top: 0;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 3rem;
  }

  .timeline-year {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    top: auto;
    bottom: auto;
  }
}

/* Brand Promo Section */
.brand-promo {
    text-align: center;
    padding: 4rem 2rem; /* Atas/Bawah: 4rem, Kiri/Kanan: 2rem */
}

.section-header {
    margin-bottom: 2rem;
}

.brand-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.brand-icon {
    max-height: 140px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.brand-icon:hover {
    transform: scale(1.05);
}

/* Brand Button */
.brand-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.brand-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.brand-button:hover::before {
    left: 100%;
}

.brand-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

/* Distribution Section */
.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
}

.location-pin {
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.location-pin:hover {
    transform: scale(1.2);
    background: #2563eb;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.office-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.office-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.office-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.office-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.office-details p {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.office-type {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Videos Section */
/* General Section Styling */
.videos {
    background: #f8fafc; /* Warna latar belakang abu-abu muda untuk section */
    padding: 4rem 0; /* Memberi jarak atas dan bawah */
}

/* Filter Buttons Container */
.video-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Tombol akan pindah ke baris baru jika tidak muat */
}

/* Individual Filter Button */
.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2rem; /* Membuat sudut sangat tumpul (pill shape) */
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover and Active State for Filter Button */
.filter-btn:hover,
.filter-btn.active {
    background: #3b82f6; /* Warna biru saat aktif atau di-hover */
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px); /* Efek sedikit terangkat */
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    /* Membuat kolom responsif: setiap kolom min 350px, akan mengisi ruang yang tersedia */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem; /* Jarak antar video card */
    margin-bottom: 3rem;
}

/* Link Wrapper for the Card */
.video-card-link {
    text-decoration: none; /* Menghilangkan garis bawah pada tautan */
}

/* Video Card Styling */
.video-card {
    background: white;
    border-radius: 1rem; /* Sudut tumpul */
    overflow: hidden; /* Memastikan konten di dalam card tidak keluar dari border-radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%; /* Membuat semua card memiliki tinggi yang sama jika dalam grid */
}

/* Hover Effect for Video Card */
.video-card:hover {
    transform: translateY(-8px); /* Efek terangkat lebih tinggi saat hover */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15); /* Bayangan lebih dramatis */
}

/* Thumbnail Container */
.video-thumbnail {
    position: relative; /* Diperlukan untuk positioning absolut overlay */
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0; /* Warna placeholder jika gambar belum termuat */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar akan menutupi area tanpa distorsi */
    transition: transform 0.3s ease;
}

/* Zoom Effect on Thumbnail Image on Hover */
.video-card:hover .video-thumbnail img {
    transform: scale(1.05); /* Sedikit zoom pada gambar thumbnail */
}

/* Overlay that Appears on Hover */
.video-overlay {
    position: absolute;
    inset: 0; /* Cara singkat untuk top: 0; right: 0; bottom: 0; left: 0; */
    background: rgba(0, 0, 0, 0.4); /* Lapisan gelap transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Sembunyi secara default */
    transition: opacity 0.3s ease;
}

/* Show Overlay on Card Hover */
.video-card:hover .video-overlay {
    opacity: 1; /* Munculkan overlay */
}

/* Play Button Styling */
.play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%; /* Lingkaran sempurna */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6; /* Warna ikon play */
    font-size: 1.5rem;
    transform: scale(0.8); /* Sedikit lebih kecil secara default */
    transition: transform 0.3s ease;
}

/* Enlarge Play Button on Card Hover */
.video-card:hover .play-button {
    transform: scale(1); /* Kembali ke ukuran normal saat hover */
}

/* Content Area Below Thumbnail */
.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    line-height: 1.4;
}

/* Meta Information (Date, Views, etc.) */
.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: auto; /* PENTING: Tetap di bawah */
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Video Description */
.video-description {
    color: #64748b;
    line-height: 1.6;
    /* Hapus pembatasan baris */
    display: block; /* Ubah dari -webkit-box ke block */
    overflow: visible; /* Tidak perlu sembunyikan overflow */
    height: auto; /* Biarkan tinggi mengikuti konten */
    margin-bottom: 1rem; /* Tetap pertahankan jarak ke meta */
}

/* Load More Button Container */
.load-more-container {
    text-align: center;
}

/* Careers Section */
/* ====== Career Section Benefits ====== */
.career-benefits {
    margin-bottom: 4rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* ====== Job Filters ====== */
.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #e2e8f0;
    color: #1e293b;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3b82f6;
    color: #fff;
}

/* ====== Job Cards Grid ====== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* ====== Job Card ====== */
.job-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

/* ====== Job Card Header ====== */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.job-company {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.job-company i {
    color: #3b82f6;
}

/* ====== Job Type Badge ====== */
.job-type {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====== Job Details Section ====== */
.job-details {
    margin-bottom: 1rem;
}

.job-detail {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.job-detail i {
    margin-right: 6px;
    color: #22c55e;
    min-width: 1rem;
}

/* ====== Job Description ====== */
.job-description {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

/* ====== Footer ====== */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-posted {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ====== Apply Button ====== */
.apply-btn {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.apply-btn:hover {
    background: #2563eb;
}


/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
}

.social-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
  background: #ffffff;
  color: #000000;
  padding: 3rem 0 1rem;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover biru untuk link di section perusahaan */
.footer-section a:hover {
  color: #3b82f6;
}

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

.footer-social a {
  color: #000000;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

/* Hover putih khusus ikon sosial */
.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #000000;
  padding: 2rem 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover putih untuk link di bawah */
.footer-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
    
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            color: white;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero .btn-outline {
            border-color: white;
            color: white;
            backdrop-filter: blur(5px);
            background-color: rgba(255,255,255,0.1);
        }
        .hero .btn-outline:hover {
            background: white;
            color: #0d6efd;
        }

        .modal-trigger-container {
            padding: 4rem;
            text-align: center;
        }

        /* ===================================================================
           STYLING BARU UNTUK MODAL LOWONGAN PEKERJAAN
        =================================================================== */
        .modal-lowongan .modal-content {
            border: none;
            border-radius: 0.75rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .modal-lowongan .modal-header {
            background-color: #f8f9fa;
            color: #212529;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #dee2e6;
        }

        .modal-lowongan .modal-title {
            font-weight: 700;
            font-size: 1.25rem;
        }

        .modal-lowongan .btn-close {
            background-color: #ffffff; /* latar belakang putih */
            color: #000000; /* atau warna putih: #ffffff jika ikon berbasis font */
            border-radius: 50%;
            padding: 0.5rem;
            opacity: 1; /* pastikan tidak transparan */
        }

        .modal-lowongan .modal-body {
            padding: 1.5rem 2rem 2rem 2rem;
        }

        .modal-lowongan .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 0.5rem;
            background-color: #f8f9fa;
            height: 100%;
            border: 1px solid #e9ecef;
        }

        .modal-lowongan .detail-icon {
            font-size: 1.25rem;
            color: #0d6efd;
            margin-top: 5px;
        }

        .modal-lowongan #modalDeskripsi ul {
            padding-left: 1.5rem;
            margin-top: 0.75rem;
        }
        .modal-lowongan #modalDeskripsi strong {
            display: block;
            margin-top: 1rem;
            font-weight: 600;
        }

        .modal-lowongan .modal-footer {
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            padding: 1rem 1.5rem;
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
        }

        .modal-lowongan .footer-info {
            margin-right: auto;
            align-self: center;
        }

.video-player {
    background: #000;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.video-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.video-placeholder i {
    font-size: 3rem;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.video-description {
    color: #64748b;
    line-height: 3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .vm-grid,
    .distribution-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-year {
        left: 2rem;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .vm-card,
    .office-item,
    .contact-form {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: none;
    }
}