/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden; /* Mencegah scroll horizontal */
}

/* --- VARIABLES --- */
:root {
    --primary-blue: #0052cc;
    --dark-blue: #021B79;
    --light-blue: #29b6f6;
    --navy-blue: #001f3f;
}

/

/* --- Animasi Fade In (Opsional) --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION STYLING --- */
.hero {
    /* Request: Width 1920 (100%), Height 956px */
    width: 100%;
    height: 862px;
    
    /* Background Gradient Biru */
    background: linear-gradient(135deg, #051668 0%, #005bc5 50%, #29b6f6 100%);
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Agar shape dekorasi tidak keluar layout */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

/* Headline H1 */
.hero h1 {
    /* Request: Font Inter, Size 96px, Bold */
    font-family: 'Inter', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px; /* Sedikit rapat agar elegan */
}

/* Paragraph P */
.hero p {
    /* Request: Font Sharp Sans, Size 24px */
    /* Fallback ke Inter/Arial jika Sharp Sans tidak ada di sistem user */
    font-family: 'Sharp Sans', 'Inter', sans-serif; 
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BUTTONS --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 16px 42px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif; /* Mengikuti style umum tombol */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- DEKORASI BACKGROUND (SHAPES) --- */
/* Membuat efek kotak-kotak melayang seperti di gambar */
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05); /* Transparan putih */
    border-radius: 30px;
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Kotak Kiri Atas */
.shape-1 {
    width: 400px;
    height: 300px;
    top: -50px;
    left: -100px;
    transform: rotate(20deg);
}

/* Kotak Kanan Bawah Besar */
.shape-2 {
    width: 500px;
    height: 350px;
    bottom: 50px;
    right: -100px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg);
}

/* Kotak Tengah Kiri */
.shape-3 {
    width: 200px;
    height: 400px;
    bottom: -100px;
    left: 5%;
    transform: rotate(10deg);
}

/* Kotak Kanan Atas Samar */
.shape-4 {
    width: 300px;
    height: 300px;
    top: 50px;
    right: 15%;
    opacity: 0.03;
    transform: rotate(45deg);
}

/* WA Icon Floating */
.wa-float {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 40px;
    color: white;
    opacity: 0.8;
    z-index: 20;
    cursor: pointer;
}

/* --- PRICING SECTION --- */
.pricing {
    background-color: #ffffff;
    padding: 80px 0 150px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Judul Biru di Tengah (Pill Shape) */
.pricing-header {
    margin-bottom: 60px;
    text-align: center;
}

.pricing-header h2 {
    background-color: #29b6f6; /* Warna Biru Muda */
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(41, 182, 246, 0.3);
}

/* Container Kartu */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Jarak antar kartu */
    flex-wrap: wrap;
    max-width: 1400px;
}

/* --- CARD STYLING --- */
.card {
    /* REQUEST: Dimensi Kartu Spesifik */
    width: 375px;
    height: 1048px;
    
    background: #fff;
    border-radius: 20px;
    /* Efek shadow halus di sekeliling */
    box-shadow: 0 0 25px rgba(0,0,0,0.08); 
    border: 1px solid #f0f0f0;
    
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Agar harga & tombol di bawah */
    transition: transform 0.3s ease;
}

/* --- VPOS SECTION SPECIFIC --- */

/* Mengatur tinggi kartu khusus bagian ini menjadi 543px */
.card-short {
    height: 543px !important; /* Important untuk menimpa height default 1048px */
}

/* Mengurangi jarak padding atas agar tidak terlalu jauh dari section sebelumnya */
.vpos-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

.card:hover {
    transform: translateY(-10px); /* Efek naik saat hover */
}

/* Bagian Atas Kartu */
.card-top {
    text-align: center;
    margin-bottom: 30px;
}

.card h3 {
    color: #2c3e50; /* Warna biru gelap */
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.plan-name {
    color: #e91e63; /* Warna Pink/Merah */
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    width: 80%;
    margin: 0 auto;
}

/* --- ADD ONS SECTION --- */

/* 1. Mengatur Tinggi Kartu Add Ons */
.card-addons {
    height: 600px !important; /* Sedikit lebih tinggi dari VPos (543px) tapi lebih pendek dari Main (1048px) */
}

/* 2. Style khusus untuk label "StartFrom" di kartu tengah */
.start-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: -5px; /* Agar mepet dengan harga di bawahnya */
    margin-left: 2px;
}

/* 3. Penyesuaian note di bawah tombol (Card Tengah) */
.card-addons .training-note {
    line-height: 1.4; /* Jarak antar baris agar teks 2 baris terlihat rapi */
}

/* 4. Jarak Padding Section */
.addons-section {
    padding-top: 20px;
    padding-bottom: 100px; /* Jarak bawah lebih lega untuk akhir halaman */
    background-color: #ffffff;
}

/* List Fitur */
.features {
    list-style: none;
    flex-grow: 1; /* Mengisi ruang kosong vertikal */
}

.features li {
    font-family: 'Inter', sans-serif;
    font-size: 15px; /* Sedikit diperbesar agar terbaca */
    margin-bottom: 18px; /* Jarak antar list item */
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* Style Aktif (Checklist Hijau) */
.features li.active {
    color: #333;
}
.features li.active i {
    color: #00c853; /* Warna Hijau Icon */
    font-size: 18px;
}

/* Style Tidak Aktif (Coret Abu-abu) */
.features li.inactive {
    color: #999; /* Warna teks abu */
    text-decoration: line-through; /* Efek coret */
    padding-left: 30px; /* Indentasi pengganti icon */
}

/* Bagian Bawah (Harga & Tombol) */
.card-bottom {
    margin-top: auto;
}

.price-tag {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.price-tag .currency {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 5px;
}

.price-tag .unit {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin-top: 15px;
    margin-left: 5px;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: #29b6f6; /* Warna Tombol Biru */
    color: white;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(41, 182, 246, 0.4);
    transition: background-color 0.3s ease;
}

.btn-price:hover {
    background-color: #0288d1;
}

.training-note {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    margin-left: 10px;
}

/* --- CONTACT PAGE STYLING --- */

.contact-section {
    padding-top: 50px; /* Ditambah sedikit agar lebih lega dari navbar */
    padding-bottom: 100px;
    background-color: #fff;
    min-height: 100vh;
}

/* Judul "Hubungi Kami" - LEBIH BOLD */
.contact-title {
    font-family: 'Raleway', sans-serif; /* Menggunakan font Raleway */
    font-size: 48px;
    /* Request: Heading lebih bold */
    font-weight: 800; /* Extra Bold (Pastikan link font di HTML sudah update) */
    color: var(--primary-blue);
    margin-bottom: 25px;
    letter-spacing: -1px; /* Sedikit dirapatkan agar terlihat padat & tegas */
}

/* Deskripsi */
.contact-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500; /* Sedikit ditebalkan agar lebih terbaca */
    color: #333; /* Warna dipergelap sedikit dari #666 */
    margin-bottom: 45px;
    max-width: 100%; /* Memenuhi container kolom yang sudah dikecilkan */
    line-height: 1.6;
}

/* Form Input */
.custom-input {
    background-color: #ffffff; /* Putih bersih */
    border: 1px solid #dee2e6; /* Border abu halus */
    border-radius: 50px;
    padding: 15px 30px; /* Padding kiri kanan diperbesar */
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #495057;
    margin-bottom: 20px; /* Jarak antar input diperbesar sedikit */
    transition: all 0.3s ease;
    height: 55px; /* Menetapkan tinggi pasti agar konsisten */
}

.custom-input:focus {
    box-shadow: 0 0 0 4px rgba(41, 182, 246, 0.15); /* Efek glow halus saat diklik */
    border-color: var(--light-blue);
}

/* Tombol KIRIM */
.btn-kirim {
    width: 100%;
    background-color: #2196F3;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 800; /* Bold teks tombol */
    font-size: 16px;
    padding: 16px;
    border-radius: 50px;
    border: none;
    transition: transform 0.2s, background 0.3s;
    margin-top: 15px;
    letter-spacing: 1px; /* Jarak antar huruf */
}

.btn-kirim:hover {
    background-color: #1976D2;
    transform: translateY(-2px); /* Efek naik sedikit saat hover */
    color: white;
}

/* Info Kontak Bawah */
.info-item {
    display: flex;
    align-items: flex-start; /* Icon sejajar dengan baris pertama teks */
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: #333;
    margin-top: 2px; /* Penyesuaian mikro posisi icon */
}

.info-item .label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800; /* Label LEBIH BOLD */
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.info-item .value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--light-blue); /* Menggunakan biru muda sesuai screenshot */
    font-weight: 500;
}

