* {
    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: 0 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;
}

.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;
}

.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;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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);
}

.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: 100px 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.1rem;
    color: #666;
}

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

.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;
}

.text-green {
    color: #228B22; /* ForestGreen */
}

.text-red {
    color: #E60000; /* 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: 50px;
    margin-top: 15px;
    list-style-position: outside;
}

.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);
}


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

.section-header ul li {
    margin-bottom: 5px;
}

.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: 100px 20px;
    background: #61a8ee;
    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;
}

/* 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: #1a1a1a;
    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.6;
}

.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);
    }
}

/* 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;
}