/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
/* === THEME OVERRIDES: Green–Brown–Blue === */
:root {
  /* Brand core */
  --primary: #2E7D32;      /* Hijau brand */
  --secondary: #795548;    /* Coklat pendukung */
  --accent: #1565C0;       /* Biru aksen */

  /* States & shades */
  --primary-600: #1B5E20;
  --secondary-600: #5D4037;
  --accent-600: #0D47A1;

  /* Neutrals */
  --dark: #1F2937;
  --gray: #6B7280;
  --light: #F7F8F9;
  --light-gray: #E5E7EB;
}

/* Text defaults */
body { color: var(--dark); }

/* Headings memakai hijau (sudah sesuai rules kamu) */
h2, h3, h4 { color: var(--primary); }

/* Link aksen biru untuk diferensiasi kecil */
a:hover { color: var(--accent); }

/* === Buttons === */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.18);
}

.btn-secondary {
  color: var(--secondary);
  border-color: var(--secondary);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(121, 85, 72, 0.2);
}

.btn-whatsapp { /* biarkan hijau WA khasnya, hanya lembutkan shadow */
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* === Hero & Overlay === */
/* Ganti gradien hijau→biru agar terasa modern */
.hero .slide::before {
  background: linear-gradient(135deg, rgba(46,125,50,0.88) 0%, rgba(21,101,192,0.88) 100%);
}

/* === CTA Section (full width) === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* === Cards & borders === */
.service-card, .industry-card, .gallery-item-full, .news-card,
.document-card, .advantage-card, .certification-card {
  border-color: var(--light-gray);
}
.service-card:hover, .industry-card:hover, .gallery-item-full:hover, .news-card:hover,
.document-card:hover, .advantage-card:hover, .certification-card:hover {
  border-color: var(--primary);
}

/* === Badges / Kategori (gunakan biru agar kontras dari primary headings) === */
.news-category {
  background: var(--accent);
}

/* === Icon Coloring: gunakan trio warna secara berulang === */
.service-card:nth-child(3n+1) .service-icon,
.industry-card:nth-child(3n+1) .industry-icon { color: var(--primary); }

.service-card:nth-child(3n+2) .service-icon,
.industry-card:nth-child(3n+2) .industry-icon { color: var(--secondary); }

.service-card:nth-child(3n) .service-icon,
.industry-card:nth-child(3n) .industry-icon { color: var(--accent); }

/* Hapus hardcoded icon colors sebelumnya (opsional kalau masih terlihat):
   .industry-card:nth-child(n) .industry-icon { color: inherit !important; } */

/* === Track Record & Career Stats: hijau→biru; teks putih tetap aman === */
.track-record,
.career-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

/* Footer: pertahankan gelap, aksen link coklat/biru untuk interaksi */
.main-footer a:hover { color: var(--accent); }
.footer-section h3, .footer-section h4 { color: var(--secondary); }


/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.main-header.header--hidden {
  transform: translateY(-100%);
}

.main-header.header--elevated {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    line-height: 1;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Hero Slideshow */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Pastikan slideshow berada di belakang konten */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: -1; /* Slide aktif berada di atas slide lainnya */
}

/* Gaya untuk gambar di dalam slide */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Menghindari space di bawah gambar */
}

/* Overlay gelap untuk semua slide */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%);
    z-index: 1; /* Overlay berada di atas gambar */
}

/* Memastikan konten berada di atas overlay */
.hero-content {
    width: 100%;
    position: relative;
    z-index: 2; /* Konten berada di atas overlay */
}

/* Gaya teks hero */
.hero-text {
    max-width: 600px;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsif */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        height: auto;
        padding: 4rem 0;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    max-width: 100%;
}

.about-text {
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-text p {
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px; /* Diperlebar dari 1200px menjadi 1400px */
    margin-left: auto;
    margin-right: auto;
}

.vision, .mission {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.vision h3, .mission h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.vision p {
    text-align: center;
    font-size: 1.1rem;
}

.mission ul {
    list-style: none;
    margin-top: 1rem;
}

.mission ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.mission ul li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: var(--light);
}

.industries h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 2rem;
}

