/* ==============================================================
   ATRANS FRONTEND STYLESHEET (MOTION MORPH & 3D GLASSMORPHISM)
   Dioptimalkan untuk Performa GPU, UX, dan Aksesibilitas
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* MEMUAT CUSTOM FONT CYBERDYNE */
@font-face {
    font-family: 'Cyberdyne';
    src: url('https://atrans.id/cyberdyne.ttf') format('truetype');
    font-weight: normal; font-style: normal; font-display: swap;
}

:root {
    --primary: #009FE3; var(--primary-light): #38bdf8; var(--primary-dark): #0284c7;
    --secondary: #fbbf24; var(--accent): #f43f5e;
    --bg-main: transparent; var(--bg-glass): rgba(255, 255, 255, 0.75);
    --text-main: #0f172a; var(--text-muted): #475569;
    --radius: 24px; var(--radius-sm): 12px;
    --shadow-soft: 0 15px 35px -5px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -5px rgba(0, 159, 227, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

/* OPTIMASI NATIVE SCROLL & FONT RENDERING */
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 100px; /* Offset agar konten tidak tertutup navbar */
}

body { 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
    width: 100%;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
    text-rendering: optimizeLegibility;
}

/* AKSESIBILITAS: Indikator fokus untuk navigasi keyboard */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* KELAS BANTUAN */
.hide-on-mobile { display: inline-block; }

/* MOTION MORPH BACKGROUND */
.morph-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; overflow: hidden; background: #f8fafc; pointer-events: none; }
.morph-blob { position: absolute; filter: blur(100px); border-radius: 50%; animation: morph 12s infinite alternate cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.5; will-change: transform; }
.blob-1 { width: 50vw; height: 50vw; background: var(--primary-light); top: -10%; left: -10%; }
.blob-2 { width: 60vw; height: 60vw; background: #c084fc; bottom: -20%; right: -10%; animation-delay: -3s; }
.blob-3 { width: 40vw; height: 40vw; background: #fef08a; top: 30%; left: 40%; animation-delay: -6s; }
.blob-4 { width: 45vw; height: 45vw; background: #fda4af; bottom: 10%; left: -10%; animation-delay: -9s; }
@keyframes morph { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 50% { transform: translate(15vw, 15vh) scale(1.3) rotate(180deg); } 100% { transform: translate(-10vw, 5vh) scale(0.9) rotate(360deg); } }

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .morph-blob { animation: none; transform: none; }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: 3.5rem; color: #0f172a; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(255, 255, 255, 0.8); }
h2 { font-size: 2.5rem; margin-bottom: 15px; color: #1e293b; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; position: relative; }
.section-header { margin-bottom: 60px; position: relative; z-index: 2; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; font-weight: 500;}
.text-center { text-align: center; } .text-primary { color: var(--primary); } .text-secondary { color: var(--secondary); } .text-white { color: white; }
.mt-3 { margin-top: 15px; } .mt-4 { margin-top: 25px; } .mb-4 { margin-bottom: 25px; }
.bg-light { background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 40px; margin: 20px; box-shadow: var(--shadow-soft); position: relative; }

/* NAVBAR & MENU */
.navbar { position: fixed; top: 20px; left: 0; right: 0; margin: 0 auto; width: calc(100% - 40px); max-width: 1200px; background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(255,255,255,0.5); border-radius: 50px; padding: 15px 25px; z-index: 10000; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s; overflow: visible !important; }
.nav-container { padding: 0 !important; display: flex; justify-content: space-between; align-items: center; width: 100%; position: relative;}
.logo-link { display: flex; align-items: center; text-decoration: none; gap: 10px; white-space: nowrap; }
.nav-logo { height: 40px; transition: transform 0.3s; will-change: transform; }
.logo-link:hover .nav-logo { transform: rotate(-10deg) scale(1.1); }
.logo-text { font-family: 'Cyberdyne', sans-serif; font-weight: 800; font-size: 1.2rem; color: #009FE3; letter-spacing: -0.5px; display: inline-block;}

/* Menu Links Desktop */
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; margin: 0; }
.nav-links li a { text-decoration: none; color: #0f172a; font-weight: 600; font-size: 0.95rem; transition: 0.3s; white-space: nowrap; }
.nav-links li a:hover { color: var(--primary); }

/* DROPDOWN MENU UMUM */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 150%; left: 50%; transform: translateX(-50%) translateY(20px); background: #ffffff; border-radius: var(--radius-sm); padding: 15px; box-shadow: var(--shadow-soft); list-style: none; min-width: 200px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid #e2e8f0; will-change: transform, opacity; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li { margin-bottom: 10px; }
.dropdown-menu li a { display: block; padding: 10px 15px; border-radius: 8px; font-weight: 600; color: #475569; transition: all 0.2s;}
.dropdown-menu li a:hover { background: rgba(0,159,227,0.1); color: var(--primary); transform: translateX(5px); }
.action-dropdown { display: inline-block; }
.action-dropdown .dropdown-menu { left: auto; right: 0; transform: translateY(20px); min-width: 240px; }
.action-dropdown:hover .dropdown-menu { transform: translateY(0); }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; text-align: center; cursor: pointer; border: none; transition: all 0.3s ease; white-space: nowrap; will-change: transform; }
.btn-primary { background: #009FE3 !important; color: #ffffff !important; box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3) !important; }
.btn-primary:hover { background: #0284c7 !important; transform: translateY(-3px); }
.btn-outline { background: #ffffff !important; border: 2px solid #009FE3 !important; color: #009FE3 !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.btn-outline:hover { background: #009FE3 !important; color: #ffffff !important; transform: translateY(-3px); }
.btn-white { background: white; color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-5px) scale(1.05); color: #8b5cf6;}
.btn-block { display: block; width: 100%; } .btn-large { padding: 16px 36px; font-size: 1.1rem; }

/* ANIMASI CUSTOM AOS "MORPH" */
[data-aos="morph"] { opacity: 0; transform: scale(0.6) rotate(-15deg); border-radius: 50%; transition-property: transform, opacity, border-radius; will-change: transform, opacity; }
[data-aos="morph"].aos-animate { opacity: 1; transform: scale(1) rotate(0deg); border-radius: 30px; }

/* THUMBNAIL VIDEO HERO */
.video-thumbnail-wrapper { display: block; position: relative; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 159, 227, 0.4); border: 5px solid rgba(255,255,255,0.8); border-radius: 25px; transition: transform 0.3s; will-change: transform; }
.video-thumbnail-wrapper:hover { transform: scale(1.03); }
.video-thumbnail-img { width: 100%; height: auto; display: block; border-radius: 20px; }
.play-btn-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(0,0,0,0.2); transition: 0.4s; will-change: transform, background; }
.video-thumbnail-wrapper:hover .play-btn-overlay { transform: translate(-50%, -50%) scale(1.2); background: linear-gradient(135deg, var(--primary), #8b5cf6); }
.play-triangle { width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 20px solid var(--primary); margin-left: 5px; transition: border-color 0.3s; }
.video-thumbnail-wrapper:hover .play-triangle { border-left-color: white; }

/* ==============================================================
   ENHANCED HERO SECTION STYLING (FIXED OVERFLOW & Z-INDEX)
   ============================================================== */
.enhanced-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow-x: clip !important;
    overflow-y: visible !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text { position: relative; z-index: 99999; }
.hero-image-container { position: relative; z-index: 1; padding: 20px; max-width: 100%; }

.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; font-weight: 500; }
.hero-main-title { font-size: 3.2rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--text-main); margin-bottom: 20px; }

.gradient-text { background: linear-gradient(135deg, var(--primary), #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.pulse-badge { animation: pulseGlow 2.5s infinite; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(0, 159, 227, 0.4); } 70% { box-shadow: 0 0 0 12px rgba(0, 159, 227, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 159, 227, 0); } }

.hero-pricing-card {
    display: flex; align-items: center; gap: 18px; background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9); padding: 18px 25px; border-radius: 20px;
    margin-bottom: 35px; box-shadow: var(--shadow-soft); border-left: 6px solid var(--secondary);
    transition: transform 0.3s ease; will-change: transform;
}
.hero-pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.pricing-icon {
    font-size: 2.2rem; background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
    border-radius: 15px; flex-shrink: 0;
}

.hero-pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); }
.hero-pricing-card .period { font-size: 1.1rem; color: var(--text-muted); font-weight: 700; }
.shadow-glow { box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4) !important; }

.hero-visual-card {
    background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 32px; padding: 15px; box-shadow: 0 30px 60px rgba(0, 159, 227, 0.15);
}

/* Floating Stats Badge Dekoratif */
.floating-stats-badge {
    position: absolute; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.95); padding: 12px 20px; border-radius: 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5; animation: floatBadge 5s infinite ease-in-out;
}
.floating-stats-badge .stat-icon { font-size: 1.5rem; }
.floating-stats-badge strong { display: block; font-size: 1rem; color: var(--text-main); font-weight: 800; }
.floating-stats-badge small { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.stat-1 { top: -15px; left: -10px; }
.stat-2 { bottom: -10px; right: -10px; animation-delay: -2.5s; }

@keyframes floatBadge { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }


/* ==============================================================
   CTA GROUP & HERO DROPDOWN DAFTAR EKSKLUSIF
   ============================================================== */
.cta-group { display: flex; gap: 15px; align-items: center; position: relative; z-index: 999999; flex-wrap: wrap; }

/* SEMBUNYIKAN DAFTAR SEKARANG DI DESKTOP */
@media (min-width: 993px) {
    .hero-dropdown { display: none !important; }
}

.hero-dropdown { position: relative; z-index: 999999; }

/* PERBAIKAN BUG TEKS MENJADI PUTIH DI HP SAAT DI-KLIK/TAP */
.hero-dropdown > a.btn {
    background: #ffffff !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.hero-dropdown > a.btn:hover,
.hero-dropdown > a.btn:active,
.dropdown.active .hero-dropdown > a.btn {
    background: #e0f2fe !important; /* Biru sangat muda (kalem) */
    color: var(--primary-dark) !important; /* Teks tetap biru gelap, tidak jadi putih */
}

/* SUBMENU DAFTAR INDEX PALING ATAS */
.hero-dropdown-menu {
    position: absolute; top: 100%; left: 0; margin-top: 15px; min-width: 300px;
    background: #ffffff; border-radius: 16px; padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid rgba(0,159,227,0.2);
    z-index: 9999999 !important; display: none; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); list-style: none;
}
.dropdown.active .hero-dropdown-menu { display: block; opacity: 1; visibility: visible; transform: translateY(0); }

.hero-dropdown-menu li { margin-bottom: 12px; border: none; }
.hero-dropdown-menu li:last-child { margin-bottom: 0; }
.hero-dropdown-menu li a {
    display: block; padding: 14px 20px; border-radius: 10px; font-weight: 700;
    text-align: center; color: #fff !important; transition: all 0.3s; text-decoration: none; border: none !important;
}

@media (hover: hover) { .hero-dropdown-menu li a:hover { transform: translateY(-3px); filter: brightness(1.1); } }

.btn-investor { background: linear-gradient(135deg, #10b981, #059669) !important; box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3); }
.btn-driver { background: linear-gradient(135deg, #009FE3, #0284c7) !important; box-shadow: 0 6px 15px rgba(0, 159, 227, 0.3); }


/* ==============================================================
   LAYOUT SEBARIS & GRID 
   ============================================================== */
.grid { display: grid; gap: 30px; position: relative; z-index: 2; width: 100%; }
.fleet-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.programs-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; position: relative; z-index: 2; }
.testimonial-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 50px; }

.blog-text-card-compact {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9); border-top: 4px solid var(--primary);
    border-radius: 20px; padding: 25px; box-shadow: var(--shadow-soft); transition: all 0.3s ease; display: flex; flex-direction: column;
    justify-content: space-between; height: 100%; will-change: transform, box-shadow;
}
.blog-text-card-compact:hover { transform: translateY(-8px); border-color: var(--primary-light); box-shadow: var(--shadow-hover); background: rgba(255, 255, 255, 0.85); }

/* Scroll Smooth Mobile UX Fix */
.scroll-wrapper { position: relative; width: 100%; }
.scroll-btn { display: none; }
.features-grid, .steps-container { 
    display: flex; flex-wrap: nowrap; gap: 20px; overflow-x: auto; padding-bottom: 20px; 
    scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory;
}
.steps-container { gap: 15px; margin-top: 40px; padding-top: 30px; }
.features-grid::-webkit-scrollbar, .steps-container::-webkit-scrollbar { display: none; } 

.feature-card, .req-card, .about-container, .step-item { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.7); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: all 0.4s ease; position: relative; z-index: 1; will-change: transform, box-shadow; width: 100%; }
.feature-card, .step-item { scroll-snap-align: center; }

.req-card, .about-container { padding: 40px 25px; }
.feature-card { flex: 1 1 0; min-width: 160px; padding: 25px 15px; text-align: center; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; line-height: 1.4; margin-bottom: 0; color: var(--text-muted); }

.step-item { flex: 1 1 0; min-width: 120px; padding: 30px 10px 15px; border-bottom: 4px solid rgba(226, 232, 240, 0.8); text-align: center; }
.step-item h4 { color: var(--text-main); font-size: 0.95rem; margin-bottom: 5px; margin-top: 8px; }
.step-item p { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; line-height: 1.3; margin-bottom: 0; }

.feature-card:hover, .step-item:hover { transform: translateY(-12px); border-color: #e0f2fe; box-shadow: var(--shadow-hover); }

.icon-circle { width: 55px; height: 55px; border-radius: 16px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transform: rotate(-10deg); transition: transform 0.4s; will-change: transform; }
.feature-card:hover .icon-circle { transform: rotate(0deg) scale(1.1); }
.icon-bg-primary { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0284c7; }
.icon-bg-secondary { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.icon-bg-accent { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: #e11d48; }
.icon-bg-accent-dark { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #7e22ce; }
.icon-bg-secondary-dark { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }

.step-number { background: linear-gradient(135deg, var(--primary), #8b5cf6); color: white; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; position: absolute; top: -22px; left: 50%; transform: translateX(-50%); border: 4px solid rgba(255,255,255,0.8); box-shadow: 0 10px 20px rgba(0, 159, 227, 0.3); }

/* FLEET CARDS */
#armada { position: relative; overflow: hidden; padding-top: 60px; padding-bottom: 60px; background: transparent; }
#armada-3d-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.fleet-card { background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 32px; padding: 25px; box-shadow: 0 15px 35px rgba(0, 159, 227, 0.08); transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); display: flex; flex-direction: column; transform-style: preserve-3d; perspective: 1000px; will-change: transform, box-shadow; }
.fleet-card:hover { transform: translateY(-15px); border-color: rgba(0, 159, 227, 0.5); box-shadow: 0 30px 60px rgba(0, 159, 227, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.6); }
.fleet-img { height: 220px; background: radial-gradient(circle at center, rgba(255,255,255,0.7), transparent); border-radius: 24px; display: flex; align-items: center; justify-content: center; overflow: visible; margin-bottom: 25px; position: relative; transform: translateZ(20px); transition: transform 0.5s; will-change: transform; }
.fleet-card:hover .fleet-img { transform: translateZ(50px) scale(1.08); }
.fleet-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.5s ease; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.25)); }
.fleet-info h3 { font-size: 1.45rem; color: var(--text-main); margin-bottom: 15px; transform: translateZ(30px); }
.fleet-specs { list-style: none; margin-bottom: 20px; font-size: 0.9rem; color: var(--text-muted); transform: translateZ(25px); }
.fleet-specs li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(0,0,0,0.1); font-weight: 600;}
.fleet-price { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; text-align: center; background: rgba(255,255,255,0.6); padding: 15px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.9); transform: translateZ(35px); }
.fleet-price strong { font-size: 1.5rem; color: var(--primary); }
.fleet-card .btn { transform: translateZ(40px); }
.status-ready { color: #10b981; font-weight: 800; background: rgba(209, 250, 229, 0.8); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;}
.status-limited { color: #f59e0b; font-weight: 800; background: rgba(254, 243, 199, 0.8); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;}

/* SPLIT CONTENT & PROGRAMS */
.split-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; width: 100%;}
.check-list { list-style: none; margin: 30px 0; }
.check-list li { margin-bottom: 15px; position: relative; padding-left: 35px; font-weight: 600; color: #334155; }
.check-list li::before { content: '🚀'; position: absolute; left: 0; top: 0; font-size: 1.2rem; }
.highlight-text { font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); margin-top: 20px; background: rgba(224, 242, 254, 0.7); display: inline-block; padding: 12px 25px; border-radius: 16px; border: 1px dashed var(--primary-light);}

.cta-box { background: linear-gradient(135deg, rgba(0,159,227,0.9), rgba(139,92,246,0.9)); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 50px 40px; box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.4); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -20%; left: -20%; width: 250px; height: 250px; background: rgba(255,255,255,0.1); border-radius: 50%; filter: blur(30px); }
.cta-box::after { content: ''; position: absolute; bottom: -20%; right: -20%; width: 200px; height: 200px; background: rgba(255,255,255,0.1); border-radius: 50%; }

.program-card { padding: 50px 40px; border-radius: var(--radius); position: relative; overflow: hidden; transition: transform 0.4s; box-shadow: var(--shadow-soft); z-index: 1; backdrop-filter: blur(10px); will-change: transform; width: 100%; box-sizing: border-box;}
.program-card:hover { transform: translateY(-15px); }
.bg-gradient-blue { background: linear-gradient(135deg, rgba(2,132,199,0.9), rgba(59,130,246,0.9)); }
.bg-gradient-blue::before { content: '🚘'; position: absolute; right: -20px; bottom: -20px; font-size: 15rem; opacity: 0.1; transform: rotate(-15deg); }
.bg-gradient-green { background: linear-gradient(135deg, rgba(5,150,105,0.9), rgba(16,185,129,0.9)); }
.bg-gradient-green::before { content: '⚡'; position: absolute; right: 0; bottom: -20px; font-size: 15rem; opacity: 0.1; }
.program-card .badge-light { background: rgba(255,255,255,0.25); color: white; border: none; backdrop-filter: blur(10px); }
.program-card .subtitle { font-size: 1.3rem; font-weight: 800; margin-bottom: 25px; color: #f1f5f9; letter-spacing: 1px; }

.border-top-primary { border-top: 8px solid var(--primary); }
.border-top-secondary { border-top: 8px solid var(--secondary); }
.req-list { list-style: none; margin-top: 25px; }
.req-list li { margin-bottom: 20px; display: flex; align-items: flex-start; font-weight: 600; color: #334155; }
.req-num { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: var(--primary-dark); font-weight: 800; padding: 6px 12px; border-radius: 10px; margin-right: 15px; font-size: 0.95rem; flex-shrink: 0;}

/* GOOGLE MAPS REVIEWS */
.gmap-reviews-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 30px; width: 100%;}
.gmap-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.7); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; will-change: transform; width: 100%; }
.gmap-card:hover { transform: translateY(-10px); border-color: #bae6fd; box-shadow: var(--shadow-hover); }
.gmap-header { display: flex; align-items: center; margin-bottom: 15px; }
.gmap-avatar { width: 45px; height: 45px; color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; font-size: 1.2rem; margin-right: 15px; }
.gmap-name { font-weight: 700; color: var(--text-main); margin-bottom: 2px;}
.gmap-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px;}
.gmap-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-style: italic; }

/* FAQ ACCORDION */
.faq-container { max-width: 850px; margin: 0 auto; width: 100%; }
.faq-item { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(15px); margin-bottom: 20px; border-radius: 20px; box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(255,255,255,0.8); transition: border-color 0.3s; }
.faq-item:hover { border-color: #bae6fd; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 25px 30px; font-size: 1.15rem; font-weight: 700; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '＋'; font-size: 1.5rem; color: var(--primary); font-weight: 800; transition: transform 0.4s; background: rgba(224, 242, 254, 0.8); width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.faq-item.active .faq-question::after { content: '－'; transform: rotate(180deg); background: var(--primary); color: white;}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: transparent; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 30px 30px 30px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8;}

/* LOKASI & KONTAK KAMI */
.contact-wrapper { display: flex; flex-wrap: wrap; justify-content: center !important; align-items: stretch; gap: 40px; max-width: 1100px; margin: 0 auto; width: 100%;}
.contact-wrapper > div { flex: 1 1 min(100%, 450px); display: flex; flex-direction: column; width: 100%; max-width: 600px; margin: 0 auto; }
.contact-glass-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; width: 100%;}
.contact-title { font-size: 2rem; color: var(--text-main) !important; background: none !important; -webkit-background-clip: initial !important; -webkit-text-fill-color: initial !important; margin-bottom: 10px; }
.contact-desc { color: var(--text-muted); margin-bottom: 30px; font-size: 1.05rem; }
.info-item { display: flex; align-items: center; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.6); padding: 20px; border-radius: 20px; margin-bottom: 15px; transition: all 0.4s; will-change: transform; }
.info-item:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.9); box-shadow: 0 10px 20px rgba(0, 159, 227, 0.1); border-color: #bae6fd; }
.info-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #e0f2fe, #bae6fd); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-right: 20px; box-shadow: 0 10px 15px rgba(0, 159, 227, 0.1); flex-shrink: 0; transition: transform 0.4s; will-change: transform; }
.info-item:hover .info-icon { transform: scale(1.1) rotate(5deg); }
.info-text h4 { margin-bottom: 5px; color: var(--text-main); font-size: 1.15rem; }
.info-text p { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; line-height: 1.4;}
.btn-wa { background: #10b981 !important; color: white !important; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important; display: flex; align-items: center; justify-content: center; border: none !important; }
.btn-wa:hover { background: #059669 !important; box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4) !important; }

.map-glass-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius); padding: 15px; box-shadow: var(--shadow-soft); height: 100%; position: relative; width: 100%; min-height: 350px;}
.map-glass-card iframe { border-radius: 20px; width: 100%; height: 100%; min-height: 350px; filter: contrast(1.1) saturate(1.2); }
.map-overlay-badge { position: absolute; bottom: 30px; right: 30px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 50px; font-weight: 800; color: var(--primary-dark); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 1px solid white; pointer-events: none; animation: float 4s infinite ease-in-out; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

/* FOOTER & SCROLL TO TOP */
.footer { background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95)); backdrop-filter: blur(20px); color: #cbd5e1; padding: 100px 0 30px; border-top-left-radius: 60px; border-top-right-radius: 60px; margin-top: 50px; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.1);}
.footer::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: var(--primary); filter: blur(150px); opacity: 0.3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; position: relative; z-index: 1;}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 15px; }
.footer ul li a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-weight: 600; }
.footer ul li a:hover { color: var(--primary-light); padding-left: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.95rem; color: #64748b; font-weight: 500; position: relative; z-index: 1;}

.scroll-top-btn {
    position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; border-radius: 50%;
    background: #009FE3; color: #ffffff; border: none;
    font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); cursor: pointer; opacity: 0; visibility: hidden;
    transition: all 0.3s ease-in-out; z-index: 99999; will-change: transform, opacity;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.4); background: #0284c7; }