/* Container Maps */
.map-container {
    border-radius: 15px; /* Sudut lebih membulat */
    overflow: hidden;
    /* Shadow halus di map */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    background-color: #eee;
    height: 100%;
    min-height: 450px;
}

/* --- help --- */
.help-hero {
    height: 862px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 94px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;

    /* BACKGROUND ABSTRAK (Static, Elegan) */
    background-color: #051668;
    background-image: 
        /* Layer bentuk transparan */
        linear-gradient(135deg, rgba(41, 182, 246, 0.15) 0%, transparent 40%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        /* Layer cahaya tengah */
        radial-gradient(circle at center, rgba(0, 91, 197, 0.5) 0%, transparent 70%),
        /* Gradient dasar */
        linear-gradient(135deg, #051668 0%, #005bc5 50%, #29b6f6 100%);
    background-blend-mode: overlay, overlay, soft-light, normal;
}

/* Dekorasi garis halus tambahan */
.help-hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 60%; height: 120%;
    background: linear-gradient(to bottom left, rgba(255,255,255,0.07), transparent);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 1;
}

.help-hero .container {
    position: relative; z-index: 2;
    animation: fadeUp 1s ease-out;
}

/* H1 Besar */
.help-hero h1 {
    font-family: 'Sharp Sans', 'Inter', sans-serif;
    font-size: 96px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Deskripsi Medium (500) */
.help-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    /* REQUEST: Medium Bold */
    font-weight: 500; 
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
    line-height: 1.5;
}

/* Tombol Hero Interaktif */
.btn-hero-white {
    background-color: white;
    color: #005bc5;
    font-family: 'Sharp Sans', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek membal */
}

.btn-hero-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background-color: #fff;
}


