/* ==== PENGATURAN DASAR & FONT ==== */
:root {
    --primary-blue: #005A9C;
    --secondary-blue: #0D95E8;
    --light-gray: #f4f7f6;
    --text-dark: #333333;
    --text-light: #FFFFFF;

    /* Warna dari Logo */
    --logo-magenta: #FF00FF;
    --logo-yellow: #FFFF00;
    --logo-green: #00FF00;
    --logo-blue: #0000FF;
    --logo-blue-light: #e0f2ff;
    
    --logo-text-color: #0007de; 
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff; 
    overscroll-behavior-y: none; 
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

/* ==== HEADER / NAVIGASI ==== */
header {
    background: var(--primary-blue);
    padding: 0; 
    position: sticky;
    top: 0;
    z-index: 100; 
    /* Shadow abu-abu transparan di bawah navbar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.40); 
}


header .container {
    width: 95%; 
    max-width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto; 
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px; 
    transition: opacity 0.3s;
    height: 100%;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px; 
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.3rem; 
    font-weight: 700;
    color: var(--light-gray); 
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 15px 0; 
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--light-gray);
}

/* ==== LAYANAN IKON (PENGGANTI STRUKTUR KEPEMIMPINAN) ==== */
.leadership-section {
    padding: 25px 0 25px; 
    background: #ffffff; 
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative; 
    z-index: 5;         
}

.leadership-header {
    text-align: center;
    margin-bottom: 25px; 
}

.leadership-header h2 {
    font-size: 1.7rem; 
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 5px 0; 
    letter-spacing: -0.5px;
}

.leadership-header p {
    font-size: 0.95rem; 
    color: #666;
    margin-bottom: 10px; 
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.service-icon-card {
    text-align: center;
    background: var(--primary-blue); 
    padding: 20px 15px; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-icon-card:hover {
    transform: translateY(-5px);
    background: var(--secondary-blue); 
}

.service-icon-background {
    width: 60px; 
    height: 60px;
    margin: 0 auto 12px auto; 
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.service-icon-card:hover .service-icon-background {
    background: #fff; 
}

.service-icon-background i {
    font-size: 1.6rem; 
    color: #fff; 
    transition: color 0.3s ease;
}

.service-icon-card:hover .service-icon-background i {
    color: var(--primary-blue); 
}

.service-icon-card h3 {
    font-size: 0.9rem; 
    color: var(--text-light); 
    font-weight: 600;
    line-height: 1.4;
}

/* ==== LIVE SERVER BACKGROUND - DI BAWAH LEADERSHIP ==== */
/* ... (kode live-server-bg Anda tetap di sini) ... */

/* ==== SECTION SELAMAT DATANG ==== */
/* ▼▼▼ SINTAKS CSS ERROR DIPERBAIKI DI SINI ▼▼▼ */
#about {
    padding: 60px 0; 
    background: transparent; 
    position: relative; 
    z-index: 4;      
    text-align: center; 
    /* 'scroll-margin-top' dipindahkan ke blok terpisah di bawah */
}
/* Blok #about kedua dihapus karena error */

#about h2,
#about p {
    color: #FFFFFF;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.about-logo {
    display: block; 
    margin: 0 auto 5px auto; 
    height: 150px; 
    width: auto;
    filter: brightness(0) invert(1);
}

#about h2 {
    margin-bottom: 5px; 
}

#about p {
    max-width: 800px;
    margin: 0 auto 15px auto; 
    font-size: 1.1rem;
    text-align: center;
}

/* ==== CSS UNTUK TOMBOL HUBUNGI KAMI ==== */
.btn-primary-outline {
    display: inline-block; 
    padding: 12px 25px;
    margin-top: 0; 
    border: 2px solid rgba(255, 255, 255, 0.7); 
    border-radius: 5px;
    color: var(--text-light); 
    background-color: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary-outline:hover {
    background-color: var(--primary-blue); 
    border-color: var(--primary-blue); 
    color: var(--text-light); 
    box-shadow: 0 5px 15px rgba(0, 90, 156, 0.3);
}

/* ==== PENGATURAN SCROLL ANCHOR UNTUK NAVBAR ==== */
/* ▼▼▼ BLOK BARU DITAMBAHKAN DI SINI ▼▼▼ */
#about{ /* Menambahkan #workshop */
    scroll-margin-top: 135px; /* Nilai 70px lebih pas daripada 135px */
}
#layanan{ /* Menambahkan #workshop */
    scroll-margin-top: 148px; /* Nilai 70px lebih pas daripada 135px */
}

