/* --- RESET DATA UTAMA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111111;
    background-color: #fafafa;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVBAR (NAVIGASI MODERN) --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}
.logo-img {
       height: 50px;    /* Anda bisa ubah angka ini (misal 45px atau 60px) sesuai dengan proporasi bentuk logo Anda */
       width: auto;     /* Biarkan lebar otomatis menyesuaikan agar gambar tidak gepeng */
       display: block;
   }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-bold {
    font-weight: 800;
    font-size: 26px;
    color: #0088ff; /* Sentuhan Biru Cerah Bahagia */
    letter-spacing: -0.5px;
}

.logo-light {
    font-weight: 700;
    font-size: 26px;
    color: #000000; /* Warna Hitam Profesional */
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #444444;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0088ff;
}

nav ul li .btn-nav {
    background-color: #0088ff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

nav ul li .btn-nav:hover {
    background-color: #0066cc;
}

/* --- HERO SECTION --- */
.hero {
    padding: 200px 0 120px 0;
    background: radial-gradient(circle at 85% 20%, #e6f3ff 0%, #fafafa 55%);
}

.badge-legal {
    display: inline-block;
    background-color: #e6f3ff;
    color: #0066cc;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-highlight {
    color: #0088ff;
}

.hero p {
    font-size: 19px;
    color: #555555;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons a {
    display: inline-block;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0088ff;
    color: #ffffff;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #dcdcdc;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* --- KEUNGGULAN FEATURES --- */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.feat-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    transition: all 0.3s;
}

.feat-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #0088ff;
}

.feat-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feat-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    color: #666666;
}

/* --- HARGA PAKET TARIF --- */
.packages {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    margin-top: -35px;
    margin-bottom: 50px;
    font-size: 16px;
}

.grid-packages {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 45px 35px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.card.featured {
    border: 2px solid #0088ff;
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.08);
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 35px;
    background-color: #0088ff;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    color: #777777;
    margin-bottom: 20px;
    min-height: 44px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.price span {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
}

.card ul {
    list-style: none;
    margin-bottom: 35px;
}

.card ul li {
    padding: 12px 0;
    font-size: 15px;
    color: #444444;
}

.card ul li::before {
    content: "⚡ ";
    color: #0088ff;
}

.btn-card {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #111111;
    color: white;
    padding: 14px 0;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-card:hover {
    background-color: #333333;
}

.featured .btn-card {
    background-color: #0088ff;
}

.featured .btn-card:hover {
    background-color: #0066cc;
}

/* --- CAKUPAN AREA --- */
.coverage {
    background-color: #ffffff;
    padding: 90px 0;
}

.coverage-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fafafa;
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.coverage-box h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.grid-geo {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.geo-item {
    font-weight: 600;
    font-size: 18px;
    color: #0066cc;
    background: #e6f3ff;
    padding: 10px 20px;
    border-radius: 8px;
}

.coming-soon {
    font-size: 14px;
    color: #777777;
}

/* --- TENTANG KAMI (VISI & MISI) --- */
.about {
    padding: 100px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-header p {
    color: #666666;
}

.vision-mision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vm-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #0088ff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.vm-box h4 {
    font-size: 20px;
    color: #111111;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vm-box p {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
}

/* --- FOOTER & OPERASIONAL 24 JAM --- */
footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    border-bottom: 1px solid #222222;
    padding-bottom: 50px;
}

.logo-footer .logo-bold {
    color: #0088ff;
    font-size: 26px;
}

.logo-footer .logo-light {
    color: #ffffff;
    font-size: 26px;
}

.tagline {
    color: #aaaaaa;
    margin-top: 10px;
    font-size: 14px;
}

.legal-text {
    margin-top: 20px;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

footer p {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.admin-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.wa-contact {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.wa-contact:hover {
    color: #0088ff;
}

.email-footer a {
    color: #0088ff;
    text-decoration: none;
}

.footer-address p {
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #555555;
}

/* --- RESPONSIVE MOBILE (HP) --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero {
        padding: 160px 0 80px 0;
    }
    .grid-geo {
        flex-direction: column;
        gap: 10px;
    }
    .card {
        padding: 30px 20px;
    }
}