/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(36, 139, 32);
    --primary-dark: rgb(28, 110, 25);
    --primary-light: rgba(36, 139, 32, 0.1);
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.company-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.company-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   GALLERY SECTION - INSTAGRAM SCROLL STYLE
   =================================== */
.gallery-section {
    background: white;
    overflow: hidden;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.gallery-section .section-title {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
}

/* Gallery Scroll Wrapper */
.gallery-scroll-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0 5rem;
}

.gallery-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.gallery-item {
    flex: 0 0 auto;
    width: calc((100% - 6rem - 3rem) / 3);
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: grab;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:active {
    cursor: grabbing;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Grayscale untuk semua gambar kecuali yang pertama */
.gallery-item:not(:first-child) img {
    filter: grayscale(100%);
}

/* Item pertama selalu berwarna */
.gallery-item:first-child img {
    filter: grayscale(0%);
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Scroll Buttons */
.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-scroll-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(36, 139, 32, 0.4);
}

.gallery-scroll-btn span {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.gallery-scroll-btn:hover span {
    color: white;
}

.gallery-scroll-left {
    left: 1rem;
}

.gallery-scroll-right {
    right: 1rem;
}

.gallery-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
}

.gallery-scroll-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.5);
}

/* Scroll Progress Indicator */
.gallery-scroll-indicator {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 0 3rem;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/image/banner.png') center center;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: black;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.0rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* ===================================
   CONTAINER & SECTIONS
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-title p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Slideshow */
.about-image {
    position: relative;
    height: 500px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 1s;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Map Section */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: #f8f8f8;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-title {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-title p {
    font-size: 1rem;
    color: var(--text-light);
}

.indonesia-map-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Why Features */
.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-luas {
    font-size: 45px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Stats Combined Style */
.stat-combined {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-number-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-divider {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    opacity: 0.7;
}

.stat-card:hover .stat-combined .stat-number-main {
    animation: pulse 1s ease infinite;
    color: var(--primary-dark);
}

.stat-card:hover .stat-divider {
    animation: pulse 1s ease infinite;
    color: var(--primary-dark);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Nav Left Container */
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Hamburger Menu - HIDDEN ON DESKTOP */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #2d5016;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Navigation Links - Desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5016;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #2d5016;
}

.nav-link:hover::after {
    width: 100%;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d5016 0%, #4ba26bff 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.2);
    white-space: nowrap;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.3);
}

/* Hero Section Adjustment for Fixed Header */
.hero {
    margin-top: 64px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        position: relative;
    }

    /* Hamburger Menu - Paling Kiri */
    .hamburger-menu {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Nav Left & Brand - Tengah */
    .nav-left {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .nav-brand {
        gap: 10px;
    }

    .brand-logo {
        height: 30px;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100vh - 56px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(45, 80, 22, 0.05);
        padding-left: 25px;
    }

    .admin-link {
        width: calc(100% - 40px);
        margin: 20px 20px 0 20px;
        justify-content: center;
        border-radius: 8px;
    }

    /* Hero adjustment */
    .hero {
        margin-top: 56px;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .admin-link {
        font-size: 13px;
        padding: 8px 16px;
    }

    .brand-logo {
        height: 30px;
    }
}

/* Prevent Body Scroll when Menu is Open */
body.menu-open {
    overflow: hidden;
}

/* ===================================
   VISION & MISSION SECTION
   =================================== */
.vision-mission-section {
    background: white;
}

.vm-content {
    max-width: 900px;
    margin: 0 auto;
}

.vm-item {
    margin-bottom: 4rem;
    text-align: center;
}

.vm-item:last-child {
    margin-bottom: 0;
}

.vm-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.vm-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.vm-item p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2;
    text-align: center;
    padding: 0 2rem;
}

.vm-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-item ul li {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 2.2;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    text-align: left;
}

.vm-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.vm-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 3rem auto;
}

/* ===================================
   VIDEO PROFILE SECTION
   =================================== */
.video-profile-section {
    background: #f9f9f9;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   REQUIREMENTS SECTION
   =================================== */
.requirements-section {
    background: white;
}

.requirements-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.requirement-card {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.requirement-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(36, 139, 32, 0.15);
}

.requirement-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.requirement-card:hover .requirement-icon {
    transform: scale(1.1) rotate(5deg);
}

.requirement-content {
    flex: 1;
    text-align: left;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.requirement-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Recruitment Flow Section */
.recruitment-flow-section {
    background: #f9f9f9;
    position: relative;
}

.flow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.flow-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    bottom: -2rem;
    width: 2px;
    background: #e0e0e0;
}

.flow-step:last-child::before {
    display: none;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.flow-step:hover .step-circle {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(36, 139, 32, 0.15);
}

.step-circle.icon {
    background: var(--primary-color);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.step-circle.icon span {
    font-size: 2.5rem;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.flow-step:hover .step-content {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-date::before {
    content: '📅';
    font-size: 1rem;
}

.step-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.step-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-details p:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.sub-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.2rem;
}

/* ===================================
   JOB SECTION
   =================================== */
.job-section {
    background: #f9f9f9;
}

/* Company Filter Tabs */
.company-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.company-tab {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.company-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.company-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.job-closed-notice {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.closed-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease infinite;
}

.job-closed-notice h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.job-closed-notice p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Hide job content when closed */
.job-section.closed .job-content-hidden {
    display: none !important;
}

/* Show job content when opened */
.job-section:not(.closed) .job-closed-notice {
    display: none;
}

/* ===================================
   JOB CARD COMPACT STYLE
   =================================== */
.job-card-compact {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card-compact:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(36, 139, 32, 0.15);
    transform: translateY(-3px);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-card-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-weight: 600;
}

/* Company Logo di Card */
.company-logo-card {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.job-card-compact:hover .company-logo-card {
    transform: scale(1.05);
}

.job-card-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-card-majors {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.majors-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.majors-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.major-tag {
    padding: 0.4rem 0.9rem;
    background: var(--primary-light);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.0rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.apply-button:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(36, 139, 32, 0.3);
}

/* Job Grid Layout */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Tampilan memanjang (list) untuk section Lowongan Terbaru di landing */
.job-grid--list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.job-grid--list .job-card-compact {
    flex-direction: row;
    align-items: stretch;
    gap: 1.75rem;
    padding: 1.75rem 2rem;
}

.job-grid--list .job-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
}

.job-grid--list .job-card-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 1.75rem;
    border-left: 1px solid var(--border-color);
}

.job-card-period {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.period-label {
    color: var(--text-light);
    font-weight: 600;
}

.period-value {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .job-grid--list .job-card-compact {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .job-grid--list .job-card-action {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
    }
    .job-grid--list .job-card-action .apply-button {
        width: 100%;
    }
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===================================
   MODAL STYLES
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.modal-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-info {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.modal-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-info p:last-child {
    margin-bottom: 0;
}

.modal-info strong {
    color: var(--primary-color);
    min-width: 150px;
}

.modal-reminder {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.modal-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(36, 139, 32, 0.2);
}

.modal-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 139, 32, 0.3);
}

.modal-button:active {
    transform: translateY(0);
}


/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 9fr 7fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.footer-section p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-dark);
}

/* Footer Company Logos */
.footer-section.company-section {
    margin-right: 100px;
}

.footer-section.company-section h3 {
    text-align: center;
}

.footer-company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
}

.footer-company-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.footer-section img {
    object-fit: contain;
    height: 60px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    nav {
        padding: 1rem 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .about-content {
        gap: 3rem;
    }

    .footer-content {
        gap: 3rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-item {
        width: calc((100% - 4rem - 2rem) / 2.5);
        /* Tampil 2.5 item di tablet */
    }

    .gallery-scroll-wrapper {
        padding: 0 4rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .requirements-grid {
        max-width: 700px;
    }

    .requirement-card {
        padding: 1.8rem 2rem;
        gap: 1.5rem;
    }

    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Alur Rekrutmen */
    .flow-step {
        grid-template-columns: 100px 1fr;
        gap: 1.5rem;
    }

    .flow-step::before {
        left: 50px;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-date {
        font-size: 0.85rem;
    }

    /* Job Grid */
    .job-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-section .section-title {
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }

    .gallery-scroll-wrapper {
        padding: 0 3rem;
    }

    .gallery-scroll-container {
        gap: 1rem;
        padding: 0.5rem 0 1.5rem;
    }

    .gallery-item {
        width: calc((100% - 3rem - 1rem) / 2);
        /* Tampil 2 item di mobile landscape */
    }

    .gallery-scroll-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-scroll-btn span {
        font-size: 1.2rem;
    }

    .gallery-scroll-left {
        left: 0.5rem;
    }

    .gallery-scroll-right {
        right: 0.5rem;
    }

    .gallery-scroll-indicator {
        padding: 0 1.5rem;
    }

    .logo-container {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .company-logo {
        height: 25px;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.95rem;
    }

    .hero {
        height: auto;
        padding: 4rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image {
        height: 250px;
    }

    .map-container {
        padding: 1.5rem;
    }

    .map-title h3 {
        font-size: 1.8rem;
    }

    .map-title p {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-luas {
        font-size: 2.5rem;
    }

    .stat-number-main {
        font-size: 2.5rem;
    }

    .stat-divider {
        font-size: 2rem;
    }

    .vm-item h3 {
        font-size: 2rem;
    }

    .vm-item p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .vm-item ul li {
        font-size: 1rem;
        padding-left: 2rem;
        margin-bottom: 1rem;
    }

    .company-filter-tabs {
        gap: 0.5rem;
    }

    .company-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .footer-section.company-section {
        margin-right: 0 !important;
    }

    .footer-section.company-section h3 {
        text-align: left;
    }

    .footer-company-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .footer-company-logo {
        width: 100px;
    }

    .footer-bottom {
        padding: 2rem 1.5rem 0;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .flow-timeline {
        padding: 1rem 0;
    }

    .flow-step {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .flow-step::before {
        left: 40px;
        top: 90px;
    }

    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-circle.icon span {
        font-size: 2rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-date {
        font-size: 0.8rem;
    }

    .step-details p {
        font-size: 0.85rem;
    }

    .requirements-grid {
        gap: 1.2rem;
    }

    .requirement-card {
        padding: 1.5rem;
        gap: 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .requirement-icon {
        font-size: 3rem;
    }

    .requirement-content {
        text-align: center;
    }

    .requirement-card h3 {
        font-size: 1.2rem;
    }

    .requirement-card p {
        font-size: 0.95rem;
    }

    /* Job Card Responsive */
    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-card-compact {
        padding: 1.2rem;
    }

    .job-card-title {
        font-size: 1.1rem;
    }

    .company-logo-card {
        height: 30px;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .major-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }

    .apply-button {
        width: 100%;
        padding: 0.9rem 1.2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .modal-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .modal-text {
        font-size: 0.95rem;
    }

    .modal-info {
        padding: 1rem;
    }

    .modal-info p {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .modal-info strong {
        min-width: auto;
    }

    .modal-reminder {
        font-size: 0.85rem;
    }

    .modal-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .video-profile-section {
        padding: 3rem 0 !important;
    }

    .video-profile-section .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .video-profile-section .section-title {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .video-carousel-wrapper {
        padding: 0;
        max-width: 100%;
    }

    .video-carousel-track {
        border-radius: 0;
        box-shadow: none;
    }

    .video-carousel-item .video-container {
        padding-bottom: 56.25%;
    }

    .video-carousel-btn {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.9);
    }

    .video-carousel-btn span {
        font-size: 1.3rem;
    }

    .video-carousel-prev {
        left: 0.8rem;
    }

    .video-carousel-next {
        right: 0.8rem;
    }

    .video-indicators {
        margin-top: 1.5rem;
        gap: 0.8rem;
        padding: 0 1.5rem;
    }

    .video-indicator {
        width: 10px;
        height: 10px;
    }

    .video-indicator.active {
        width: 30px;
    }

    .job-closed-notice {
        padding: 3rem 2rem;
    }

    .closed-icon {
        font-size: 4rem;
    }

    .job-closed-notice h3 {
        font-size: 1.6rem;
    }

    .job-closed-notice p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .gallery-section .section-title {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .gallery-scroll-wrapper {
        padding: 0 2.5rem;
    }

    .gallery-scroll-container {
        gap: 0.8rem;
    }

    .gallery-item {
        width: calc((100% - 2.5rem - 0.8rem) / 1.5);
        /* Tampil 1.5 item di mobile portrait */
    }

    .gallery-scroll-btn {
        width: 35px;
        height: 35px;
    }

    .gallery-scroll-btn span {
        font-size: 1rem;
    }

    .gallery-scroll-left {
        left: 0.3rem;
    }

    .gallery-scroll-right {
        right: 0.3rem;
    }

    .gallery-scroll-indicator {
        padding: 0 1rem;
        height: 3px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .company-logo {
        height: 22px;
    }

    .logo-container {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-luas {
        font-size: 2rem;
    }

    .stat-number-main {
        font-size: 2rem;
    }

    .stat-divider {
        font-size: 1.5rem;
    }

    .stat-combined {
        gap: 0.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .vm-item h3 {
        font-size: 1.8rem;
    }

    .vm-item p,
    .vm-item ul li {
        font-size: 0.95rem;
    }

    .company-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-company-logo {
        width: 90px;
    }

    .footer-company-grid {
        gap: 1rem;
    }

    .map-container {
        padding: 1rem;
    }

    .map-title h3 {
        font-size: 1.5rem;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .flow-timeline {
        padding: 0.5rem 0;
    }

    .flow-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .flow-step::before {
        display: none;
    }

    .step-circle {
        width: 100%;
        height: auto;
        min-height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .step-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .step-label {
        font-size: 0.7rem;
        text-align: left;
    }

    .step-content {
        padding: 1.2rem;
        border-left: 3px solid var(--primary-color);
    }

    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .step-date {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .step-date::before {
        font-size: 0.9rem;
    }

    .step-details {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .step-details p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .sub-date {
        font-size: 0.75rem;
    }

    /* Job Card Mobile */
    .job-card-compact {
        padding: 1rem;
    }

    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card-title {
        font-size: 1rem;
    }

    .company-logo-card {
        height: 28px;
    }

    .job-card-meta {
        gap: 1rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .majors-label {
        font-size: 0.8rem;
    }

    .major-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .requirement-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .requirement-icon {
        font-size: 2.5rem;
    }

    .requirement-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .requirement-card p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
    }

    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }

    .modal-icon {
        font-size: 2.5rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .modal-text {
        font-size: 0.9rem;
    }

    .modal-info {
        padding: 0.8rem;
    }

    .modal-info p {
        font-size: 0.8rem;
    }

    .video-profile-section {
        padding: 2.5rem 0 !important;
    }

    .video-profile-section .section-title {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .video-profile-section .section-title h2 {
        font-size: 1.8rem;
    }

    .video-profile-section .section-title p {
        font-size: 0.9rem;
    }

    .video-carousel-wrapper {
        padding: 0;
        max-width: 100%;
    }

    .video-carousel-track {
        border-radius: 0;
    }

    .video-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .video-carousel-btn span {
        font-size: 1.1rem;
    }

    .video-carousel-prev {
        left: 0.5rem;
    }

    .video-carousel-next {
        right: 0.5rem;
    }

    .video-indicators {
        margin-top: 1rem;
        gap: 0.6rem;
        padding: 0 1rem;
    }

    .video-indicator {
        width: 8px;
        height: 8px;
    }

    .video-indicator.active {
        width: 24px;
    }

    .job-closed-notice {
        padding: 2rem 1.5rem;
    }

    .closed-icon {
        font-size: 3rem;
    }

    .job-closed-notice h3 {
        font-size: 1.4rem;
    }

    .social-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .step-circle {
        padding: 0.8rem 1rem;
        min-height: 60px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-content {
        padding: 1rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-date {
        font-size: 0.7rem;
    }

    .step-details p {
        font-size: 0.75rem;
    }
}

/* ===================================
   ANIMASI ENHANCEMENTS
   =================================== */

/* Fade In Animation untuk semua section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   ANIMASI UNTUK STAT CARDS
   =================================== */
.stat-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number,
.stat-luas {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-luas {
    animation: pulse 1s ease infinite;
    color: var(--primary-dark);
}

/* Counter Animation - Tambahkan class ini via JavaScript */
.stat-number.counting,
.stat-luas.counting {
    animation: none;
}

.stat-card:nth-child(1) .stat-number-main:first-child {
    animation-delay: 0.1s;
}

.stat-card:nth-child(1) .stat-number-main:last-child {
    animation-delay: 0.2s;
}

/* ===================================
   ANIMASI UNTUK FEATURE CARDS
   =================================== */
.feature-card {
    opacity: 0;
    animation: scaleIn 0.5s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: float 2s ease infinite;
}

/* ===================================
   ANIMASI UNTUK RECRUITMENT FLOW
   =================================== */
.flow-step {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.flow-step:nth-child(1) {
    animation-delay: 0.1s;
}

.flow-step:nth-child(2) {
    animation-delay: 0.2s;
}

.flow-step:nth-child(3) {
    animation-delay: 0.3s;
}

.flow-step:nth-child(4) {
    animation-delay: 0.4s;
}

.flow-step:nth-child(5) {
    animation-delay: 0.5s;
}

.step-circle {
    transition: all 0.4s ease;
}

.flow-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(36, 139, 32, 0.3);
}

.step-number {
    transition: all 0.3s ease;
}

.flow-step:hover .step-number {
    transform: scale(1.2);
    color: var(--primary-dark);
}

/* ===================================
   ANIMASI UNTUK JOB CARDS
   =================================== */
.job-card-compact {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.job-card-compact:nth-child(1) {
    animation-delay: 0.05s;
}

.job-card-compact:nth-child(2) {
    animation-delay: 0.1s;
}

.job-card-compact:nth-child(3) {
    animation-delay: 0.15s;
}

.job-card-compact:nth-child(4) {
    animation-delay: 0.2s;
}

.job-card-compact:nth-child(5) {
    animation-delay: 0.25s;
}

.job-card-compact:nth-child(6) {
    animation-delay: 0.3s;
}

.job-card-compact:nth-child(7) {
    animation-delay: 0.35s;
}

.job-card-compact:nth-child(8) {
    animation-delay: 0.4s;
}

.company-logo-card {
    transition: all 0.3s ease;
}

.job-card-compact:hover .company-logo-card {
    transform: scale(1.1) rotate(2deg);
}

/* ===================================
   ANIMASI UNTUK VISION & MISSION
   =================================== */
.vm-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.vm-item:nth-child(1) {
    animation-delay: 0.2s;
}

.vm-item:nth-child(2) {
    animation-delay: 0.4s;
}

.vm-item:nth-child(3) {
    animation-delay: 0.6s;
}

.vm-item h3::after {
    width: 0;
    transition: width 0.6s ease;
}

.vm-item:hover h3::after {
    width: 120px;
}

.vm-item ul li {
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

.vm-item ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.vm-item ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.vm-item ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.vm-item ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.vm-item ul li:nth-child(5) {
    animation-delay: 0.5s;
}

.vm-item ul li:nth-child(6) {
    animation-delay: 0.6s;
}

.vm-item ul li::before {
    transition: transform 0.3s ease;
}

.vm-item ul li:hover::before {
    transform: scale(1.3);
}

.hero-content h1 {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-content p {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.5s;
}

.cta-button {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.7s;
}

html {
    scroll-behavior: smooth;
}

.stat-number::after,
.stat-luas::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
}

.stat-number.loading::after,
.stat-luas.loading::after {
    opacity: 1;
    width: 12px;
    height: 12px;
    border-top-color: var(--primary-color);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.company-logo {
    transition: all 0.3s ease;
    filter: grayscale(0);
}

.company-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0) brightness(1.1);
}

.indonesia-map-image {
    transition: transform 0.5s ease;
}

.map-container:hover .indonesia-map-image {
    transform: scale(1.02);
}

.company-tab {
    position: relative;
    overflow: hidden;
}

.company-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(36, 139, 32, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.company-tab:hover::before {
    width: 200%;
    height: 200%;
}

.footer-section a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-section a:hover {
    padding-left: 10px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   ANIMASI UNTUK REQUIREMENTS
   =================================== */
.requirement-card {
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.requirement-card:nth-child(1) {
    animation-delay: 0.1s;
}

.requirement-card:nth-child(2) {
    animation-delay: 0.2s;
}

.requirement-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Jika ada lebih banyak requirement card */
.requirement-card:nth-child(4) {
    animation-delay: 0.4s;
}

.requirement-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* ===================================
   VIDEO CAROUSEL STYLES
   =================================== */
.video-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5rem;
}

.video-carousel-track {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
}

.video-carousel-item .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-carousel-item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    background: white;
    padding: 1.5rem;
    text-align: center;
}

.video-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.video-carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(36, 139, 32, 0.4);
}

.video-carousel-btn span {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.video-carousel-btn:hover span {
    color: white;
}

.video-carousel-prev {
    left: 1rem;
}

.video-carousel-next {
    right: 1rem;
}

.video-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.video-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-indicator.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

.video-indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}. s e e - a l l - b t n   {   d i s p l a y :   i n l i n e - f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 5 a 4 f c f   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ;   c o l o r :   w h i t e ;   p a d d i n g :   1 4 p x   4 0 p x ;   b o r d e r - r a d i u s :   5 0 p x ;   t e x t - d e c o r a t i o n :   n o n e ;   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   1 . 0 5 r e m ;   t r a n s i t i o n :   a l l   0 . 3 s ;   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 9 0 ,   7 9 ,   2 0 7 ,   0 . 3 ) ;   }   . s e e - a l l - b t n : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 9 0 ,   7 9 ,   2 0 7 ,   0 . 4 ) ;   c o l o r :   w h i t e ;   t e x t - d e c o r a t i o n :   n o n e ;   }  
 
