body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.hero {
    background-image: url('travel.png'); /* Ganti dengan gambar Anda */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

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

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

.keunggulan {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

.keunggulan h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.keunggulan .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.keunggulan-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.keunggulan-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.keunggulan-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.destinasi {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.destinasi h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.destinasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.destinasi-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.destinasi-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

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

.destinasi-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.destinasi-item:hover p {
    opacity: 1;
}

.testimoni {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

.testimoni h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

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

.testimoni-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* Style untuk Popup */
.popup {
    display: none; /* Sembunyikan secara default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Latar belakang semi-transparan */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Pastikan di atas konten lain */
}

.popup-content {
    background-color: white;
    padding: 20px; /* Kurangi padding */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 500px; /* Sedikit lebih kecil */
    width: 90%;
}

.popup h2 {
    font-size: 1.5em; /* Ukuran font lebih kecil */
    margin-bottom: 15px; /* Margin bawah lebih kecil */
    text-align: center;
}

.popup form {
    display: grid; /* Menggunakan Grid Layout */
    grid-template-columns: 1fr; /* Satu kolom */
    gap: 10px; /* Jarak antar elemen */
}

.popup form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em; /* Ukuran font label lebih kecil */
}

.popup form input[type="text"],
.popup form input[type="tel"],
.popup form input[type="email"],
.popup form input[type="date"],
.popup form input[type="number"],
.popup form select,
.popup form textarea {
    width: calc(100% - 12px); /* Sesuaikan lebar dengan padding */
    padding: 8px; /* Kurangi padding input */
    margin-bottom: 10px; /* Margin bawah input lebih kecil */
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 0.9em; /* Ukuran font input lebih kecil */
}

.popup form button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 12px 20px; /* Kurangi padding tombol */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    width: 100%;
    margin-top: 10px; /* Tambahkan margin atas tombol */
}

.popup form button[type="submit"]:hover {
    background-color: #1e7e34;
}