/* --- VARIABLES & RESET --- */
:root {
    --primary: #00314d; /* Hijau Sultan Agung */
    --accent: #f7891a;  /* Emas */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #fff;
    --bg-gray: #f8f9fa;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
html { scroll-behavior: smooth; }
body { color: var(--text-dark); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-gray { background-color: var(--bg-gray); }
.btn {
    padding: 12px 30px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    border-radius: 4px;
}
.btn:hover { background: #945211; transform: translateY(-2px); }
.text-center { text-align: center; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 20px 0;
    z-index: 1000; transition: var(--transition); background: transparent;
}
.navbar.scrolled { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 15px 0; }
.navbar .container { 
    display: flex; 
    justify-content: space-between; /* Penting agar logo dan toggle terpisah */
    align-items: center; 
}

/*.logo { font-size: 24px; font-weight: 700; color: #fff; text-transform: uppercase; }
.navbar.scrolled .logo { color: var(--primary); }
.logo span { color: var(--accent); } */

.nav-links { display: flex; gap: 30px; }
.nav-links a { 
    color: #fff; font-weight: 500; font-size: 14px; 
    text-transform: uppercase; position: relative; 
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    background: var(--accent); bottom: -5px; left: 0; transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.menu-toggle { display: none; color: #fff; font-size: 24px; cursor: pointer; }
.navbar.scrolled .menu-toggle { color: var(--text-dark); }

/* --- BARU: Styling untuk Gambar Logo di Navbar --- */
.logo-img {
    height: 80px; /* Tentukan tinggi logo (sesuaikan jika perlu) */
    width: auto;
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 26, 50, 0.7), rgba(0, 20, 50, 0.6)), url('https://ugateway.id/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-18-at-15.51.57-1.jpeg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    margin-top: -80px; /* Counteract navbar height */
}
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Hero Khusus Halaman Karir */
.hero-career { height: 60vh; background-position: top; }

/* --- SECTIONS (About, Units, etc) --- */
.section-header { margin-bottom: 50px; text-align: center; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Business Cards */
.card {
    background: #fff; padding: 50px 30px; /* Tambah padding agar kartu lebih tinggi */
    border: 1px solid #eee;
    transition: var(--transition); border-radius: 8px; position: relative; overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--accent); }

/* --- GANTI BLOK LAMA ICON (.card i) dengan BLOK GAMBAR UNIT (.unit-img) --- */
.unit-img {
    /* Peningkatan ukuran tampilan foto agar terlihat lebih besar */
    width: 120px; 
    height: 120px; 
    
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px; /* Sedikit naikkan margin agar lebih lega */
    border: 3px solid var(--accent);
    padding: 2px;
    
    /* PENTING: Menambah batasan agar browser cepat tahu ukuran totalnya */
    max-width: 100%; 
    display: block;
}
/* Hapus atau nonaktifkan blok ini jika masih ada: */
/* .card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; } */


.card h3 { margin-bottom: 10px; font-size: 1.3rem; }
/* ... properti kartu lainnya ... */

/* --- CAREER PAGE STYLES --- */
.job-filter { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 8px 20px; border: 1px solid var(--primary); background: transparent;
    color: var(--primary); border-radius: 20px; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; }

.job-card {
    display: flex;
    flex-direction: column; /* Susun item ke bawah */
    padding: 20px;
    /* Hapus height tetap jika ada */
    /* height: 200px; <-- HAPUS INI */
}
.job-card:hover { transform: translateX(10px); box-shadow: var(--shadow); }
.job-info h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 5px; }
.job-meta { font-size: 0.9rem; color: #777; display: flex; gap: 15px; }
.job-meta i { color: var(--accent); margin-right: 5px; }

/* --- FOOTER --- */
footer { background: #00314d; color: #fff; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--accent); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ffffff; font-size: 0.9rem; }
.footer-col ul li a:hover { color: #fff; }
.copyright { border-top: 1px solid #ffffff; padding-top: 20px; text-align: center; color: #ffffff; font-size: 0.8rem; }

/* --- Tambahan untuk Tombol Kembali --- */
.btn-back {
    display: inline-flex;     /* Agar ikon dan teks sejajar */
    align-items: center;
    gap: 8px;                 /* Jarak antara ikon panah dan teks */
    color: #888;              /* Warna abu-abu soft */
    margin-bottom: 20px;      /* Jarak ke judul di bawahnya */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: var(--primary);    /* Berubah jadi hijau saat di-hover */
    transform: translateX(-5px); /* Efek gerak sedikit ke kiri */
}

/* --- RESPONSIVE / MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    
    .navbar {
        padding: 15px 20px; 
    }
    
    .menu-toggle { 
        display: block; /* Hanya properti ini yang dibutuhkan untuk menampilkannya */
    }
    
    /* ... sisanya tetap sama (nav-links, hero-content, grid-2, dll.) ... */
    /* Ketika navbar di-scroll */
    .navbar.scrolled .menu-toggle { 
        color: var(--text-dark); 
    }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
        background: #fff; flex-direction: column; align-items: center; justify-content: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text-dark); font-size: 1.2rem; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .job-card .btn { width: 100%; text-align: center; }
}
/* --- NEWS / BERITA SECTION --- */
.news-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}

.news-card {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition);
    display: flex; flex-direction: column;
}

.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.news-thumb {
    height: 200px; width: 100%; object-fit: cover;
}

.news-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.news-title { font-size: 1.2rem; margin-bottom: 15px; line-height: 1.4; color: var(--primary); }
.news-excerpt { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.news-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.news-link:hover { color: var(--accent); }

/* --- UNIT DETAIL PAGE --- */
.unit-hero {
    height: 60vh;
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: flex-end;
    margin-top: -80px; /* Counteract navbar */
}
.unit-hero::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(0, 37, 77, 0.9), transparent);
}
.unit-hero-content {
    position: relative; z-index: 2; padding-bottom: 60px; color: #fff; width: 100%;
}
.unit-breadcrumbs { font-size: 0.9rem; margin-bottom: 15px; opacity: 0.8; }
.unit-breadcrumbs a:hover { text-decoration: underline; }

/* Sidebar Layout for Unit Detail */
.unit-layout {
    display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-top: 50px;
}

.unit-main h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.unit-main p { margin-bottom: 20px; color: #555; text-align: justify; }

.unit-sidebar {
    background: var(--bg-gray); padding: 30px; border-radius: 8px; height: fit-content;
}
.sidebar-item { margin-bottom: 25px; }
.sidebar-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px;}
.sidebar-item p, .sidebar-item li { font-size: 0.95rem; color: #555; margin-bottom: 8px; }
.sidebar-item i { width: 25px; color: var(--accent); }

/* Gallery Mini */
.mini-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.mini-gallery img { width: 100%; border-radius: 4px; transition: var(--transition); }
.mini-gallery img:hover { transform: scale(1.05); }

/* Responsive for Unit Page */
@media (max-width: 768px) {
    .unit-layout { grid-template-columns: 1fr; }
    .unit-hero { height: 50vh; }
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Vision Mission Box */
.vm-box {
    background-color: var(--primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.vm-item h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    margin-bottom: 20px;
}
.vm-item p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Timeline/History Section */
.history-item {
    padding: 30px 0;
    border-left: 2px solid var(--accent);
    padding-left: 30px;
    position: relative;
    margin-left: 10px;
    margin-bottom: 40px;
}
.history-item:last-child { border-left: none; }

.history-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 35px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 5;
    border: 3px solid var(--bg-gray);
}
.history-item h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.history-item p {
    color: #555;
    font-size: 1rem;
}

/* Responsive for VM Box */
@media (max-width: 768px) {
    .vm-grid { grid-template-columns: 1fr; }
}

/* --- DIRECTOR PROFILE STYLES --- */

.director-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.director-img-wrapper {
    flex: 1;
    min-width: 250px;
}

.director-photo {
    width: 100%;
    height: 350px; /* Tinggi foto tetap agar rapi */
    object-fit: cover;
    border-radius: 8px;
    border-bottom: 5px solid var(--accent); /* Aksen emas di bawah foto */
}

.director-text {
    flex: 2;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.director-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.director-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.director-info span {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive untuk Mobile (Tumpuk ke bawah) */
@media (max-width: 768px) {
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .director-photo {
        height: 300px;
        width: 100%;
        max-width: 300px; /* Batasi lebar di HP */
        margin: 0 auto;
    }

    .director-text {
        width: 100%;
    }
    
    .quote-icon {
        left: 50%;
        transform: translateX(-50%); /* Tengahkan icon kutip */
        top: -30px;
    }
}

/* --- PARAGON STYLE BUSINESS UNITS --- */

/* Reset Grid agar lebih rapi */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Style Kartu Baru (.unit-card) */
.unit-card {
    background: #fff;
    border-radius: 12px; /* Sudut tumpul modern */
    overflow: hidden;    /* Agar gambar tidak keluar dari radius */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%; /* Agar tinggi kartu seragam */
    border: 1px solid rgba(0,0,0,0.05);
}

/* Efek Hover pada Kartu */
.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

/* Pembungkus Gambar (Thumbnail) */
.unit-thumb {
    width: 100%;
    height: 220px; /* Tinggi gambar tetap */
    overflow: hidden;
    position: relative;
}

/* Gambar Unit */
.unit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar mengisi area tanpa gepeng */
    transition: transform 0.6s ease;
}

/* Efek Zoom Gambar saat Hover */
.unit-card:hover .unit-thumb img {
    transform: scale(1.1);
}

/* Konten Teks */
.unit-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Mendorong tombol ke bawah agar rata */
    text-align: left; /* Teks rata kiri seperti Paragon */
}

.unit-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.unit-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Tombol "Lihat Detail" */
.read-more {
    margin-top: auto; /* Memaksa ke bagian bawah kartu */
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.unit-card:hover .read-more {
    gap: 10px; /* Panah bergerak sedikit saat hover */
}

/* --- SWIPER FULL WIDTH STYLE --- */

.unitSwiper {
    width: 100%;
    /* Tidak ada padding bawah agar gambar menyentuh section berikutnya */
}

/* Layout Vertikal: Teks Atas, Gambar Bawah */
.unit-full-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

/* 1. BAGIAN TEKS (ATAS) */
.unit-full-text {
    padding: 0 20px 50px 20px; /* Padding bawah agak besar agar berjarak dengan foto */
    text-align: center;
    max-width: 800px; /* Batasi lebar teks agar enak dibaca */
    margin: 0 auto;
}

.unit-full-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.unit-full-text .subtitle {
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.unit-full-text .desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-slide {
    padding: 12px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px; /* Tombol bulat lebih modern */
    display: inline-block;
}

.btn-slide:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* 2. BAGIAN GAMBAR (BAWAH - FULL WIDTH) */
.unit-full-img {
    width: 100%;       /* Lebar Penuh Layar */
    height: 60vh;      /* Tinggi 60% dari layar (bisa diubah misal 500px) */
    position: relative;
    overflow: hidden;
}

.unit-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar mengisi penuh tanpa gepeng */
    object-position: center;
}

/* Custom Navigasi (Panah) agar ada di samping teks, bukan di gambar */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    top: 30%; /* Naikkan ke area teks */
    background: transparent;
    box-shadow: none;
}

/* Custom Pagination (Titik) - Letakkan di atas gambar sedikit */
.swiper-pagination {
    bottom: 20px !important;
}
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
    width: 12px;
    height: 12px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent) !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .unit-full-text h3 { font-size: 2rem; }
    .unit-full-img { height: 40vh; /* Di HP gambar jangan terlalu tinggi */ }
    .swiper-button-next, .swiper-button-prev { display: none; } /* Sembunyikan panah di HP */
}

/* --- UNIT HERO SLIDER STYLE --- */

.unitHeroSwiper {
    width: 100%;
    height: 80vh; /* Tinggi Slider (80% layar) */
}

.unit-hero-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Teks Vertikal Tengah */
    justify-content: center; /* Teks Horizontal Tengah */
    text-align: center;
}

/* 1. Gambar Background Full */
.unit-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* 2. MASKING WARNA (PENTING AGAR TULISAN BACA) */
.unit-mask {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* Gunakan warna Primary Brand dengan transparansi 70% */
    background: rgba(0, 0, 0, 0.586); 
    /* Atau Gradasi: background: linear-gradient(to bottom, rgba(0,49,77,0.5), rgba(0,49,77,0.9)); */
    z-index: 2;
}

/* 3. Konten Teks di Atas Gambar */
.unit-hero-content {
    position: relative;
    z-index: 3; /* Paling atas */
    color: #fff;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease; /* Efek muncul pelan */
}

.unit-category {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent); /* Warna Emas */
    background: rgba(0, 0, 0, 0.308);
}

