/* ============ RESET & GLOBAL ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; background-color: #fff; color: #333; }

/* Container Global */
.container { width: 100%; margin: 0 auto; }

/* Desktop Container (90%) */
@media (min-width: 1025px) {
    .box-container { width: 90%; max-width: 1600px; margin: 0 auto; }
}
@media (max-width: 1024px) {
    .box-container { width: 90%; margin: 0 auto; }
}

/* ============ HEADER DESKTOP STYLE ============ */
.split-screen-container {
    display: flex; width: 100%; min-height: 100vh;
}
.left-pane {
    width: 50%; display: flex; align-items: center; justify-content: center;
    padding: 60px 40px 60px 80px; background-color: #ffffff;
}
.right-pane {
    width: 50%; height: 100vh; padding: 0; background-color: #fff; position: relative;
}
.content-wrapper { max-width: 600px; width: 100%; }
.brand-logo img { max-width: 180px; margin-bottom: 35px; display: block; }
h1 {
    font-weight: 800; font-size: 50px; color: #15274D; line-height: 1.1;
    margin-bottom: 20px; text-transform: uppercase;
}
.subtitle { font-size: 16px; color: #555; margin-bottom: 50px; line-height: 1.6; max-width: 90%; }

/* Promo Stats */
.promo-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.stat-item { display: flex; flex-direction: column; border-left: 4px solid #555555; padding-left: 15px; }
.stat-big { font-size: 28px; font-weight: 800; color: #15274D; text-transform: uppercase; line-height: 1; }
.stat-small { font-size: 14px; color: #666; font-weight: 600; margin-top: 5px; }

/* Image Card Rounded */
.image-card-rounded {
    width: 100%; height: 100%; position: relative;
    border-radius: 60px 0 0 0; overflow: hidden;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
}
.bg-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-visit {
    background-color: #fff; color: #15274D; padding: 18px 35px;
    font-weight: 700; text-decoration: none; border-radius: 12px;
    display: inline-block; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-transform: uppercase; letter-spacing: 1px; font-size: 15px;
    transition: all 0.3s ease;
}
.btn-visit:hover { background-color: #cf2e2e; transform: translateY(-5px); }
.overlay-button-corner { position: absolute; z-index: 10; bottom: 40px; right: 40px; }
.mobile-only { display: none !important; }

/* ============ SECTION GLOBAL (KEUNGGULAN, LOKASI, DLL) ============ */
.section-title {
    font-size: 36px; font-weight: 800; color: #15274D; text-transform: uppercase;
    text-align: center; margin-bottom: 50px; display: block; width: 100%; position: relative;
}
.section-title::after {
    content: ''; display: block; width: 90px; height: 2px; background: #555555; margin: 15px auto 0; border-radius: 2px;
}

/* Keunggulan (Wide Box) */
.advantages-section { padding: 80px 0; background-color: #f0f2f5; }
.advantages-grid-wide { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
.adv-box-wide {
    background: #ffffff; border-radius: 15px; padding: 25px 30px;
    display: flex; align-items: center; border: 1px solid #e6e9ef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: all 0.3s ease;
}
.adv-box-wide:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(21, 39, 77, 0.1); border-color: #15274D; }
.adv-box-wide .icon-wrapper {
    flex-shrink: 0; width: 70px; height: 70px; background: #eef2f7; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-right: 25px;
}
.adv-box-wide .icon-wrapper img { max-width: 35px; height: auto; }
.text-wrapper h3 { font-size: 18px; font-weight: 700; color: #15274D; margin-bottom: 8px; }
.text-wrapper p { font-size: 14px; color: #666; margin: 0; line-height: 1.5; }
.center-cta { text-align: center; margin-top: 40px; }

/* Lokasi Section */
.location-section { padding: 80px 0; background-color: #fff; }
.location-wrapper { display: flex; gap: 50px; align-items: center; }
.map-container { flex: 1.2; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 5px solid #fff; }
.destination-list-wrapper { flex: 1; }
.destinations-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 40px; }
.destinations-grid li { display: flex; flex-direction: column; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.destinations-grid .time { font-size: 24px; font-weight: 800; color: #FAA43C; line-height: 1; margin-bottom: 5px; }
.destinations-grid .place { font-size: 15px; font-weight: 600; color: #15274D; }

/* Unit Detail Section (Swiper) */
.unit-detail-section { padding: 80px 0; background-color: #fff; }
.unit-card-wrapper { display: flex; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid #eee; }
.unit-gallery { width: 50%; height: 500px; position: relative; background: #f4f4f4; }
.myUnitSwiper { width: 100%; height: 100%; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: #fff !important; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.swiper-pagination-bullet-active { background: #cf2e2e !important; }
.unit-label { position: absolute; top: 20px; left: 20px; background: #00A14B; color: #fff; padding: 8px 15px; font-weight: 700; font-size: 12px; border-radius: 4px; z-index: 10; }

.unit-info-content { width: 50%; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.unit-name { font-size: 36px; font-weight: 800; color: #15274D; margin-bottom: 10px; text-transform: uppercase; }
.divider-line { width: 80px; height: 2px; background: #555555; margin-bottom: 30px; }
.price-promo-box { background: #f8faff; padding: 20px; border-radius: 10px; border-left: 5px solid #15274D; margin-bottom: 30px; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px dashed #ddd; padding-bottom: 10px; }
.price-row .value { font-size: 20px; color: #15274D; font-weight: 800; }
.promo-row { color: #FAA43C; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.spec-item i { font-size: 20px; color: #FAA43C; width: 25px; }
.spec-value { font-size: 16px; font-weight: 700; color: #15274D; }
.spec-label { font-size: 12px; color: #888; }
.btn-visit-unit { display: block; background: #61CE70; color: #fff; padding: 15px; text-align: center; font-weight: 700; border-radius: 8px; text-decoration: none; transition: 0.3s; }
.btn-visit-unit:hover { background: #cf2e2e; }

/* Footer */
.contact-footer-section { background-color: #15274D; color: #ffffff; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr; gap: 50px; margin-bottom: 60px; }
.footer-title { font-size: 28px; font-weight: 800; margin-bottom: 15px; color: #FAA43C; }
.footer-desc { font-size: 16px; font-weight: 400; margin-bottom: 15px; color: #fff; }
.form-group input { width: 100%; padding: 15px; margin-bottom: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; }
.btn-submit { background: #FAA43C; color: #fff; border: none; padding: 15px 30px; border-radius: 8px; font-weight: 700; cursor: pointer; width: 100%; text-transform: uppercase; }
.col-title { color: #FAA43C; margin-bottom: 20px; text-transform: uppercase; font-weight: 700; }
.social-icons { display: flex; gap: 15px; }
.socmed-link { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 13px; color: #6c7c93; }


/* ============ MOBILE RESPONSIVE FINAL (HP) ============ */
@media (max-width: 1024px) {
    /* Toggle Visibility */
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }

    /* A. HEADER MOBILE */
    .split-screen-container {
        display: block; height: 100vh; width: 100%; position: relative;
        background-image: url('../../assets/images/others/header-hp.png');
        background-size: cover; background-position: center bottom; background-repeat: no-repeat;
    }
    .right-pane { display: none !important; }
    .left-pane {
        width: 100%; height: 100%; position: absolute; top: 0; left: 0;
        background: transparent; padding: 20px;
        display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
        text-align: center; z-index: 10;
    }
    .brand-logo { margin-bottom: 20px; }
    .brand-logo img { max-width: 160px; }
    h1 { font-size: 34px !important; margin-bottom: 10px; width: 100%; }
    .subtitle { font-size: 13px; margin-bottom: 30px; }
    .promo-stats { justify-content: center; gap: 15px; width: 100%; }
    .stat-item { border-left: 1.5px solid #15274D; padding: 0 15px; text-align: center; }
    .stat-item:first-child { border-left: none; }
    .stat-big { font-size: 24px !important; font-weight: 900; color: #cf2e2e; }
    .stat-small { font-size: 10px; font-weight: 700; color: #15274D; text-transform: uppercase; }
    .btn-saya-tertarik {
        background-color: #1a2a4e; color: #fff; padding: 12px 45px;
        font-weight: 600; font-size: 16px; border-radius: 4px;
        text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* B. KEUNGGULAN 2 KOLOM */
    .advantages-grid-wide {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px;
    }
    .adv-box-wide {
        flex-direction: column; text-align: center; padding: 20px 15px; justify-content: flex-start; height: 100%;
    }
    .adv-box-wide .icon-wrapper { margin-right: 0; margin-bottom: 15px; width: 60px; height: 60px; }
    .adv-box-wide .icon-wrapper img { max-width: 30px; }
    .text-wrapper h3 { font-size: 14px; min-height: 36px; display: flex; align-items: center; justify-content: center; }
    .text-wrapper p { font-size: 12px; }

    /* C. LOKASI 2 KOLOM & MAP LANDSCAPE */
    .location-wrapper { flex-direction: column; }
    .location-section .section-title { font-size: 28px !important; margin-bottom: 30px; }
    .map-container iframe { height: 250px !important; }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px 10px;
    }
    .destinations-grid li { padding-bottom: 5px; }
    .destinations-grid .time { font-size: 18px; margin-bottom: 2px; }
    .destinations-grid .place { font-size: 12px; line-height: 1.3; }

    /* D. UNIT DETAIL 2 KOLOM */
    .unit-card-wrapper { flex-direction: column; }
    .unit-gallery, .unit-info-content { width: 100%; }
    .unit-gallery { height: 300px; }
    .specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 10px;
    }
    .spec-item { align-items: center; }
    .spec-item i { font-size: 18px; width: 20px; margin-right: 8px; text-align: center; }
    .spec-value { font-size: 14px; }
    .spec-label { font-size: 11px; }

    /* E. FOOTER */
    .footer-grid { display: flex; flex-direction: column; }
}