/* RESET & FONT BARU */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
:root {
    --primary: #FF7E5F;
    --dark: #111827; 
    --gray: #6B7280;
    --light: #F3F4F6;
    --white: #ffffff;
}
body { background: var(--white); color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.text-center { text-align: center; }

/* NAVBAR */
nav { padding: 25px 0; position: fixed; top: 0; width: 100%; z-index: 1000; transition: 0.4s; }
.navbar-transparent { background: transparent; }
nav.scrolled, .navbar-solid { background: rgba(255, 255, 255, 0.98); padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: white; letter-spacing: -0.5px; transition: 0.3s; }
nav.scrolled .logo, .navbar-solid .logo { color: var(--dark); }

.menu-text { list-style: none; display: flex; gap: 40px; }
.menu-text a { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 600; }
nav.scrolled .menu-text a, .navbar-solid .menu-text a { color: var(--dark); }
.menu-text a:hover, .menu-text a.active { color: var(--primary); }

/* HERO SECTION (UPDATED) */
.hero-full {
    height: 100vh; width: 100%; position: relative;
    
    /* Settingan agar gambar responsif */
    background-size: cover; 
    background-position: center center; /* Fokus di tengah */
    background-repeat: no-repeat;
    background-attachment: scroll; /* Scroll biar aman di iPhone/Android */

    display: flex; align-items: center; justify-content: center;
    transition: background-image 1s ease-in-out;
}
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 0 20px; animation: fadeInUp 1s ease-out; }
.hero-content h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 20px; font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; }
.main-desc { font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.95); margin-bottom: 40px; font-weight: 400; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--dark); padding: 16px 40px; border-radius: 50px; font-weight: 700; border: 2px solid white; }
.btn-white:hover { background: transparent; color: white; }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.7); color: white; padding: 16px 40px; border-radius: 50px; font-weight: 700; }
.btn-outline-white:hover { background: white; color: var(--dark); border-color: white; }

.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: white; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 5px; opacity: 0.8; font-size: 0.8rem; animation: bounce 2s infinite; }

/* SECTIONS (Clean) */
.section-clean { padding: 100px 0; }
.bg-soft { background: var(--light); }
.label-clean { color: var(--primary); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.heading-clean { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: var(--dark); letter-spacing: -1px; }
.desc-clean { font-size: 1.1rem; color: var(--gray); line-height: 1.7; max-width: 650px; margin: 0 auto; }
.mt-50 { margin-top: 50px; }

/* FEATURES GRID */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.clean-box { text-align: center; padding: 30px 20px; transition: 0.3s; background: white; border-radius: 16px; border: 1px solid transparent; }
.clean-box:hover { transform: translateY(-5px); border-color: #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon-large { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; display: inline-block; }
.clean-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.clean-box p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* MAP LAYOUT (Split) */
.grid-map { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.map-text { text-align: left; }
.info-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 15px; align-items: center; }
.info-item i { width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.info-item h4 { font-size: 0.9rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.info-item p { font-size: 1rem; color: var(--dark); font-weight: 700; }

.map-frame { height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

/* FOOTER */
.footer-clean { padding: 80px 0 30px; background: white; border-top: 1px solid #eee; }
.footer-clean h3 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -1px; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 15px 40px; border-radius: 50px; font-weight: 700; margin: 30px 0; transition: 0.3s; }
.btn-wa:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.copyright { color: #aaa; font-size: 0.9rem; margin-top: 20px; }

/* CARDS (Layanan/Armada) */
.page-section { padding: 120px 0 80px; }
.section-header { text-align: center; margin-bottom: 60px; }
.card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee; transition: 0.4s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.card-img, .card-img-zoom { height: 250px; overflow: hidden; position: relative; }
.card-img img, .card-img-zoom img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.card:hover .card-img-zoom img { transform: scale(1.05); }
.card-body { padding: 30px; }
.centered { text-align: center; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.desc-text { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.badge-price { position: absolute; bottom: 20px; right: 20px; background: white; color: var(--dark); padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-block-order { display: block; width: 100%; text-align: center; background: var(--dark); color: white; padding: 12px; border-radius: 8px; font-weight: 600; transition: 0.3s; margin-top: 15px; }
.btn-block-order:hover { background: var(--primary); }
.link-arrow { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.spec-list span { background: var(--light); padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; color: var(--gray); display: inline-block; margin-bottom: 5px; }
.floating-wa { position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); z-index: 999; }

/* --- MEDIA QUERY KHUSUS MOBILE (HP) --- */
@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; gap: 15px; }

    /* FIX WALLPAPER HP: PENTING! */
    .hero-full { 
        /* Kita kurangi tingginya jadi 55% layar HP */
        /* Ini agar gambar tidak terlalu di-zoom (crop) */
        height: 55vh; 
        min-height: 400px; /* Minimal tinggi supaya konten muat */
        
        /* Paksa gambar di tengah & matikan efek scroll aneh */
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .hero-content { 
        margin-top: 30px; /* Turunkan dikit biar gak nabrak navbar */
        padding: 0 15px; 
    }
    
    .hero-content h1 { font-size: 2rem; margin-bottom: 10px; }
    .main-desc { font-size: 0.95rem; margin-bottom: 20px; }
    
    .hero-buttons { gap: 10px; }
    .btn-white, .btn-outline-white { padding: 10px 25px; font-size: 0.9rem; }

    .grid-map { grid-template-columns: 1fr; }
    .map-text { text-align: center; margin-bottom: 30px; }
    .desc-clean { text-align: center !important; }
    .info-list { align-items: center; }
    
    /* Sembunyikan panah scroll karena area hero sudah pendek */
    .scroll-down { display: none; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);} 40% {transform: translateY(-10px) translateX(-50%);} 60% {transform: translateY(-5px) translateX(-50%);} }