.unit-hero-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.unit-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Tombol Outline Putih */
.btn-outline-white {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Navigasi Swiper Putih */
.unitHeroSwiper .swiper-button-next, 
.unitHeroSwiper .swiper-button-prev {
    color: #fff !important;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.unitHeroSwiper .swiper-button-next:hover, 
.unitHeroSwiper .swiper-button-prev:hover {
    opacity: 1;
}

.unitHeroSwiper .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}
.unitHeroSwiper .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .unitHeroSwiper { height: 60vh; }
    .unit-hero-content h3 { font-size: 2.5rem; }
    .unit-hero-content p { font-size: 1rem; }
    .swiper-button-next, .swiper-button-prev { display: none; }
}

/* --- LOGO SWITCHING ANIMATION --- */

/* Pengaturan Dasar untuk Kedua Logo */
.logo-img {
    height: 60px; /* Tinggi logo */
    width: auto;
    transition: all 0.3s ease;
}

/* 1. KONDISI AWAL (Di Atas / Transparent Navbar) */
.logo-white {
    display: block; /* Tampilkan logo putih */
}

.logo-color {
    display: none;  /* Sembunyikan logo asli */
}

/* 2. KONDISI SAAT SCROLL (.navbar.scrolled) */
/* Saat navbar punya class 'scrolled', kita balik kondisinya */

