/* Version: 1.7.1 (2025-12-31) */

:root {
    --blue: #0073aa;
    --green: #25d366;
}

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

body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* 1. STICKY WRAPPER */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 2. TOP BAR */
.top-bar {
    background: var(--blue);
    padding: 5px 0;
    position: relative; /* Penting untuk posisi flag */
}

.top-bar-content {
    display: flex;
    align-items: center;
    max-width: 1200px; /* Sesuaikan dengan lebar container Anda */
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Link Telepon di Tengah */
.top-bar-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link .material-icons {
    font-size: 18px;
}

/* 3. LANGUAGE SWITCHER (Pojok Kanan) */
.top-bar-right {
    position: absolute;
    right: 15px;
    display: flex;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-item {
    display: flex;
    transition: transform 0.2s;
}

.lang-item:hover {
    transform: scale(1.1);
}

.lang-item img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    display: block;
}

/* 4. SITE HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

/* 5. LOGO STYLING (Center & 200px) */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img, 
.logo .custom-logo {
    width: 160px !important;
    height: auto;
    display: block;
    margin: 0 auto;
}

.custom-logo-link {
    display: inline-block;
    margin: 0 auto;
}

/* 6. TEXT LOGO FALLBACK */
.site-title-text {
    font-size: 1.8rem;
    color: #0073aa;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Version: 5.3.0 (2026-01-01) - Language Dropdown */

.lang-switcher-clean {
    display: flex;
    align-items: center;
    gap: 8px;
	line-height: 1;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Penanda bahasa yang sedang aktif */
.lang-btn.active {
    color: #333;
    background: #e9ecef;
}

.lang-btn img {
    width: 18px;
    height: auto;
    border-radius: 2px;
    filter: grayscale(20%); /* Biar elegan */
}

.lang-btn.active img {
    filter: grayscale(0%);
}

.lang-divider {
    color: #ddd;
    font-size: 12px;
    user-select: none;
}

/* Responsive: Perbesar area klik di HP */
@media (max-width: 768px) {
    .lang-btn {
        padding: 5px 10px;
        font-size: 13px;
    }
}

/* ----- BATAS ----- */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 75px 0 50px;
    text-align: center;
}

.hero-content {
    max-width: 530px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 3rem;
	}
}

.hero-content span {
    color: var(--blue);
}

.hero-content p {
    font-weight: 500;
    margin-bottom: 30px;
}

/* Area Tombol Hero */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* --- TOMBOL (Button Styling) --- */
.btn-primary, 
.open-media-modal, 
button.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0073aa;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: initial;
    font-family: inherit;
    transition: background 0.3s ease;
}

.open-media-modal::after {
    content: "expand_more";
    font-family: 'Material Icons';
    font-size: 24px;
    line-height: 1;
    text-transform: none;
    font-weight: normal;
}

.btn-primary:hover, 
.open-media-modal:hover {
    background-color: #005177;
}

/* --- MODAL & OVERLAY (STRUKTUR UTAMA) --- */
.modal-media-popup {
    display: none; /* Wajib ada untuk fungsi JS */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Overlay Gelap */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 30px;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
}