/* --- 2. SPACING & LAYOUT MANAGEMENT --- */

/* Wrapper untuk section konten putih */
.content-wrapper {
    background-color: #fff;
    padding-top: 80px; /* Jarak dari Hero ke Video */
    padding-bottom: 80px; /* Jarak dari Dokumen ke Banner Biru */
}

/* Jarak antara Video dan Dokumen */
.spacer-video-doc {
    height: 80px; /* Memberi jarak lega agar tidak mepet */
}

/* Title Section Global */
.section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #222; /* Hitam pekat */
    margin-bottom: 40px;
}


/* --- 3. VIDEO CARDS (Lebih Mencolok di BG Putih) --- */
.video-card {
    background: white;
    border-radius: 15px;
    /* KUNCI KONTRAS: Border lebih tegas & shadow dasar */
    border: 1px solid #e0e0e0; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Interaktif */
.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Shadow membesar saat hover */
    border-color: transparent; /* Border hilang diganti shadow */
}

.video-thumbnail {
    width: 100%; height: 220px;
    background-color: #9e9e9e;
    border-radius: 10px; margin-bottom: 25px;
    overflow: hidden; position: relative; flex-shrink: 0;
}

/* Efek Kilat Cahaya Thumbnail */
.video-thumbnail::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg); transition: 0.5s;
}
.video-card:hover .video-thumbnail::after { left: 150%; }