.navbar.scrolled .logo-white {
    display: none;  /* Sembunyikan logo putih */
}

.navbar.scrolled .logo-color {
    display: block; /* Tampilkan logo asli */
}

/* --- HERO MASKING / OVERLAY --- */

.hero-career {
    position: relative; /* Penting sebagai acuan layer */
    z-index: 1;         /* Membuat konteks tumpukan baru */
}

/* Membuat lapisan hitam transparan */
.hero-career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.512); /* Warna Hitam, Transparansi 70% */
    z-index: -1; /* Menaruh overlay di belakang teks, tapi di depan background gambar */
}

/* Memastikan teks tetap di paling depan dan berwarna putih */
.hero-career .hero-content {
    position: relative;
    z-index: 2; /* Prioritas tertinggi agar teks tidak tertutup */
    color: #fff; /* Pastikan teks putih */
}

/* --- ABOUT HERO STYLE (PARAGON LOOK) --- */

/* 1. Latar Belakang Section (Warna Biru/Primary) */
.about-hero-section {
    background-color: var(--primary); /* Menggunakan warna biru/hijau tua Genesa */
    padding: 100px 0; /* Memberi ruang luas di atas dan bawah */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Kartu Putih di Tengah */
.about-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 60px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 1100px;
    margin: 0 auto;
}

