* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;    
    overflow-x: hidden;
    background-color: #f0f0f0; /* Warna latar belakang untuk area di luar konten */
    padding-left: 20%;
    padding-right: 20%
}

hr {
    border: none;
    height: 3px;
    background-color: #4A4A4A; /* Abu-abu gelap */
}

.container {
    width: 100%;    
    max-width: 1200px; /* Batasi lebar maksimum */
    margin: 0px auto; /* Posisikan di tengah */
    background-color: #f8f9fa; /* Warna latar asli konten */
    box-shadow: 0 0 25px rgba(0,0,0,0.15); /* Tambahkan bayangan */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: 000;
    position: relative;
    padding: 20px;
}

.header {
    width: 100%;
    max-width: 100%; /* Ubah agar gambar bisa selebar penuh */
    padding-top: 5px; /* Menambahkan jarak dari atas */
    padding-left: 5px; /* Menambahkan jarak dari kiri */
    padding-right: 5px
}

.full-width-image {
    width: 100%;
    display: block;
    padding: 0px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-content {
    z-index: 1;
    padding: 10px 20px;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-align: left;
    margin-left: 50px;
    margin-right: 30px;
}

.cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-button.primary {
    background: white;
    color: #667eea;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.cta-button-green {
    background-color: #297943;
    color: white;
}

.cta-button-green:hover {
    background-color: #134E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.center-button-wrapper {
    text-align: center; /* Membuat tombol di dalamnya rata tengah */
    margin-top: 30px; /* Memberi jarak 30px dari atas */
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin-top: -50px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #333333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.section-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    font-weight: 700;
    margin-bottom: 50px;
}

.feature-highlight {
    color: #228B22; /* ForestGreen */
    font-weight: 700; /* bold */
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 40px;
}

.hero-subtitle {
    margin-top: 0px;
}

h2.text-green {
    color: #2E5788;
    text-align: center;
}

h2.text-red {
    color: #E60000; /* ForestGreen */
    text-align: center;
}

h2.text-yellow {
    color: #ceee1b; /* ForestGreen */
}

.text-green {
    color: #2E5788; /* ForestGreen */
}

.text-red {
    color: #E60000; /* Strong Red */
}

.text-yellow {
    color: #ceee1b; /* ForestGreen */
}

.text-bluelight {
    color: #00e4ff; /* Strong Red */
}

.large-title {
    font-size: 2.5rem !important; /* Increase font size */
    font-weight: 700;
}

.section-header ul {
    display: inline-block;
    text-align: left;
    padding-left: 0; /* Menghapus padding agar teks lebih rata kiri */
    margin-top: 15px;
    list-style-type: none; /* Menghilangkan bullet points */
}

.section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.17);
}

.price-section {
    text-align: center;
    padding: 30px 50px; /* Menambah padding kanan dan kiri */
    margin-top: -10px;
    margin-bottom: 50px;
    background-color: #F1F19B;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-label {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    padding: 0px 20px;
    border-radius: 8px;
    display: inline-block; /* Agar background dan padding berfungsi */
    margin-bottom: 0px;
}

.price-label.promo {
    font-weight: 600;
    color: #2E5788; /* Teks putih agar kontras */
    margin-top: 20px;
    /* Efek animasi kecil untuk menarik perhatian */
    animation: pulse 2s infinite;
}

.old-price {
    font-size:2rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    animation: pulse 2s infinite;
}

.center-img {
    display: block;
    margin: 0 auto; /* Menghapus margin negatif, hanya untuk rata tengah */
    max-width: 500px; /* Membatasi lebar maksimum gambar */
    width: 90%; /* Responsif, lebar 90% dari kontainer */
    height: auto;
    padding: 0px;
    transform: translateY(-30px); /* Menggeser elemen ke atas sejauh 30px */
}


.section-image-top {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
}

.section-image-middle {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
}

.section-header ul li {
    position: relative; /* Diperlukan untuk memposisikan pseudo-element */
    padding-left: 35px; /* Membuat ruang untuk ikon kustom */
    margin-bottom: 10px; /* Menambah jarak antar item */
}

.section-header ul li::before {
    content: '☑️'; /* Ikon kustom yang akan ditampilkan */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem; /* Menyesuaikan ukuran ikon */
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 30px 20px;
    background: #2E5788;
    color: white;
}