/* ==== LAYANAN & PROGRAM ==== */
.services {
    background: #fff; 
    padding: 40px 0; 
    position: relative; 
    z-index: 4;         
    /* SHADOW ATAS BAWAH (INSET) */
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.40), inset 0 -4px 12px rgba(0, 0, 0, 0.40);
}
/* Blok scroll-margin-top dipindahkan ke atas agar terpusat */


.services h2 {
    margin-bottom: 30px; 
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    align-items: stretch; 
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex; 
    flex-direction: column; 
}

.service-card-image {
    height: 160px; 
    position: relative;
    border-radius: 8px 8px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; 
}

.service-card-image video { /* Tambahkan selector 'video' di sini */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; 
}


.service-card-content {
    padding: 20px; 
    position: relative;
    background: #fff;
    margin-top: 0; 
    border-radius: 0 0 8px 8px;
    transition: transform 0.4s ease; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.service-card-content h3 {
    font-size: 0.98rem; /* <-- MODIFIKASI: Diubah dari 1.15rem */
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-card-content h3::before {
    content: none; 
}

.service-card-content h3 {
    margin-left: 0; 
}

.service-card-content p {
    font-size: 0.9rem; 
    margin-bottom: 15px; 
    flex-grow: 1; 
}

.service-card-content a {
    text-decoration: none;
    color: var(--logo-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    align-self: flex-start; 
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card:hover .service-card-image img {
     transform: scale(1.1); 
}

.service-card:hover .service-card-image video { /* Pastikan 'video' ada di sini */      transform: scale(1.1); }

.service-card:hover .service-card-content {
    transform: translateY(0); 
}

/* ▼▼▼ CSS BARU UNTUK SEKSI TAMBAHAN ▼▼▼ */
.program-tambahan-section {
    position: relative;
    z-index: 5; 
    padding: 60px 0;
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    /* SHADOW ATAS BAWAH (INSET) */
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.40), inset 0 -4px 12px rgba(0, 0, 0, 0.15);
}


/* Overlay gelap untuk seksi baru */
.program-tambahan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Overlay gelap agar teks terbaca */
    z-index: 0;
}

/* Judul khusus untuk seksi gelap */
.section-title-light {
    font-size: 2.2rem;
    color: var(--text-light); /* Teks putih */
    text-align: center; /* <-- DIPERBAIKI DARI 'T-align' */
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.program-grid {
     display: flex; 
    justify-content: center; 
    /* flex-wrap: wrap; <-- DIHAPUS */
    gap: 30px;
    position: relative;
    z-index: 1;
}
.program-card {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
    display: flex; 
    flex-direction: column; 
    /* width: 300px; <--- HAPUS BARIS INI */
    flex: 1; /* Tambahkan ini agar kartu bisa merenggang */
    min-width: 280px; /* Lebar minimum */
    max-width: 400px; /* Lebar maksimum agar tidak terlalu lebar di layar besar */
    height: 100%; /* Tambahkan ini agar kartu merenggang sesuai tinggi parent */
}


/* Warna-warna seperti di contoh */
.program-card.style-1 {
    background: rgba(106, 179, 121, 0.2); /* Hijau transparan */
    border-color: rgba(106, 179, 121, 0.3);
}
.program-card.style-2 {
    background: rgba(0, 90, 156, 0.3); /* Biru transparan */
    border-color: rgba(0, 90, 156, 0.4);
}
.program-card.style-3 {
    background: rgba(100, 100, 100, 0.3); /* Abu-abu transparan */
    border-color: rgba(100, 100, 100, 0.4);
}

.program-card:hover {
    background: rgba(255, 255, 255, 0.2); /* Jadi putih transparan saat hover */
}

.program-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 0; 
    font-weight: 700;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

/* CSS BARU UNTUK SUB-JUDUL */
.program-subtext {
    font-size: 0.9rem;
    font-weight: 400; /* Ini biar gak bold */
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 5px; 
    margin-bottom: 0; 
}


.program-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    min-height: 120px; 
    flex-grow: 1; 
}

.program-card ul li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

/* Membuat list-style 'check' */
.program-card ul li::before {
    content: '\f00c'; /* Kode Font Awesome untuk check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--text-light);
    opacity: 0.6;
}

.program-btn {
    display: inline-block;
    background: #ffc107; 
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    align-self: center; /* <-- TAMBAHKAN BARIS INI */
}


.program-btn:hover {
    background: #ffdb6e;
}
/* ▲▲▲ AKHIR CSS BARU ▲▲▲ */


/* ======================================= */
/* ==== ▼▼▼ CSS FOOTER BARU (Style Perbanas - Biru) ▼▼▼ ==== */
/* ======================================= */

.new-footer {
    background: var(--primary-blue); 
    color: var(--text-light);     
    padding: 50px 0 40px 0;
    position: relative; 
    z-index: 5;
    font-size: 0.9rem;
    /* font-weight: 400; <-- DIHAPUS */
    /* Shadow abu-abu transparan di atas footer */
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.70); 
}


.new-footer .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: stretch; /* Biar kolom sama tinggi */
}