/* WHATSAPP FLOAT BUTTON */
.float-wa-btn {
    position: fixed; bottom: 115px; right: 25px; background-color: #25D366; color: #FFF;
    width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 8000; transition: all 0.3s ease; animation: pulse-wa 2s infinite;
}
.float-wa-btn:hover { transform: scale(1.1); background-color: #128C7E; color: #FFF; }
.float-wa-btn svg { width: 32px; height: 32px; fill: currentColor; }


/* ====================================================================
   SOLUSI MENU HAMBURGER & RESPONSIVITAS MOBILE
   ==================================================================== */

.hamburger-btn-mobile { 
    display: none; 
    background: rgba(0, 159, 227, 0.08); 
    border: 1px solid rgba(0, 159, 227, 0.2); 
    border-radius: 12px;
    cursor: pointer; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    gap: 5px; 
    padding: 0; 
    position: relative;
    z-index: 10000; 
    outline: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger-btn-mobile span { 
    display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s; transform-origin: center; 
}
.hamburger-btn-mobile:hover { background: rgba(0, 159, 227, 0.15); }
.hamburger-btn-mobile.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn-mobile.active span:nth-child(2) { opacity: 0; }
.hamburger-btn-mobile.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------
   RESPONSIF TABLET (Maks 992px)
   ------------------------------------------------------------- */
@media (max-width: 1200px) { .testimonial-grid-4col { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 992px) {
    .hero-content, .split-content { grid-template-columns: 1fr; }
    
    .contact-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto;
    }
    
    .enhanced-hero { padding-top: 150px; text-align: center; }
    .hero-pricing-card { margin: 0 auto 30px; }
    .cta-group { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .gmap-reviews-container { grid-template-columns: repeat(2, 1fr); }
    .map-glass-card iframe { min-height: 350px; }

    .navbar { width: calc(100% - 30px); padding: 10px 20px; border-radius: 30px; }

    .hide-on-mobile { display: none !important; }
    .hamburger-btn-mobile { display: flex; }

    .nav-links {
        display: none !important; 
        position: absolute !important; 
        top: calc(100% + 15px) !important; 
        left: 0 !important; 
        right: 0 !important; 
        background: rgba(255, 255, 255, 0.98) !important; 
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        flex-direction: column !important; 
        padding: 20px 20px 40px 20px !important; 
        border-radius: 24px !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; 
        border: 1px solid rgba(255, 255, 255, 0.9) !important;
        max-height: calc(100vh - 120px) !important; 
        overflow-y: auto !important; 
        -webkit-overflow-scrolling: touch !important; 
        z-index: 9999 !important;
    }

    .nav-links.active { 
        display: flex !important; 
        animation: menuFadeIn 0.3s ease forwards !important;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links li { width: 100%; border-bottom: 1px dashed rgba(0,0,0,0.05); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links li a { display: block; padding: 15px 10px; font-size: 1.05rem; text-align: center; color: var(--text-main); font-weight: 600;}

    /* PENGATURAN SUBMENU DROPDOWN MOBILE (TENTANG, INFORMASI) */
    .dropdown:hover .dropdown-menu { display: none; }
    .dropdown.active .dropdown-menu { 
        display: flex !important; flex-direction: column !important; position: relative !important; 
        top: 0 !important; left: 0 !important; transform: none !important; box-shadow: none !important; border: none !important; 
        background: rgba(0, 159, 227, 0.05) !important; padding: 10px !important; border-radius: 16px !important; margin-top: 10px !important;
        min-width: auto !important; opacity: 1 !important; visibility: visible !important; 
    }
}

/* -------------------------------------------------------------
   RESPONSIF SMARTPHONE (Maks 768px)
   ------------------------------------------------------------- */
@media (max-width: 768px) { 
    .logo-link { gap: 8px; max-width: calc(100% - 60px); }
    .nav-logo { height: 26px; flex-shrink: 0; }
    .logo-text { font-size: 0.85rem; line-height: 1.2; letter-spacing: -0.5px; white-space: normal; display: inline-block; max-width: 140px; }

    .hero-text { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; margin: 0 auto; }
    .hero-text h1, .hero-text p { text-align: center !important; } 
    .hero-badge-wrapper { margin: 0 auto 15px; display: flex; justify-content: center; width: 100%; }
    .hero-main-title { font-size: 1.8rem; line-height: 1.3; margin-bottom: 15px; } 
    .hero-text p { font-size: 0.95rem; margin-bottom: 25px; padding: 0 10px; line-height: 1.5; }

    .hero-pricing-card { flex-direction: column; text-align: center; justify-content: center; padding: 20px 15px; gap: 12px; width: 100%; max-width: 320px; margin: 0 auto 30px auto !important; }
    .pricing-icon { width: 50px; height: 50px; font-size: 1.8rem; margin: 0 auto; }
    .hero-pricing-card .price { font-size: 1.25rem; display: block; line-height: 1.2; margin-bottom: 5px; }
    .hero-pricing-card .period { font-size: 0.85rem; }
    .hero-pricing-card small { font-size: 0.75rem; line-height: 1.3; display: block; margin-top: 5px; }

    .cta-group { display: flex; flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; align-items: stretch; gap: 15px; justify-content: center;}
    .cta-group .btn { width: 100%; max-width: 100%; text-align: center; }
    
    .hero-dropdown { width: 100%; display: block; z-index: 999999; }
    .hero-dropdown > a.btn { width: 100%; display: block; background: #ffffff !important; } 
    .hero-dropdown-menu { position: absolute; width: 100%; text-align: center; padding: 15px; min-width: 100%; left: 0; right: 0; }

    .hero-image-container { overflow: hidden; padding-top: 15px; padding-bottom: 15px; display: flex; flex-direction: column; align-items: center;}
    .floating-stats-badge { padding: 8px 12px; }
    .floating-stats-badge strong { font-size: 0.85rem; }
    .floating-stats-badge small { font-size: 0.65rem; }
    .stat-1 { top: -10px; left: 5px; }
    .stat-2 { bottom: -10px; right: 5px; }

    .programs-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important; 
        justify-content: center !important; 
        width: 100% !important; 
        gap: 25px !important; 
    }
    .program-card, .req-card { 
        width: 100% !important; 
        max-width: 350px !important; 
        margin: 0 auto !important; 
        text-align: left; 
    }

    .testimonial-grid-4col { grid-template-columns: 1fr; }
    .gmap-reviews-container { grid-template-columns: 1fr; }
    .scroll-wrapper { padding: 0 10px; }
    .scroll-btn { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #009FE3; color: white; border: 2px solid white; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 10; cursor: pointer; font-size: 1.2rem; }
    .left-btn { left: -10px; }
    .right-btn { right: -10px; }
    .feature-card { flex: 0 0 65%; min-width: auto; } 
    .step-item { flex: 0 0 45%; min-width: auto; } 
    
    .float-wa-btn { bottom: 90px; right: 20px; width: 50px; height: 50px; }
    .float-wa-btn svg { width: 28px; height: 28px; }
    .scroll-top-btn { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 1.2rem;}

    .bg-light, .feature-card, .req-card, .about-container, .step-item, .fleet-card, .gmap-card, .contact-glass-card, .map-glass-card, .blog-text-card-compact { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}