/* Import Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Gaya Global (Friendly & Modern) --- */
:root {
    --primary-color: #007bff; /* Biru cerah, untuk kesan teknologi dan profesional */
    --accent-color: #28a745;  /* Hijau untuk tombol WA/Highlight */
    --text-dark: #333;
    --text-light: #f8f9fa;
    --background-light: #fff;
    --background-grey: #f4f7f9;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-grey);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Sales Card (Powerfull & Jelas) --- */
.sales-info {
    text-align: center;
    margin-bottom: 40px;
}

.sales-info h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sales-card {
    display: inline-block;
    background: var(--background-light);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--accent-color); /* Garis tegas */
    text-align: left;
    transition: transform 0.3s ease;
}

.sales-card:hover {
    transform: translateY(-5px); /* Efek hover modern */
}

.sales-details .name {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.sales-details .title {
    font-size: 1em;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 15px;
}

/* --- Tombol WhatsApp (CTA Utama) --- */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Bentuk kapsul */
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.4);
}

.whatsapp-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* --- Sitemap Grid --- */
.sitemap h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.sitemap-item {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    border-top: 5px solid #ccc;
}

.sitemap-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sitemap-item h3 {
    font-size: 1.25em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Penanda Kategori Penting */
.sitemap-item.primary { border-top-color: var(--primary-color); }
.sitemap-item.highlight { border-top-color: orange; }

.sitemap-item ul {
    list-style: none;
    padding-left: 0;
}

.sitemap-item li {
    margin-bottom: 8px;
}

.sitemap-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95em;
    transition: color 0.2s ease;
}

.sitemap-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 20px 20px;
    margin-top: 50px;
    background-color: #212529;
    color: #adb5bd;
    font-size: 0.9em;
}

/* --- Responsiveness (Friendly) --- */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }

    .header {
        padding: 30px 15px;
    }

    .sales-card {
        padding: 20px;
        width: 100%;
    }

    .sitemap-grid {
        grid-template-columns: 1fr; /* Kolom tunggal di perangkat kecil */
    }
}
/* Simpan sebagai styles.css */

/* Import Font Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Gaya Global (Friendly & Modern) --- */
:root {
    /* Warna Primer: Biru tua/Navy untuk kesan profesional dan teknologi tinggi Proxinet */
    --primary-color: #004d99; /* Navy/Royal Blue (Diubah dari #007bff) */
    --accent-color: #28a745;  /* Hijau untuk tombol WA/Highlight */
    --text-dark: #333;
    --text-light: #f8f9fa;
    --background-light: #fff;
    --background-grey: #f4f7f9;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

/* ********** SISA KODE CSS TETAP SAMA ********** */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ... (lanjutan kode CSS lainnya) ... */
.header {
    background-color: var(--primary-color); /* Menggunakan warna baru */
    /* ... */
}

.sales-info h2 {
    color: var(--primary-color); /* Menggunakan warna baru */
}

/* ... (lanjutan kode CSS lainnya) ... */
.sales-details .name {
    color: var(--primary-color); /* Menggunakan warna baru */
    /* ... */
}

/* ... (lanjutan kode CSS lainnya) ... */
.sitemap-item h3 {
    color: var(--primary-color); /* Menggunakan warna baru */
    /* ... */
}

/* Penanda Kategori Penting */
.sitemap-item.primary { border-top-color: var(--primary-color); } /* Menggunakan warna baru */

/* ... (sisa kode CSS) ... */

/* Simpan sebagai styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Variabel Warna --- */
:root {
    --primary-color: #004d99; 
    --accent-color: #28a745;  
    --highlight-tv: #dc3545;  /* Warna merah/maroon untuk menonjolkan diskon/TV */
    --text-dark: #333;
    --background-light: #fff;
    --background-grey: #f4f7f9;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

/* --- Gaya Global dan Header (TIDAK BERUBAH) --- */
/* ... */

/* --- Sales Card --- */
/* ... (kode sales-card dan sales-details TIDAK BERUBAH) ... */

/* Gaya Baru: Detail Harga Paket TV */
.tv-price-highlight {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffe8e8; /* Background sangat lembut */
    border: 1px dashed var(--highlight-tv);
    border-radius: 8px;
    text-align: center;
}

.tv-price-highlight h4 {
    color: var(--highlight-tv);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.tv-price-highlight p {
    margin: 3px 0;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-dark);
}

.tv-price-highlight p:nth-child(4) {
    color: var(--highlight-tv); /* Menonjolkan harga 1 tahun */
}


/* --- Tombol WhatsApp (CTA Utama) --- */
/* Teks diubah, gaya TIDAK BERUBAH */
/* ... (kode whatsapp-btn TIDAK BERUBAH) ... */

/* --- Sitemap Grid --- */
/* ... (kode sitemap-item dan sitemap-grid TIDAK BERUBAH) ... */

/* Penanda Kategori Penting */
.sitemap-item.primary { border-top-color: var(--primary-color); }
.sitemap-item.highlight { border-top-color: var(--highlight-tv); } /* Diubah menjadi warna merah/TV */

/* ... (sisa kode CSS) ... */