/* MODIFIKASI: Hapus justify-content-center dari sini */
.footer-col-1, .footer-col-2, .footer-col-3 {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontal */
    text-align: center; /* Center text */
    /* justify-content: center; <-- DIHAPUS */
}

/* BARU: Menengahkan konten Kolom 1 (Logo) secara vertikal */
.footer-col-1 {
    justify-content: center; /* Center vertical */
}

.new-footer a {
    color: var(--text-light); /* Link di footer jadi putih */
    text-decoration: none;
}

.new-footer a:hover {
    color: var(--text-light); /* Tetap putih tapi pakai underline */
    text-decoration: underline;
}

/* Kolom 1: Logo & Copyright */
.footer-col-1 .footer-logo {
    height: 80px; /* Logo lebih besar */
    width: auto;
    margin-bottom: 0px;
    /* filter: brightness(0) invert(1); */ 
}
.footer-copyright {
    font-size: inherit; /* Samakan font size */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7); /* Agak transparan */
}

/* Kolom 2: Alamat */
.new-footer h4 { /* Style h4 umum untuk footer baru */
    color: var(--text-light);
    font-size: inherit; /* Samakan font size */
    font-weight: 600; /* <-- MODIFIKASI: Dibuat bold (tebal) */
    margin-bottom: 10px;
}
.footer-address-block {
    margin-bottom: 20px;
}
.footer-address-block p {
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.9); /* Sedikit transparan */
}

/* Kolom 3: Social & Download */
.footer-col-3 h4 {
    /* font-weight: inherit; <-- DIHAPUS */
    margin-bottom: 15px;
}
.footer-social-icons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center ikon jika wrap */
    gap: 12px;
}
.footer-social-icons-row a {
    font-size: 1.5rem; 
    color: var(--text-light);
    transition: color 0.3s, transform 0.3s;
}
.footer-social-icons-row a:hover {
    color: var(--logo-yellow); /* Kasih warna aksen saat hover */
    transform: scale(1.1);
    text-decoration: none;
}

.footer-col-3 h4.download-title {
    margin-top: 30px;
}
.footer-download {
    display: flex;
    flex-direction: column; 
    gap: 10px;
    align-items: center; /* Center tombol download */
}
.app-store-btn img {
    height: 40px; 
    width: auto;
    transition: opacity 0.3s;
}
.app-store-btn img:hover {
    opacity: 0.8;
}

/* Tombol WA Melayang (Tetap Hijau) */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 30px;
    z-index: 98; 
    background-color: #25D366; 
   color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none; /* <-- DIPERBAIKI DARI 'T-decoration' */
}

/* Tombol Scroll ke Atas */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 90px; /* Posisikan di ATAS tombol WA */
    right: 30px; 
    z-index: 99;
    border: none;
    background-color: var(--logo-blue); /* WARNA ASLI KAMU */
    color: white;
    cursor: pointer;
    padding: 12px 15px; /* STYLE ASLI KAMU */
    border-radius: 50%; /* STYLE ASLI KAMU */
    font-size: 1.2rem;
    transition: all 0.3s;
    opacity: 0.8;
}

#scrollToTopBtn:hover {
    background-color: var(--logo-magenta); /* WARNA ASLI KAMU */
    opacity: 1;
    transform: scale(1.1);
}