.tour-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tour-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tour-content > p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.tour-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 100px 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-preview:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.tour-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-left: 5px;
}

.tour-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.tour-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tour-btn:hover {
    background: white;
    color: #667eea;
}

.contact-details {
    text-align: center;
}

.contact-name {
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Jarak antar tombol */
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2E5788;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    margin-top: -20px;
    padding-bottom: 10px;
    opacity: 0.8;
    font-size: medium;
    font-weight: 300;
}

.footer-bottom a {
    color: inherit; /* Mewarisi warna dari elemen induk */
    text-decoration: none; /* Menghapus garis bawah */
}

.feature-highlight + p {
    margin-top: -40px;
}

.facility-list {
    text-align: left;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

    body {
        background-color: #f8f9fa; /* Kembalikan warna latar putih untuk mobile */
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        box-shadow: none;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-highlight {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-header h2,
    .tour-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .tour-options {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .feature-highlight {
        padding-left: 30px;
    }

    .feature-highlight + p {
        padding-left: 30px;
    }

    .section-image, .section-image-top {
        width: 70%;
        margin: 5px auto;
    }

    .facility-list {
        padding-left: 20%;
    }

    .section-subtitle {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Contact Form Styles */
.contact-form {
    padding-left: 20px;
    text-align: center; /* Membuat elemen inline seperti tombol menjadi rata tengah */
}

.contact-form .form-group {
    margin-bottom: 20px; /* Jarak antar grup form */
    text-align: left; /* Mengembalikan perataan teks untuk label dan input ke kiri */
}

.contact-form label {
    display: block; /* Label akan berada di barisnya sendiri */
    margin-bottom: 8px; /* Jarak antara label dan input */
    font-weight: 600;
    color: #444;
}

.contact-form input[type="text"] {
    width: 100%; /* Lebar input 100% dari container */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form .cta-button {
    width: auto; /* Lebar tombol menyesuaikan konten */
    display: inline-block; /* Agar padding bisa diterapkan dengan benar */
    padding-left: 50px; /* Padding kiri untuk tombol */
    padding-right: 50px; /* Padding kanan untuk tombol */
    background-color: #E60000; /* Warna merah */
    color: white; /* Warna teks menjadi putih */
    margin-top: 10px;
}

.whatsapp-button {
    display: inline-flex; /* Menggunakan flexbox untuk alignment */
    align-items: center; /* Menyelaraskan ikon dan teks secara vertikal */
    justify-content: center; /* Memastikan konten tetap di tengah */
}

.whatsapp-button::before {
    content: '';
    display: inline-block;
    width: 24px; /* Lebar ikon */
    height: 24px; /* Tinggi ikon */
    background-image: url('images/icon-wa.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px; /* Jarak antara ikon dan teks */
}

.whatsapp-button:hover::before {
    background-image: url('images/icon-wa-green.png'); /* Mengganti ikon saat di-hover */
    color: #2E5788;
}

/* Testimonial Gallery */
.testimonial-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Membuat 2 kolom */
    gap: 20px; /* Jarak antar gambar */
    padding: 0 20px; /* Padding kiri dan kanan */
    margin-top: 30px;
}

.testimonial-gallery img {
    width: 100%; /* Gambar mengisi penuh kolomnya */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .testimonial-gallery {
        grid-template-columns: 1fr; /* Kembali ke 1 kolom di layar kecil */
    }
}

.promo-section {
    background-color: #1a1a1a; /* Warna hitam pekat */
    padding: 50px 20px;
    margin-top: 0px;
}

.promo-section h2 {
    color: #FBE04C; /* Mengubah warna teks utama menjadi putih */
    text-align: center;
}

/* Add cursor to all clickable images */
img:not(.header) {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

/* Lightbox (Modal) Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {transform: translate(-50%, -50%) scale(0.5)}
    to {transform: translate(-50%, -50%) scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap other items */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #2E5788; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 0;
    width: 50px; /* Set a fixed width */
    height: 50px; /* Set a fixed height */
    border-radius: 50%; /* Make it round */
    font-size: 24px; /* Increase font size */
    line-height: 50px; /* Center the icon vertically */
    text-align: center; /* Center the icon horizontally */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #1e3c72; /* Darker blue on hover */
}