.close-media-modal {
    position: absolute;
    right: 20px;
    top: 5px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-body {
    text-align: left;
    margin-top: 20px;
    overflow-y: auto;
    column-count: 3;
    overflow-x: hidden;
}

.modal-body p {
    margin: revert;
}

.modal-body P:first-child {
    margin-top: 0;
}

.modal-body ol {
	padding: revert; 
}

@media (max-width: 600px) {
    .modal-body {
        column-count: 1;
    }
}

/* Version: 1.7.5 (2025-12-31) */

.network-statement {
    max-width: 330px;
    margin: 0 auto;
    padding: 50px 20px;
}

.network-statement p {
    margin: 0;
    color: #333;
    font-weight: normal;
}

/* Version: 1.7.6 (2025-12-31) */

.stats-container {
    background: var(--wp--preset--color--luminous-vivid-amber);
    padding: 50px 20px;
    border-radius: 10px;
}

.stats-container h2 {
    max-width: 500px;
    margin: 0 auto;
    font-size: 2.5rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px; /* Jarak antara kolom kiri dan kanan */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive untuk HP */
@media (max-width: 600px) {
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    .stats-container h2 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* Version: 1.9.0 (2025-12-31) */

.pricing-section {
    padding: 80px 0;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-header .sub-title {
    color: #0073aa;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-header h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.pricing-header p {
    max-width: 400px;
    margin: 0 auto;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card.is-promo {
    position: relative;
    padding-top: 45px;
    border: 2px solid orangered;
}

.pricing-card.is-promo::before {
    content: "Promo Spesial";
    position: absolute;
    top: 0;
    right: 0;
    background-color: orangered;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 0 0 0 15px;
    text-transform: uppercase;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    text-align: center;
	overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.card-head h3 {
    font-size: large;
    margin-bottom: 15px;
}

.price {
    font-size: x-large;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 15px;
}

.card-actions {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Tombol Pesan WA */
.btn-wa {
    background-color: #25d366;
    color: white !important;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
}

/* Tombol Daftar Media dalam Card */
.pricing-card .open-media-modal {
    width: 100%;
    background-color: var(--blue);
    color: #fff;
    padding: 10px;
    font-size: small;
    font-weight: 500;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center; /* Menyeimbangkan icon dengan teks */
    gap: 12px;
    color: #555;
}

.check-icon {
    color: #25d366; /* Warna Hijau WhatsApp */
    font-size: 20px !important; /* Ukuran pas untuk list */
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PRINCING CONTAINER --- */

.container.en,
.container.in {
    max-width: none;
    padding: 0 20px;
}

.pricing-grid.en,
.pricing-grid.in {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 768px) {
    .pricing-grid.en,
	.pricing-grid.in {
        grid-template-columns: 1fr;
    }
}

/* Version: 2.5.0 (2025-12-31) */

.why-us-section {
    padding: 80px 0;
    background-color: #222;
}

.why-us-grid {
    display: grid;
    /* Ganti angka 2 ini jika ingin merubah layout kolom */
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px;
    align-items: center;
}

.why-us-title h2 {
    font-size: 3rem;
    line-height: 1.3;
    color: #fff;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 10px;
    background: var(--wp--preset--gradient--luminous-dusk);
}

@media (max-width: 768px) {
    .why-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.why-icon .material-icons {
    font-size: xx-large;
    color: #fff;
    background: var(--wp--preset--gradient--luminous-dusk);
    padding: 15px;
    border-radius: 50%;
}

.why-text h3 {
    margin: 0 0 10px 0;
    font-size: x-large;
    color: #fff;
}

.why-text p {
    margin: 0;
    color: #fff;
    line-height: 1.3;
}

/* Responsive HP */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di HP */
        gap: 30px;
    }
    .why-us-title h2 {
        font-size: 2rem;
        text-align: center;
    }
}

/* Version: 2.7.0 (2025-12-31) */

.workflow-section {
    padding: 80px 0;
}

.workflow-grid {
    display: grid;
    /* Ganti angka 3 ini jika ingin merubah layout kolom */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.workflow-item {
    background: var(--wp--preset--gradient--pale-ocean);
    padding: 40px;
    border-radius: 10px;
}

.workflow-icon .material-icons {
    font-size: 4rem;
    position: relative;
    margin-bottom: 20px;
}

.workflow-item h3 {
    font-size: x-large;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    z-index: 2;
}


/* Responsive HP */
@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr; /* 1 kolom di HP */
    }
}

/* Version: 2.8.0 (2025-12-31) */

.reputation-box {
    background: #0073aa; /* Warna biru brand */
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
}

.reputation-box h2, 
.reputation-box p {
    color: #ffffff;
}

.reputation-check-grid {
    display: grid;
    /* Kita buat 3 kolom untuk checklist agar sejajar lurus */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.check-item {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.check-item .material-icons {
    color: #25d366; /* Hijau WhatsApp untuk centang agar kontras */
    font-size: 28px;
}

.reputation-action {
    margin-top: 30px;
}

.btn-wa-large {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-large:hover {
    transform: scale(1.05);
    background: #20ba5a;
    color: white;
}

/* Responsive HP */
@media (max-width: 768px) {
    .reputation-check-grid {
        grid-template-columns: 1fr; /* Tumpuk ke bawah di HP */
        text-align: left;
    }
    .check-item {
        justify-content: flex-start;
    }
    .reputation-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .btn-wa-large {
        font-size: small;
    }
}

/* Version: 2.9.0 (2025-12-31) */

.coverage-section {
    padding: 60px 0 100px;
}

.coverage-grid {
    display: grid;
    /* Ganti angka 3 untuk merubah jumlah kolom */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.coverage-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #0073aa;
}

.coverage-icon .material-icons {
    font-size: 45px;
    color: #0073aa;
}

.coverage-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #222;
}

.coverage-card p {
    font-size: 0.95rem;
    color: #666;
}

.coverage-action {
    margin-top: auto;
}

.btn-wa-simple {
    background: #25d366;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    line-height: 1;
}

.btn-wa-simple:hover {
    background: #1eb954;
    color: white;
}

/* Responsive HP */
@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .coverage-grid {
        grid-template-columns: 1fr; /* 1 kolom di HP */
    }
}

/* Version: 3.0.0 (2026-01-01) */

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: powderblue;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    font-size: initial;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0073aa;
}

.faq-question .chevron {
    transition: transform 0.3s ease;
}

/* Class saat aktif/terbuka */
.faq-item.active .faq-question {
    color: #0073aa;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Sesuaikan jika teks lorem nanti sangat panjang */
    padding: 20px;
}

.faq-answer p {
    color: #333;
    margin: 0;
}

/* Version: 3.2.0 (2026-01-01) */

.mitra-section {
    padding: 50px 0;
}

.mitra-box {
    background: #ffffff;
    border: 2px dashed #0073aa; /* Garis putus-putus memberikan kesan 'klik di sini' */
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mitra-box:hover {
    border-style: solid;
    background: #f0f7ff;
}

.mitra-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mitra-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Mempercantik tombol modal di bagian ini */
.mitra-action .open-media-modal {
    padding: 15px 35px;
    font-size: initial;
    border-radius: 50px;
    background: #0073aa;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 115, 170, 0.2);
    transition: all 0.3s ease;
}

.mitra-action .open-media-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 115, 170, 0.3);
    background: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
    .mitra-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .mitra-action .open-media-modal {
        font-size: initial;
    }
}

/* Penyesuaian untuk tampilan Mobile */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        justify-content: center;
    }
    .cta-text {
        margin-bottom: 10px;
    }
}

/* --- FOOTER --- */
/* Version: 3.3.0 (2026-01-01) */

.main-footer {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple);
    color: #ffffff;
    padding: 60px 0 50px;
}

.footer-grid {
    display: grid;
    /* Ganti angka 2 ini jika ingin merubah kolom */
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
	margin-bottom: 50px;
    align-items: center;
}

.footer-left h2 {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.3;
}

.footer-right p {
    font-size: large;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: x-large;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-statis-landing ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.nav-statis-landing ul li a {
	display: inline-block;
	font-size: small;
	color: #fff;
	line-height: 1.3;
}

.footer-divider {
    border: none;
    height: 1px;
	background-color: cornflowerblue;
    margin: 15px 0;
}

.footer-bottom {
    text-align: center;
    color: #fff;
    font-size: small;
}

.footer-bottom strong {
    color: #fff;
}

/* Responsive HP */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Tumpuk 1 kolom di HP */
        text-align: center;
    }
    .footer-wa {
        justify-content: center;
    }
}

/* Version: 7.0.0 (2026-01-02) - Scroll to Top */

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Jika WA di kanan, ini bisa digeser ke kiri atau naikkan posisinya */
    width: 40px;
    height: 40px;
    background-color: #f7f7f7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1001; /* Di atas sticky header */
    opacity: 0;    /* Sembunyi dulu */
    visibility: hidden;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #eee;
    transform: translateY(-5px);
}