/* ======================================= */
/* ==== ▲▲▲ AKHIR CSS FOOTER BARU ▲▲▲ ==== */
/* ======================================= */


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* <-- SUDAH DIPERBAIKI (bukan tform) */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
    .leadership-header h2 { font-size: 1.6rem; } 
    .leadership-header p { font-size: 0.9rem; } 
    .service-icon-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    /* ATURAN .program-grid DIHAPUS DARI SINI */
    
    /* Responsive Footer Baru */
    .new-footer .container {
        grid-template-columns: 1fr 1fr;
   }
    .footer-col-1 {
        grid-column: 1 / 2;
   }
    .footer-col-2 {
        grid-column: 2 / 3;
    }
    .footer-col-3 {
        grid-column: 1 / -1; 
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .leadership-header h2 { font-size: 1.5rem; } 
    .leadership-header p { font-size: 0.85rem; } 
    .leadership-section { padding: 15px 0 5px; } 
    .service-icon-grid { /* <-- PERBAIKAN TYPO */
        gap: 15px;
    }

    /* ▼▼▼ ATURAN .program-grid DIPINDAH KE SINI ▼▼▼ */
    .program-grid {
        flex-direction: column; 
        align-items: center; 
    }
    .program-card {
        width: 100%;
        max-width: 350px; 
    }
    

s    /* Responsive Footer Baru */
    .new-footer .container {
        grid-template-columns: 1fr;
    }
    .footer-col-1, .footer-col-2, .footer-col-3 {
        grid-column: 1 / -1; 
        /* MODIFIKASI: Tambah jarak antar kolom di mode HP */
        margin-bottom: 20px; 
    }
    .footer-download {
        flex-direction: row; 
    }
}

@media (max-width: 480px) {
    .leadership-section { padding: 10px 0 0; } 
    .leadership-header h2 { font-size: 1.3rem; margin-bottom: 2px; } 
    .leadership-header p { font-size: 0.8rem; margin-bottom: 5px; } 
    .service-icon-card h3 {
        font-size: 0.85rem;
    }
    .btn-primary-outline { /* <-- PERBAIKAN TYPO */
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .service-grid {
        grid-template-columns: 1fr; 
    }
}

/* ================================================= */
/* ==== ▼▼▼ CSS UNTUK VIDEO BACKGROUND (PARALLAX) ▼▼▼ ==== */
/* ================================================= */

/* Wrapper konten */
.content-wrapper-with-bg {
    position: relative; 
    z-index: 3;        
}

/* Video Background */
#backgroundVideo {
    position: fixed;   
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;     
    object-fit: cover; 
    z-index: 1;        
}

/* Overlay untuk video background */
.content-wrapper-with-bg::before {
    content: '';
    position: fixed;   
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;     
    background: rgba(0, 0, 0, 0.75); 
    z-index: 2;        
}

/* ================================================= */
/* ==== CSS KHUSUS UNTUK HALAMAN LANDING (Subpage) ==== */
/* ================================================= */

/* ==== Hero Section Subpage ==== */
.hero-subpage {
    position: relative;
    height: 450px; /* Tinggi hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efek parallax */
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.4); /* Shadow bagian atas */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Overlay gelap */
    z-index: 1;
}

.hero-subpage .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subpage h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-subpage p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ==== Konten Section Umum (Light Background) ==== */
.content-section {
    padding: 60px 0;
    position: relative;
    z-index: 3;
}

.content-section.light-bg {
    background: #fdfdfd; /* Warna putih gading lembut */
}

.content-section.dark-bg {
    background: var(--primary-blue); /* Menggunakan warna biru utama */
    color: var(--text-light);
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}
.section-title-light {
    color: var(--text-light); /* Judul untuk background gelap */
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}


/* ==== Two Column Grid (Untuk About Jasa Ini) ==== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-grid .text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Mengatur video di dalam image-block */
.two-col-grid .image-block video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Sudut membulat */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Bayangan halus */
    object-fit: cover;
    pointer-events: none; /* Agar tidak bisa diklik/di-pause user */
}

/* Sembunyikan kontrol video (jaga-jaga browser maksa nampilin) */
.two-col-grid .image-block video::-webkit-media-controls {
    display: none !important;
}

/* ==== Features Grid (Mengapa Memilih Kami) ==== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1); /* Latar belakang transparan */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--logo-yellow); /* Warna ikon kuning */
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ==== Content Type Grid (Jenis Konten) ==== */
.content-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.content-type-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.content-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.content-type-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.content-type-card h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    padding: 15px 20px 5px;
    margin: 0;
}

.content-type-card p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
    line-height: 1.6;
}

/* ==== CTA Section ==== */
.cta-section {
    background: var(--secondary-blue); /* Warna biru kedua */
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light); /* Pastikan judul tetap putih */
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Tombol Primary (untuk CTA) */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--logo-yellow); /* Warna kuning aksen */
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffda47; /* Sedikit lebih gelap/terang saat hover */
    transform: translateY(-3px);
}

