/* ============================================= */
/* 1. PENGATURAN DASAR & FONT                    */
/* ============================================= */

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

body {
    font-family: 'Bai Jamjuree', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    overflow-x: hidden;
}


/* ============================================= */
/* 2. HEADER & NAVIGASI                          */
/* ============================================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-right-side {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8DB38B;
}

.menu-toggle {
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button {
    padding: 8px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #748873;
    border-color: #ffffff;
}

.consultation-button {
    padding: 8px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-button:hover {
    background-color: #748873;
    border-color: #ffffff;
}


/* ============================================= */
/* 3. HERO SECTION                               */
/* ============================================= */

.hero {
    padding: 20px 4%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -40px;
    z-index: 10;
    position: relative;
    width: 100%;
    padding: 0 5%;
}

.hero-text {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    color: #4A4A4A;
    max-width: 600px;
}

.hero-content h1 .highlight {
    color: #D1A980;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #666;
    margin-bottom: 40px;
}

.hero-content .cta-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.custom-package-box {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4A4A4A;
    max-width: 30%;
    text-align: left;
    border: 1.5px solid #ccc;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.custom-package-box .cta-button {
    display: inline-block;
    position: static;
    transform: none;
}


/* ============================================= */
/* 4. KOLASE GAMBAR                              */
/* ============================================= */

.image-stack {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
}

