/* Reset CSS Dasar & Pengaturan Font Umum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif; /* Menggunakan Poppins jika diimpor, jika tidak Arial/sans-serif */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Warna background body sedikit abu-abu */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: center; /* Pusatkan logo jika tidak ada nav */
}

header .logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50; /* Warna biru tua untuk logo */
    text-decoration: none;
}

/* Utilitas Umum */
h1, h2, h3 {
    margin-bottom: 15px;
    color: #2c3e50; /* Warna judul utama */
}
h1 { font-size: 2.8em; line-height: 1.2; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.5em; }

section {
    padding: 40px 0;
}

section:nth-child(even) { /* Memberi warna latar berbeda untuk beberapa section */
    background-color: #ffffff;
}

/* Hero Section */
#hero {
    /* Contoh background pattern ringan dengan CSS gradient, bisa diganti dengan gambar URL jika ada */
    background: linear-gradient(to right bottom, rgba(230, 240, 255, 0.8), rgba(240, 245, 255, 0.9)),
                url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d0ddee' fill-opacity='0.2'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414zM41.95 17.536l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: #2c3e50;
    text-align: center;
    padding: 80px 0; /* Padding lebih besar untuk hero */
}

#hero h1 {
    font-size: 2.8em; /* Ukuran font H1 disesuaikan */
    margin-bottom: 10px;
}

#hero h2 {
    font-size: 1.5em; /* Ukuran font H2 disesuaikan */
    font-weight: 300;
    margin-bottom: 30px;
}

/* Tombol CTA (Call to Action) */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
    background-color: #28a745; /* Warna hijau khas WhatsApp */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #218838; /* Warna hijau lebih gelap saat hover */
}

.hero-cta { /* CTA khusus di hero */
    font-size: 1.2em;
    padding: 15px 35px;
}


/* Why Us Section */
#why-us .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Agar responsif di layar kecil */
    gap: 20px; /* Jarak antar item */
    margin-top: 30px;
}

#why-us .feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    flex-basis: 30%; /* Setiap item mengambil sekitar 30% lebar */
    min-width: 280px; /* Lebar minimum sebelum item turun baris */
}

#why-us .feature-item .icon {
    font-size: 2.5em; /* Ukuran ikon placeholder */
    margin-bottom: 15px;
    color: #007bff; /* Warna ikon (biru sebagai contoh) */
}

#why-us .feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* Pricing Section */
#pricing table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#pricing th, #pricing td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#pricing th {
    background-color: #e9ecef; /* Warna header tabel */
    color: #2c3e50;
    font-weight: 600;
}

#pricing tr:nth-child(even) td {
    background-color: #f8f9fa; /* Zebra striping untuk baris tabel */
}

#pricing .note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

/* Problems Section */
#problems .problem-list {
    list-style: none; /* Hilangkan bullet default */
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grid responsif */
    gap: 15px;
    margin-top: 20px;
}

#problems .problem-list li {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-left: 5px solid #007bff; /* Aksen biru di kiri */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Service Area Section */
#service-area .area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Pusatkan item area */
    margin-top: 20px;
}

#service-area .area-item {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px; /* Bentuk pil */
    font-size: 0.95em;
}

#service-area .map-placeholder { /* Styling untuk placeholder peta */
    background-color: #e9ecef;
    text-align: center;
    padding: 50px 20px;
    margin-top: 30px;
    border-radius: 5px;
    color: #6c757d;
}


/* Testimonials Section */
#testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

#testimonials .testimonial-item {
    background-color: #eef8ff; /* Warna latar testimoni yang lembut */
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #007bff; /* Aksen biru */
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
    color: #333;
}

#testimonials .testimonial-item span {
    font-weight: 600;
    color: #0056b3; /* Warna nama pemberi testimoni */
}

/* FAQ Section */
#faq .faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#faq .faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #007bff;
}

/* SEO Text Section */
#seo-text {
    padding: 40px 0;
    background-color: #fff; /* Pastikan terbaca jelas */
}
#seo-text h2 { /* Judul untuk SEO text, bisa juga disembunyikan jika tidak ingin terlihat tapi tetap ada untuk SEO */
    /* display: none; */
    text-align: left; /* Atau center, sesuai preferensi */
    margin-bottom: 20px;
}
#seo-text p {
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.7;
    color: #444;
}

/* Bottom CTA Section */
#cta-bottom {
    background-color: #007bff; /* Warna latar biru untuk kontras */
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

#cta-bottom h2 {
    color: #fff;
    font-size: 2em;
}

#cta-bottom p {
    margin-bottom: 25px;
    font-size: 1.1em;
}

#cta-bottom .main-cta {
    background-color: #28a745; /* Hijau WhatsApp */
    color: white;
    padding: 15px 40px;
    font-size: 1.3em;
}
#cta-bottom .main-cta:hover {
    background-color: #218838;
}


/* Footer */
footer {
    background-color: #2c3e50; /* Warna gelap untuk footer */
    color: #ecf0f1; /* Warna teks terang di footer */
    padding: 40px 0 20px 0;
    font-size: 0.9em;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

footer .footer-col {
    flex: 1;
    min-width: 250px; /* Lebar minimum kolom footer */
}

footer .footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3em;
    border-bottom: 1px solid #4e5d6c;
    padding-bottom: 8px;
}

footer .footer-col p {
    margin-bottom: 8px;
    line-height: 1.8;
}

footer a {
    color: #3498db; /* Warna link di footer */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4e5d6c; /* Garis pemisah sebelum copyright */
    font-size: 0.85em;
    color: #bdc3c7; /* Warna teks copyright lebih lembut */
}


/* Media Queries untuk Responsivitas */
@media (max-width: 992px) {
    #hero h1 { font-size: 2.4em; }
    #hero h2 { font-size: 1.3em; }
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
}

@media (max-width: 768px) {
    .container { width: 95%; }
    #hero h1 { font-size: 2em; }
    #hero h2 { font-size: 1.1em; }
    .hero-cta { padding: 12px 25px; font-size: 1.1em; }

    #why-us .features {
        flex-direction: column; /* Susun vertikal di layar kecil */
        align-items: center;
    }
    #why-us .feature-item {
        flex-basis: 80%; /* Ambil lebar lebih banyak */
        margin-bottom: 20px; /* Tambah jarak bawah antar item */
    }

    #problems .problem-list {
        grid-template-columns: 1fr; /* Satu kolom di layar kecil */
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center; /* Pusatkan teks footer di mobile */
    }
    footer .footer-col {
        margin-bottom: 20px;
    }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
}

@media (max-width: 480px) {
    body { font-size: 15px; } /* Ukuran font dasar sedikit lebih kecil di layar sangat kecil */
    #hero h1 { font-size: 1.8em; }
    #hero h2 { font-size: 1em; }
    .cta-button { padding: 10px 20px; font-size: 1em; }
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }
}