/* Impor Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');

/* Header */
.site-header {
    background-color: #fff;
    /* Latar belakang putih */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    /* Header tetap di atas saat scroll */
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* Menggunakan flex untuk centering */
    justify-content: center;
    /* Logo di tengah */
    align-items: center;
    /* Vertically center align */
    padding: 0 20px;
}

.logo img {
    height: 40px;
    /* Tinggi logo pada desktop */
    width: auto;
    display: block;
    max-width: 100%;
    /* Pastikan logo tidak meluber */
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 24px;
}

/* WhatsApp Inline Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    /* WhatsApp Green */
    color: #fff !important;
    margin: 0 10px;
}

.whatsapp-btn:hover {
    background-color: #1EBE56 !important;
    /* Darker Green */
}

/* Header Image */
.header-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    /* Pastikan gambar tidak meluber */
    line-height: 0;
    /* Menghilangkan ruang kosong di bawah gambar */
}

.header-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1334 / 750;
    /* Proporsi asli gambar (1334:750) */
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 500px;
    /* Tinggi maksimum pada desktop */
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

/* Font Settings */
body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    /* Font utama dengan fallback */
    font-size: 16px;
    /* Ukuran default yang nyaman */
    color: #1C2526;
    /* Warna teks default */
    line-height: 1.6;
}

h1 {
    color: #E91E63;
    /* Pink */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: 700;
    /* Tebal untuk heading utama */
}

h2 {
    color: #1C2526;
    /* Black */
    margin-top: 30px;
    font-size: 1.8em;
    font-weight: 600;
    /* Sedang tebal untuk subheading */
    border-bottom: 2px solid #FBC02D;
    /* Yellow */
    padding-bottom: 5px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.feature-item {
    text-align: center;
    width: 22%;
    padding: 20px;
    background: #F5F6FA;
    /* Light Gray */
    border-radius: 10px;
    margin: 10px 1%;
    transition: transform 0.3s;
    box-sizing: border-box;
    font-size: 0.95em;
    /* Sedikit lebih kecil untuk teks dalam fitur */
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item i {
    font-size: 2em;
    color: #AB47BC;
    /* Purple */
    margin-bottom: 10px;
}

.feature-item h3 {
    color: #AB47BC;
    /* Purple */
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 500;
    /* Sedang tebal untuk judul fitur */
}

/* Package Section */
.special-package {
    margin-bottom: 20px;
}

.package-item {
    width: 32%;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    font-size: 0.9em;
    /* Sedikit lebih kecil untuk teks dalam paket */
}

.package-item.highlight {
    border: 2px solid #FBC02D;
    /* Yellow border untuk menonjolkan */
    background: #FFF9E6;
    /* Latar belakang kuning muda */
}

.package-item.full-width {
    width: 100%;
    max-width: 100%;
}

.package-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.package-title {
    color: #E91E63;
    /* Pink */
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #FBC02D;
    /* Yellow */
    padding-bottom: 5px;
    font-weight: 600;
    /* Sedang tebal untuk judul paket */
}

.special-note {
    display: block;
    font-size: 0.9em;
    color: #AB47BC;
    /* Purple */
    font-weight: bold;
    margin-top: 5px;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
}

.package-table th,
.package-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.package-table th {
    background-color: #E91E63;
    /* Pink */
    color: #fff;
    width: 40%;
    font-weight: 600;
    /* Sedang tebal untuk header tabel */
}

.package-table td {
    background-color: #F5F6FA;
    /* Light Gray */
}

.price-note {
    font-size: 0.9em;
    color: #1C2526;
    background: #F5F6FA;
    /* Light Gray */
    padding: 10px;
    border-left: 4px solid #E91E63;
    /* Pink */
    margin: 10px 0;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FBC02D;
    /* Yellow */
    color: #1C2526;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    transition: background-color 0.3s;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    /* Font untuk tombol */
    font-size: 1em;
}

.cta-button:hover {
    background-color: #E91E63;
    /* Pink */
    color: #fff;
}

/* Video Embed */
.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio (315/560) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

blockquote {
    background: #F5F6FA;
    /* Light Gray */
    padding: 20px;
    border-left: 5px solid #AB47BC;
    /* Purple */
    margin: 20px 0;
    font-style: italic;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 767px) {

    /* Breakpoint untuk mobile */
    .header-container {
        padding: 0 10px;
        /* Kurangi padding untuk mobile */
    }

    .logo img {
        height: 30px;
        /* Ukuran logo lebih kecil pada mobile */
    }

    .header-image img {
        max-height: 250px;
        /* Tinggi gambar lebih kecil pada mobile */
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .feature-item {
        width: 100%;
        margin: 10px 0;
    }

    .package-item {
        width: 100%;
    }

    .package-item.full-width {
        width: 100%;
    }

    .cta-button {
        display: block;
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }

    .package-table th,
    .package-table td {
        padding: 6px;
        font-size: 0.9em;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 10px;
    }

    .whatsapp-float i {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .header-image img {
        max-height: 500px;
        /* Tinggi maksimum pada desktop */
    }

    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }

    .feature-item {
        width: 22%;
    }

    .package-item {
        width: 32%;
    }

    .cta-button {
        display: inline-block;
    }

    .package-table th,
    .package-table td {
        padding: 10px;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-image img {
        max-height: 200px;
        /* Tinggi sangat kecil untuk layar kecil */
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.3em;
    }

    .package-table th,
    .package-table td {
        font-size: 0.85em;
    }

    .logo img {
        height: 25px;
        /* Ukuran logo sangat kecil untuk layar kecil */
    }
}