:root {
    --orange: #ff9933;
    --navy: #003366;
    --white: #f4f7fa;
    --light-gray: #e6f2ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: #000000;
	scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-orange { color: var(--orange); }

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--navy);
}

.logo span { color: var(--orange); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.btn-nav {
    background: var(--orange);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background-color: var(--navy);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-orange {
    background: var(--orange);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-right: 15px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: white;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--orange);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Benefit Section */
.benefit-section { padding: 80px 0; text-align: center; }

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center; /* TAMBAHKAN INI agar judul ke tengah */
    width: 100%;       /* Tambahkan ini untuk memastikan lebar penuh */
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    transition: 0.3s;
}

.benefit-card:hover { transform: translateY(-10px); }

.benefit-card h3 { margin: 20px 0 10px; font-size: 18px; }

.benefit-card p { font-size: 14px; color: #666; }

/* Paket Section */
.paket-section {
    background-color: var(--navy);
    padding: 80px 0;
}

.text-white { color: white; }

/* Pastikan container grid paket juga seimbang */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center; /* Menjaga kartu tetap simetris dengan judul di tengah */
}

.paket-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.paket-card:hover { transform: scale(1.05); }

.paket-header {
    padding: 15px;
    color: white;
    font-weight: 700;
}

.bg-blue { background-color: #3B82F6; }
.bg-orange { background-color: var(--orange); }

.paket-body { padding: 30px 20px; }

.paket-body h3 { font-size: 24px; margin-bottom: 20px; }

.paket-body h3 span { font-size: 12px; color: #888; }

.paket-body ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.paket-body ul li {
    font-size: 13px;
    margin-bottom: 10px;
    color: #555;
}

.paket-body ul i { color: var(--orange); margin-right: 10px; }

.btn-paket {
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    display: block;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background: var(--light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-about p { font-size: 14px; color: #666; margin: 20px 0; }

.footer-contact h4, .footer-news h4 { margin-bottom: 20px; font-weight: 800; }

.footer-contact p { font-size: 14px; margin-bottom: 10px; }

.news-input { display: flex; gap: 5px; }

.news-input input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex: 1;
}

.news-input button {
    background: var(--orange);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #888;
}
/* --- KODE RESPONSIVE UNTUK SMARTPHONE --- */

/* Tombol Menu HP (Default Sembunyi) */
.checkbtn {
    font-size: 30px;
    color: var(--navy);
    cursor: pointer;
    display: none; /* Sembunyi di Laptop */
}
#check { display: none; }

/* =========================================
   FITUR DROPDOWN NAVBAR
   ========================================= */

/* Wadah Utama Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Tombol Dropdown */
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px; /* Jarak antara teks dan ikon panah */
    cursor: pointer;
}

/* Isi Dropdown (Sembunyi secara default) */
.dropdown-content {
    display: block; /* Kita gunakan block tapi opacity 0 untuk animasi */
    position: absolute;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    top: 50px; /* Jarak dari atas navbar */
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease; /* Efek halus melayang */
    z-index: 1100;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Link di dalam Dropdown */
.dropdown-content a {
    color: var(--navy) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover pada Link Dropdown */
.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--orange) !important;
    padding-left: 25px; /* Efek geser sedikit ke kanan */
}

/* Munculkan Dropdown saat di-Hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Icon Panah Kecil */
.dropdown i {
    font-size: 10px;
    transition: 0.3s;
}

.dropdown:hover i {
    transform: rotate(180deg); /* Panah berputar saat menu dibuka */
}

/* =========================================
   PENYESUAIAN DROPDOWN UNTUK MOBILE (HP)
   ========================================= */
@media (max-width: 768px) {
    .dropdown-content {
        position: static; /* Menempel di menu bawahnya */
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        width: 100%;
        display: none; /* Sembunyi di HP, nanti muncul klik/hover */
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 35px; }
    .paket-grid { grid-template-columns: repeat(2, 1fr); } /* Tablet jadi 2 kolom */
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .checkbtn { display: block; }
    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: white;
        top: 80px;
        left: -100%; /* Sembunyi di kiri */
        text-align: center;
        transition: all .5s;
        flex-direction: column;
        padding-top: 50px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links li { margin: 20px 0; }
    #check:checked ~ .nav-links { left: 0; } /* Muncul saat diklik */

    /* Hero Section Mobile */
    .hero { padding: 50px 0; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; margin-bottom: 30px; } /* Gambar pindah ke atas teks */
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-orange { margin-right: 0; }
    .floating-badge { left: 50%; transform: translateX(-50%); bottom: -10px; width: 80%; }

    /* Section & Grids Mobile */
    .section-title { font-size: 24px; }
    .benefit-grid, .paket-grid, .footer-grid { 
        grid-template-columns: 1fr; /* Semua jadi 1 kolom di HP */
    }

    .benefit-card, .paket-card { margin-bottom: 20px; }
    
    .footer-grid { text-align: center; gap: 30px; }
    .news-input { flex-direction: column; }
    .news-input button { padding: 12px; margin-top: 5px; }
}
/* Efek Hover & Kursor untuk Semua Tombol */
.btn-nav, .btn-orange, .btn-outline, .btn-paket, .news-input button {
    cursor: pointer;      /* Mengubah kursor jadi tangan */
    transition: 0.3s;     /* Transisi halus saat warna berubah */
}

/* Warna berubah saat diarahkan (Hover) */
.btn-nav:hover, .btn-orange:hover, .btn-paket:hover, .news-input button:hover {
    background-color: #4d4dff; /* Warna orange agak gelap sedikit */
    transform: translateY(-3px); /* Efek sedikit naik saat disentuh */
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy);
}

/* Khusus link Google Play agar ada efek kursor juga */
.footer img, .hero-image img {
    cursor: pointer;
}

/* =========================================
   FIX PARTNER - RESPONSIVE & SERAGAM
   ========================================= */

.partner-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
}

.partner-title {
    text-align: center !important;
    display: block !important;
    margin-bottom: 40px !important;
    color: var(--navy) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.partner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.logo-track {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: scrollLogos 25s linear infinite;
}

/* Pengaturan Logo untuk Desktop */
.logo-track img {
    height: 60px !important;       /* Tinggi logo di Laptop */
    width: auto !important;         /* Lebar otomatis agar tidak dipaksa lebar */
    max-width: 180px !important;    /* Batas lebar maksimal */
    margin: 0 40px !important;      /* Jarak antar logo di Laptop */
    object-fit: contain !important;
    display: block !important;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- KHUSUS TAMPILAN HP (MOBILE) --- */
@media (max-width: 768px) {
    .partner-section {
        padding: 40px 0;
    }
    
    .partner-title {
        font-size: 22px !important;
        margin-bottom: 30px !important;
    }

    .logo-track img {
        height: 45px !important;    /* Ukuran logo di HP dinaikkan sedikit agar tidak kekecilan */
        max-width: 120px !important; /* Batas lebar di HP */
        margin: 0 20px !important;   /* Jarak antar logo dirapatkan (sebelumnya kejauhan) */
    }
}