.video-content { flex-grow: 1; display: flex; flex-direction: column; }
.video-content h3 { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #222; }
.video-content .subtitle { font-size: 15px; color: #666; margin-bottom: 30px; flex-grow: 1; }
.video-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.btn-black {
    background-color: #222; color: white; font-size: 13px; font-weight: 700;
    padding: 10px 20px; border-radius: 6px; text-decoration: none; transition: 0.3s;
}
.video-card:hover .btn-black { background-color: var(--primary-blue); }


/* --- 4. DOCUMENTATION LIST (Lebih Mencolok) --- */
.doc-container {
    background: white;
    border-radius: 15px;
    /* KUNCI KONTRAS: Shadow & Border tegas */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.doc-header {
    background-color: #f8f9fa;
    padding: 20px 25px;
    font-weight: 700; color: #444; font-size: 15px; display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.doc-item {
    display: flex; align-items: center; padding: 25px 25px;
    border-bottom: 1px solid #f0f0f0; border-left: 4px solid transparent;
    transition: all 0.3s ease; font-family: 'Inter', sans-serif; font-size: 15px;
}
.doc-item:last-child { border-bottom: none; }

/* Hover Interaktif */
.doc-item:hover {
    background-color: #f0f7ff; /* Biru muda */
    border-left: 4px solid var(--primary-blue);
    padding-left: 35px; /* Geser kanan */
}

.col-name { flex: 3; font-weight: 600; color: #333; }
.col-hints { flex: 1; text-align: center; color: #888; }
.col-type { flex: 1; text-align: center; font-size: 20px; }
.col-dl { flex: 1; text-align: center; }
.doc-item:hover .col-dl i { color: var(--primary-blue); transform: scale(1.2); }
.doc-item .num { margin-right: 20px; color: #999; font-weight: bold; }


/* --- 5. SUPPORT BANNER (Jarak Jauh dengan FAQ) --- */
.support-banner {
    background-color: #1e88e5;
    color: white;
    padding: 100px 0;
    text-align: center;
    /* REQUEST: Jarak jauh dengan FAQ */
    margin-bottom: 100px; 
}
.support-banner h2 { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 60px; margin-bottom: 20px; }
.support-banner p { font-family: 'Inter', sans-serif; font-size: 24px; margin-bottom: 40px; opacity: 0.95; }
.btn-support {
    background-color: white; color: #1e88e5; font-weight: 800; font-size: 18px;
    padding: 18px 50px; border-radius: 50px; text-decoration: none;
    font-family: 'Raleway', sans-serif; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
}
.btn-support:hover {
    background-color: #f0f0f0; transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* --- 6. FAQ STYLES (Besar & Interaktif) --- */
/* Wrapper FAQ untuk padding tambahan jika perlu */
.faq-section-wrapper {
    padding-bottom: 100px;
}

.faq-card {
    background: white;
    /* Kontras di BG putih */
    border: 1px solid #e0e0e0;
    border-radius: 15px; padding: 30px; margin-bottom: 25px;
    transition: all 0.3s ease; cursor: pointer;
}
/* Hover Interaktif */
.faq-card:hover {
    transform: translateX(5px); border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0,82,204,0.15);
}
.faq-card.active {
    background-color: #eff6ff; border-color: #dbeafe;
    box-shadow: 0 5px 20px rgba(0,82,204,0.1);
}
.faq-title {
    font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px;
    color: #2c3e50; display: flex; align-items: center; gap: 15px;
}
.faq-title i { font-size: 24px; color: #1e88e5; }
.faq-body { margin-top: 25px; padding-left: 40px; font-size: 16px; line-height: 1.7; color: #555; }
.toggle-icon { font-size: 28px; color: #ccc; transition: 0.3s; }
.faq-card.active .toggle-icon { color: #1e88e5; transform: rotate(180deg); }

/* Animasi Fade Up saat load */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.help-hero .container { animation: fadeUp 1s ease-out; }

/* --- FOOTER STYLES --- */
.custom-footer {
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.custom-footer h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.custom-footer ul li {
    margin-bottom: 12px;
}

.custom-footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.custom-footer ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.copyright, .tagline, .address, .phone {
    font-size: 14px;
    margin-top: 0px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-text-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-text-content .d-flex {
        justify-content: center;
    }

    .hero-visual-wrapper {
        transform: scale(0.7); /* Perkecil visual di tablet */
        height: 400px;
    }
}