.image-stack img {
    position: absolute;
    width: 260px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-stack img:hover {
    transform: scale(1.05) rotate(0) !important;
    z-index: 50 !important;
}

.image-stack .img-1 { top: 50px; left: 100px; transform: rotate(-15deg); z-index: 7; }
.image-stack .img-2 { top: 200px; left: 180px; transform: rotate(-5deg); z-index: 6; }
.image-stack .img-3 { top: 100px; left: 50%; transform: translateX(-50%) rotate(5deg); z-index: 10; width: 300px; }
.image-stack .img-4 { top: 20px; right: 120px; transform: rotate(12deg); z-index: 9; }
.image-stack .img-5 { top: 230px; right: 150px; transform: rotate(20deg); z-index: 8; }
.image-stack .img-6 { display: none; }


/* ============================================= */
/* 6. JOURNEY SECTION                            */
/* ============================================= */

.journey-section {
    padding: 150px 5%;
}

.separator {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 60px;
}

.journey-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.journey-text {
    flex: 1;
    max-width: 50%;
    color: #000;
}

.journey-text h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.journey-text blockquote {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 600;
    color: #748873;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 4px solid #D1A980;
}

.learn-more-btn {
    display: inline-block;
    background-color: #8DB38B;
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #7aa178;
}

.journey-banner {
    flex: 1;
    max-width: 45%;
}

.journey-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* ============================================= */
/* 5. RESPONSIVITAS (TAMPILAN MOBILE)            */
/* ============================================= */

@media (max-width: 992px) {
    .contact-info-box {
        display: none;
    }
    .hero {
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .custom-package-box {
        max-width: 80%;
        font-size: 1.8rem;
        padding: 20px;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    .journey-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .journey-text, .journey-banner {
        max-width: 100%;
    }
    .journey-text p {
        font-size: 1.9rem;
        line-height: 1.7;
    }
    .journey-banner {
        margin-top: 40px;
    }
     .contact-info-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links a {
        color: white;
        font-size: 1.8rem;
        font-weight: 600;
    }
    .menu-toggle.active span {
        background-color: white;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .image-stack {
        transform: scale(0.8);
        margin-top: -20px;
        height: 400px;
    }
    .image-stack img {
        width: 220px;
    }
    .image-stack .img-1 { top: 30px; left: 20%; transform: rotate(-10deg); }
    .image-stack .img-2 { top: 150px; left: 10%; transform: rotate(5deg); }
    .image-stack .img-3 { top: 80px; left: 50%; transform: translateX(-50%) rotate(0deg); width: 250px; }
    .image-stack .img-4 { top: 50px; right: 15%; transform: rotate(10deg); }
    .image-stack .img-5 { top: 180px; right: 20%; transform: rotate(-5deg); }
    .nav-right-side {
        gap: 15px;
    }
    .cta-button {
        padding: 6px 18px;
        font-size: 0.9rem;
    }
    .learn-more-btn {
        display: inline-block;
        margin-top: 30px;
        padding: 14px 30px;
        font-size: 1rem;
    }
    .contact-info-box {
    display: none;
}
}
    
@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .image-stack {
        transform: scale(0.7);
        margin-top: -60px;
        height: 350px;
    }
    .image-stack img {
        width: 200px;
    }
    .image-stack .img-1 { top: 20px; left: 10%; }
    .image-stack .img-2 { top: 140px; left: 5%; }
    .image-stack .img-3 { top: 70px; width: 230px; }
    .image-stack .img-4 { top: 30px; right: 8%; }
    .image-stack .img-5 { top: 150px; right: 12%; }
    .journey-section {
        padding: 100px 5%;
    }
    .journey-text p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .custom-package-box {
        font-size: 1.6rem;
    }
    .cta-button {
        display: none;
    }
    .consultation-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        display: inline-block; /* Pastikan tombol terlihat di mobile */
        margin-top: 30px; /* Sesuaikan margin jika diperlukan */
    }
    .learn-more-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .contact-info-box {
    display: none;
}

}
/* ============================================= */
/* 7. FOOTER                                     */
/* ============================================= */

.site-footer {
    padding: 60px 5%;
    background-color: #fdfdfd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    /* Ini adalah gaya garis kotak yang Anda inginkan */
    border: 1.5px solid #ccc;
    border-radius: 8px;
    flex-wrap: wrap; /* Agar responsif di layar kecil */
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Lebar minimum untuk setiap kolom */
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #8DB38B; /* Warna hijau dari brand Anda */
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #666;
    line-height: 1.6;
    max-width: 250px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #888;
    font-size: 0.9rem;
}


/* ============================================= */
/* PENYESUAIAN FOOTER UNTUK RESPONSIVITAS      */
/* ============================================= */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-about p {
        max-width: 100%;
    }
    .footer-column {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    
}

@media (max-width: 480px) {
    .footer-container {
        padding: 25px;
    }
}

/* ============================================= */
/* 8. KOTAK INFO KONTAK (VERSI DESKTOP & MOBILE) */
/* ============================================= */


/* Kolom Kiri (Info) */
.info-side {
    flex: 0 0 40%; /* Lebar kolom kiri 40% */
}

/* Kolom Kanan (Form) */
.form-side {
    flex: 1; /* Kolom kanan mengisi sisa ruang */
}

.info-side h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li a, .contact-list li .contact-item-no-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.contact-list li a:hover {
    background-color: #f5f5f5;
}

.contact-list svg {
    width: 28px;
    height: 28px;
    fill: #8DB38B;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    font-size: 0.9rem;
    color: #888;
}

.contact-details strong {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Pemisah Vertikal (hanya muncul di desktop) */
.vertical-separator {
    width: 1px;
    background-color: #e0e0e0;
}

/* Judul Form */
.form-title {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
    text-align: left; /* Ubah ke rata kiri */
}

/* Formulir Kontak */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1rem;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    background-color: #fdfdfd;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8DB38B;
    box-shadow: 0 0 5px rgba(141, 179, 139, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-kirim {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background-color: #8DB38B;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-kirim:hover {
    background-color: #7aa178;
}

/* Responsivitas: Kembali ke layout vertikal di mobile */
@media (max-width: 992px) {
    .contact-info-box {
        flex-direction: column; /* Ubah jadi vertikal */
    }
    
    /* Sembunyikan pemisah vertikal di mobile */
    .vertical-separator {
        display: none;
    }

    .info-side {
        flex-basis: auto; /* Reset lebar */
    }
}

/* ============================================= */
/* 8. KOTAK INFO KONTAK (VERSI DESKTOP)          */
/* ============================================= */
@media (min-width: 993px) {
    .contact-info-box {
        display: flex;
        max-width: 1500px;
        width: 200%;
        gap: 30px;
        margin-top: 50px;
        border: 1.5px solid #ccc;
        border-radius: 8px;
        padding: 40px;
        text-align: left;
    }
}

/* ============================================= */
/* 9. FOOTER LITE (KHUSUS MOBILE)                */
/* ============================================= */

/* Sembunyikan footer lite di desktop secara default */
.site-footer-lite {
    display: none;
}



/* ============================================= */
/* 10. PENYESUAIAN FOOTER UNTUK RESPONSIVITAS    */
/* ============================================= */

/* Gunakan breakpoint yang sama dengan navigasi Anda agar konsisten */
@media (max-width: 768px) {
    /* Sembunyikan footer versi desktop di mobile */
    .site-footer {
        display: none;
    }

    /* Tampilkan dan tata footer versi lite di mobile */
    .site-footer-lite {
        display: block;
        padding: 40px 5%;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }

    .footer-lite-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-lite-logo {
        height: 60px;
    }

    .footer-lite-socials {
        display: flex;
        gap: 25px;
    }

    .footer-lite-socials a svg {
        width: 24px;
        height: 24px;
        fill: #555;
        transition: fill 0.3s;
    }
    
    .footer-lite-socials a:hover svg {
        fill: #8DB38B; /* Warna hijau brand Anda */
    }

    .footer-lite-bottom {
        margin-top: 30px;
        color: #888;
        font-size: 0.85rem;
    }
}