/* ==== Responsive untuk Halaman Landing ==== */
@media (max-width: 992px) {
    .hero-subpage h1 { font-size: 2.4rem; }
    .hero-subpage p { font-size: 1.1rem; }
    .two-col-grid { grid-template-columns: 1fr; }
    .image-block { order: -1; margin-bottom: 20px; } /* Gambar di atas teks di mobile */
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .content-type-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero-subpage { height: 380px; }
    .hero-subpage h1 { font-size: 2rem; }
    .hero-subpage p { font-size: 1rem; }
    .features-grid { grid-template-columns: 1fr; }
    .content-type-grid { grid-template-columns: 1fr; }
    .section-title, .section-title-light { font-size: 1.8rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .btn-primary { padding: 12px 25px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-subpage { height: 300px; }
    .hero-subpage h1 { font-size: 1.6rem; }
    .hero-subpage p { font-size: 0.9rem; }
    .content-section { padding: 40px 0; }
    .section-title, .section-title-light { font-size: 1.5rem; margin-bottom: 30px; }
    .two-col-grid .text-block p { font-size: 0.95rem; }
    .feature-card i { font-size: 2rem; }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.85rem; }
    .content-type-card h4 { font-size: 1rem; }
    .content-type-card p { font-size: 0.85rem; }
    .cta-section h2 { font-size: 1.5rem; }
}
/* ================================================================= */
/* === TAMBAHAN KHUSUS RESPONSIVE (PASTE DI PALING BAWAH FILE) === */
/* ================================================================= */

/* 1. PENGAMAN GLOBAL (Agar gambar/video tidak melebar keluar layar HP) */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. TABLET & LAPTOP KECIL (Layar max 992px) */
@media (max-width: 992px) {
    /* Mengubah Grid 4 Kolom menjadi 2 Kolom agar tidak gepeng */
    .service-icon-grid, 
    .service-grid, 
    .features-grid,
    .content-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer menjadi 2 kolom */
    .new-footer .container {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Kolom Sosmed turun ke bawah */
    .footer-col-3 {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-top: 20px;
    }
    .footer-social-icons-row {
        justify-content: center;
    }

    /* Hero text sedikit mengecil */
    .hero-subpage h1 { font-size: 2.4rem; }
    .cta-section h2 { font-size: 2rem; }
}

/* 3. MOBILE / HP (Layar max 768px) */
@media (max-width: 768px) {
    /* --- HEADER --- */
    /* Logo di atas, Menu di bawah (tersusun vertikal) */
    header .container {
        flex-direction: column;
        padding: 15px 0;
        height: auto; /* Reset tinggi fix */
        gap: 15px;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    
    header nav ul li {
        margin-left: 10px; 
        margin-right: 10px;
    }

    /* --- KONTEN --- */
    /* Judul H2 lebih kecil biar muat */
    h2 { font-size: 1.8rem; }
    
    /* Grid menjadi 1 Kolom (Turun ke bawah semua) */
    .service-icon-grid, 
    .service-grid, 
    .features-grid,
    .content-type-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    /* Workshop Card lebar penuh */
    .program-grid {
        flex-direction: column;
        align-items: center;
    }
    .program-card {
        width: 100%;
        max-width: 100%;
    }

    /* Gambar di section 'two-col' naik ke atas teks */
    .image-block { order: -1; margin-bottom: 20px; }

    /* Footer jadi 1 kolom lurus ke bawah */
    .new-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col-1, .footer-col-2, .footer-col-3 {
        align-items: center;
    }

    /* Tombol Floating (WA & Scroll) geser sedikit biar aman */
    .floating-wa { right: 20px; bottom: 20px; }
    #scrollToTopBtn { right: 20px; bottom: 85px; }
}

/* 4. HP KECIL (Layar max 480px) */
@media (max-width: 480px) {
    /* Container lebih lebar biar isi konten lega */
    .container { width: 94%; }

    /* Font Hero makin kecil */
    .hero-subpage h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    
    /* Menu navigasi font diperkecil */
    header nav ul li a { font-size: 0.85rem; }
    
    /* Icon Service Card jadi memanjang ke samping (opsional agar rapi) */
    .service-icon-card {
        padding: 15px;
    }
}
/* ======================================================== */
/* === SETTINGAN MANUAL POSISI SCROLL (KHUSUS HP & TABLET) === */
/* ======================================================== */

@media (max-width: 992px) {
    
    /* 1. Settingan Posisi WORKSHOP pas diklik di HP */
    #workshop {
        /* Catatan: 
           - Makin besar angkanya, makin turun ke bawah posisi mulainya.
           - Lu bisa pake 'px' (pixel) atau 'vh' (persen tinggi layar).
           - Saran gua start di 120px atau 15vh karena header lu di HP agak tebal.
        */
        scroll-margin-top: 5vh; 
    }


}