/* --- KOLOM KIRI (TEKS) --- */
.about-text-content {
    flex: 3; /* Lebar porsi teks 60% */
}

.about-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.about-text-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.big-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: #d1d5db; /* Warna abu-abu muda untuk kutipan */
    line-height: 1;
    margin-bottom: -10px;
    font-style: italic;
}

.highlight-text {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.body-text {
    font-family: 'Lato', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.founder-info {
    margin-top: 40px;
}

.founder-info h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.founder-info span {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #777;
    font-size: 0.95rem;
}

/* --- KOLOM KANAN (GAMBAR & DOTS) --- */
.about-img-wrapper {
    flex: 2; /* Lebar porsi gambar 40% */
    position: relative; /* Agar dots bisa diposisikan absolute */
    padding-left: 20px;
    padding-bottom: 20px;
}

.about-profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2; /* Gambar di atas dots */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Membuat Pola Titik-Titik (Dots Pattern) */
.dots-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    /* Membuat pola titik menggunakan radial-gradient */
    background-image: radial-gradient(var(--accent) 20%, transparent 20%);
    background-position: 0 0;
    background-size: 15px 15px; /* Jarak antar titik */
    left: 0;
    bottom: 0;
    z-index: 1; /* Di belakang gambar */
    opacity: 0.6;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    .about-card {
        flex-direction: column-reverse; /* Gambar di atas, teks di bawah (opsional) atau sebaliknya */
        padding: 40px 25px;
        gap: 40px;
    }
    
    .about-img-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .dots-pattern {
        left: 20px; /* Sesuaikan posisi dots di HP */
        bottom: -10px;
    }

    .about-text-content h2 {
        font-size: 2rem;
    }
}