.industries-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Warna berbeda untuk setiap icon industri */
.industry-card:nth-child(1) .industry-icon { color: #E53935; } /* Merah untuk Medis */
.industry-card:nth-child(2) .industry-icon { color: #3949AB; } /* Biru tua untuk Farmasi */
.industry-card:nth-child(3) .industry-icon { color: #43A047; } /* Hijau untuk Manufaktur */
.industry-card:nth-child(4) .industry-icon { color: #FB8C00; } /* Oranye untuk Migas */
.industry-card:nth-child(5) .industry-icon { color: #8E24AA; } /* Ungu untuk Laboratorium */
.industry-card:nth-child(6) .industry-icon { color: #039BE5; } /* Biru untuk Oleokimia */
.industry-card:nth-child(7) .industry-icon { color: #7CB342; } /* Hijau terang untuk Agrokimia */
.industry-card:nth-child(8) .industry-icon { color: #616161; } /* Abu-abu untuk Pemerintah */

.industry-card h4 {
    color: #000000; /* Warna hitam untuk semua judul */
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    text-align: center;
    padding: 5rem 0;
    background: white;
}

.services-description {
    text-align: center;
    max-width: 800
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--light);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card:nth-child(1) .service-icon { color: #1E88E5; } 
.service-card:nth-child(2) .service-icon { color: #43A047; } 
.service-card:nth-child(3) .service-icon { color: #FB8C00; } 
.service-card:nth-child(4) .service-icon { color: #7CB342; } 

.service-card h3 {
    color: #000000; 
    margin-bottom: 1rem;
}

.service-card p {
    color: #000000;
}

/* Gallery Preview */
.gallery-preview {
    text-align: center;
    padding: 5rem 0;
    background: var(--light);
}

.gallery-description {
    text-align: center;
    max-width: 800
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 94, 32, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background: white;
}

.clients-description {
    text-align: center;
    max-width: 800
}

.clients h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.client-logo {
    text-align: center;
    padding: 1rem;
}

.client-logo img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 100%;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #4CAF50 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin: 4rem 0 0 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-content {
    max-width: 100%;
    padding: 0;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

/* Alternative method using negative margins */
.full-width-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Career Page CTA */
.career-page .cta-section {
    margin: 4rem 0 0 0;
}

.career-page .cta-content {
    padding: 3rem 0;
}

/* Konsultan Page CTA */
.services-page .cta-section {
    margin: 4rem 0 0 0;
}

.services-page .cta-content {
    padding: 3rem 0;
}

/* Kode Page CTA */
.kode-page .cta-section {
    margin: 4rem 0 0 0;
}

.kode-page .cta-content {
    padding: 3rem 0;
}

/* Gallery Page CTA */
.gallery-page .cta-section {
    margin: 4rem 0 0 0;
}

.gallery-page .cta-content {
    padding: 3rem 0;
}

/* News Page CTA */
.news-page .cta-section {
    margin: 4rem 0 0 0;
}

.news-page .cta-content {
    padding: 3rem 0;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    font-size: 0.8rem;
}

.main-footer .footer-section h3 {
    font-size: 1rem;
}

.main-footer .footer-section h4 {
    font-size: 0.9rem;
}

.main-footer .footer-section p {
    font-size: 0.8rem;
}

.main-footer .contact-info p {
    font-size: 0.8rem;
}

.main-footer .certificates img {
    height: 25px;
}

/* Sertifikat di footer - ukuran diperbesar, warna original */
.main-footer .certificates img {
    height: 40px; /* Memperbesar ukuran logo */
    filter: none; /* Menghapus filter grayscale untuk menampilkan warna original */
    opacity: 1; /* Memastikan opacity 100% */
    transition: opacity 0.3s ease; /* Menambahkan efek transisi halus */
}

.main-footer .certificates img:hover {
    opacity: 1; /* Menjaga opacity tetap 100% saat hover */
    transform: scale(1.1); /* Menambahkan efek zoom kecil saat hover */
}

.footer-bottom p {
    font-size: 0.75rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certificates img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Kontak Section - Icon alignment */
.contact-info p {
    display: flex;
    align-items: flex-start; /* Mengatur elemen agar rata atas */
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.8rem;
}

.contact-info i {
    margin-right: 0.5rem;
    margin-top: 0.2rem; /* Menambahkan sedikit jarak atas untuk ikon */
    min-width: 1rem; /* Memberi lebar minimum agar ikon tidak terlalu rapat */
    font-size: 0.9rem; /* Ukuran font ikon */
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
        height: auto;
        padding: 4rem 0;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .industries-grid,
    .gallery-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Additional Pages Styles */
/* Konsultan Page */
.services-page {
    padding: 100px 0 50px;
    background: white;
}

.services-page h1 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-page .page-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--gray);
}

/* Kode Page */
.kode-page {
    padding: 100px 0 50px;
    background: white;
}

/* Search and Filter Controls */
.kode-controls {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: center;
}

/* Search Box */
.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

/* Filter Box */
.filter-box select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: white;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.kode-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.kode-table th,
.kode-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.kode-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.kode-table tr:hover {
    background: var(--light);
}

/* Gallery Page */
.gallery-page {
    padding: 100px 0 50px;
    background: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--light);
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item-full {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.gallery-item-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-item-full img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-full:hover img {
    transform: scale(1.05);
}

.gallery-item-info {
    padding: 1.5rem;
    background: white;
}

.gallery-item-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* News Page */
.news-page {
    padding: 100px 0 50px;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.news-category {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.news-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* Article Page */
.article-page {
    padding: 100px 0 50px;
    background: white;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Animasi Custom */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animasi untuk section */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay untuk animasi berurutan */
.section-animate.delay-1 {
    transition-delay: 0.1s;
}

.section-animate.delay-2 {
    transition-delay: 0.2s;
}

.section-animate.delay-3 {
    transition-delay: 0.3s;
}

.section-animate.delay-4 {
    transition-delay: 0.4s;
}

.section-animate.delay-5 {
    transition-delay: 0.5s;
}

/* Konsultan Page Improvements */

.services-page {
    padding: 100px 0 50px;
    background: white;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    margin-bottom: 4rem;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2rem;
}

/* Process Steps - Nomor di Luar Kotak */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    flex: 1;
    margin-left: 20px;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* Hover Effect */
.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.4);
}

/* Responsive Process Steps */
@media (max-width: 768px) {
    .process-steps::before {
        left: 15px;
        top: 25px;
        height: calc(100% - 50px);
    }
    
    .process-step {
        padding-left: 45px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
        margin-left: 10px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

/* Advantages Section */
.advantages-section {
    margin: 4rem 0;
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    text-align: center;
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-card p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* Track Record */
.track-record {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #4CAF50 100%);
    color: white;
    margin: 3rem 0;
    border-radius: 15px;
}

.track-record h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Certifications Section */
.certifications-section {
    margin: 4rem 0;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.cert-icon {
    margin-bottom: 1.5rem;
}

.cert-icon img {
    height: 70px;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.certification-card:hover .cert-icon img {
    transform: scale(1.1);
}

.certification-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.certification-card p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content h3 {
        margin-top: 1rem;
    }
    
    .advantages-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Gallery Page Improvements */

.gallery-page {
    padding: 100px 0 50px;
    background: white;
}

.gallery-section {
    margin: 3rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--light);
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.2);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item-full {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.gallery-item-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-full:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-item-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-item-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-item-info p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* News Page Improvements */

.news-page {
    padding: 100px 0 50px;
    background: white;
}

.news-section {
    margin: 3rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 94, 32, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-category {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.news-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
    flex: 1;
}

.news-content p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--light);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    text-align: center;
}

.newsletter-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

/* Kode Page Improvements */

.kode-page {
    padding: 100px 0 50px;
    background: white;
}

.kode-controls {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filter-box select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: white;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.important-info {
    margin: 2rem 0;
}

.info-card {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    color: #856404;
}

.info-content h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.info-content p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

.kode-table-section {
    margin: 2rem 0;
}

.kode-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.kode-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.kode-table th,
.kode-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.kode-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.kode-table tr:hover {
    background: var(--light);
}

.kode-table tr:last-child td {
    border-bottom: none;
}

.documents-section {
    margin: 4rem 0;
}

.documents-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.document-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.document-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.document-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .kode-controls {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-grid,
    .gallery-grid-full,
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-section {
        padding: 2rem;
    }
}

/* Simplified Career Page Styles */

.career-page {
    padding: 100px 0 50px;
    background: white;
}

/* Career Stats */
.career-stats {
    margin: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #4CAF50 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Join Section */
.why-join-section {
    margin: 4rem 0;
}

.why-join-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* No Positions Available */
.no-positions-section {
    margin: 4rem 0;
}

.no-positions-card {
    background: var(--light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.no-positions-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.no-positions-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.no-positions-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.contact-info .btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

/* Life at Karya Limbah */
.life-section {
    margin: 4rem 0;
}

.life-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
}

.life-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.life-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.life-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.life-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 94, 32, 0.9);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.life-item:hover .life-overlay {
    transform: translateY(0);
}

.life-item:hover img {
    transform: scale(1.1);
}

.life-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .career-page {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .career-stats {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .no-positions-card {
        padding: 2rem;
    }
    
    .life-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .life-gallery {
        grid-template-columns: 1fr;
    }
    
    .career-stats {
        padding: 1.5rem;
    }
}

/* WhatsApp Float dengan Pulse Animation & Text */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    min-width: 60px;
    height: 60px;
    /* Animasi Pulse */
    animation: pulse 2s infinite;
}

/* Animasi Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.whatsapp-float i {
    font-size: 2rem;
    min-width: 2rem;
    animation: none; /* Hentikan animasi pulse pada ikon saat hover */
}

.whatsapp-text {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    opacity: 0; /* Awalnya disembunyikan */
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
    animation: none; /* Hentikan animasi pulse saat di-hover */
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* Untuk mode mobile jika perlu menyembunyikan text */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 10px;
        border-radius: 50%;
        min-width: 60px;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Pastikan container jadi anchor positioning menu */
.main-header .container { position: relative; }

/* Cegah icon menyerap klik, biar klik di area .mobile-toggle tetap kena */
.mobile-toggle i { pointer-events: none; }

/* Mobile */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
  }

  /* Sembunyikan CTA di mobile kalau sempit (opsional) */
  .header-cta { display: none; }

  /* Menu tertutup default */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;       /* tepat di bawah header */
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.active { display: block !important; }

  .main-nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Saat menu terbuka, kunci body (opsional) */
  body.no-scroll { overflow: hidden; }
}

/* Desktop */
@media (min-width: 769px) {
  .mobile-toggle { display: none; }
  .header-cta { display: flex; }

  .main-nav {
    display: block;
    position: static;
    padding: 0;
    box-shadow: none;
  }

  .main-nav ul {
    display: flex;
    gap: 2rem;
  }
}

