/* Global Styles */
/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fafafa; /* Warna latar belakang lebih netral untuk kesan modern */
    padding-top: 60px; /* Mengurangi jarak di bagian atas halaman */
}

/* Menu Bar Styling */
header {
    background-color: #333; /* Warna latar belakang menu gelap */
    padding: 12px 0; /* Mengurangi ruang di atas dan bawah menu */
    position: fixed; /* Agar menu tetap di atas meskipun halaman di-scroll */
    width: 100%; /* Mengisi lebar halaman */
    top: 0; /* Menempatkan menu di atas halaman */
    z-index: 1000; /* Memastikan menu selalu berada di atas konten */
}

nav ul {
    list-style: none;
    display: flex; /* Menjadikan item menu sejajar */
    justify-content: center; /* Menyusun item menu di tengah */
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px; /* Mengurangi jarak antar item menu */
}

nav ul li a {
    text-decoration: none; /* Menghilangkan garis bawah pada link */
    color: #fff; /* Warna teks putih */
    font-family: 'Poppins', sans-serif; /* Font premium */
    font-weight: 600; /* Berat font tebal */
    font-size: 16px; /* Ukuran font sedang */
    transition: color 0.3s ease; /* Efek transisi pada hover */
}

nav ul li a:hover {
    color: #f5a623; /* Warna teks saat hover (emas premium) */
}

/* Button Primary */
.btn-primary {
    background-color: #d4af37; /* Warna emas mewah untuk tombol */
    color: #fff; /* Warna teks putih pada tombol */
    padding: 8px 16px; /* Mengurangi ruang dalam tombol */
    text-decoration: none; /* Menghilangkan garis bawah */
    font-family: 'Poppins', sans-serif; /* Font premium */
    font-weight: 600; /* Berat font tebal */
    border-radius: 30px; /* Membuat tombol melengkung */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow tombol agar terlihat lebih mewah */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Efek transisi */
}

/* Button Primary */
.btn-primary {
    background-color: #d4af37; /* Warna emas mewah untuk tombol */
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #f5a623; /* Emas terang saat hover */
    transform: scale(1.05);
}

/* Banner Section */
.banner {
    background: linear-gradient(to bottom, #c0392b, #e74c3c); /* Merah lebih gelap dan cerah untuk kontras */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
}

.banner-content a.btn-primary {
    background-color: #e74c3c; /* Tombol merah cerah */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-content a.btn-primary:hover {
    background-color: #c0392b; /* Merah gelap saat hover */
}

/* About Us Section */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
}

.about-us img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Paket Chat Section */
.paket-chat {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
}

.paket-chat .content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.paket-chat h2 {
    font-size: 28px;
    color: #c0392b; /* Merah gelap */
}

.paket-chat p {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 15px;
}

/* Start Chat Section */
.start-chat {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
    text-align: center;
}

.start-chat h2 {
    font-size: 28px;
    color: #c0392b;
}

.start-chat p {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 15px;
}

.start-chat .btn-primary {
    background-color: #e74c3c;
    color: white;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.start-chat .btn-primary:hover {
    background-color: #c0392b;
}

/* Testimonial Section */
.testimoni {
    background-color: #f9d6e3;
    padding: 20px;
}

.testimonial-item {
    margin-bottom: 15px;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #c0392b; /* Merah gelap untuk footer */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}