
        /* --- 1. RESET & VARIABLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        :root {
            --primary-blue: #0A2463;
            --primary-deep: #05102e;
            --secondary-blue: #3E92CC;
            --accent-gold: #D4AF37;
            --text-dark: #1e293b;
            --text-grey: #64748b;
            --bg-body: #f8fafc;
            --white: #ffffff;
            --shadow-soft: 0 10px 40px -10px rgba(0,64,128,0.08);
            --shadow-hover: 0 20px 50px -12px rgba(0,64,128,0.15);
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
            --gradient-blue: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
        }

        body {
            font-family: 'Inter', sans-serif; line-height: 1.7;
            color: var(--text-dark); background-color: var(--bg-body); overflow-x: hidden;
        }

        /* Scrollbar Kustom */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--secondary-blue); }

        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--primary-blue); line-height: 1.25; }
        a { text-decoration: none; transition: all 0.3s ease; }
        ul { list-style: none; }

        /* --- 2. ANIMATION UTILITIES --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }

        /* --- 3. NAVIGATION --- */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(10, 36, 99, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            padding: 1rem 5%; border-bottom: 1px solid rgba(255,255,255,0.1); transition: padding 0.3s ease;
        }
        nav.scrolled { padding: 0.8rem 5%; background: rgba(10, 36, 99, 0.95); }

        .nav-container { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
 .logo { 
            font-size: 1.6rem; 
            font-weight: 800; 
            color: var(--white); 
            display: flex; 
            align-items: center; 
            gap: 12px; /* Jarak antara gambar dan teks */
            text-decoration: none; /* Hilangkan garis bawah karena pakai tag <a> */
        }
        
        /* Mengatur ukuran gambar logo */
        .logo-img {
            height: 45px; /* Sesuaikan tinggi logo */
            width: auto;  /* Lebar menyesuaikan proporsional */
            object-fit: contain;
        }

        .logo-accent { 
            color: var(--accent-gold); 
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); 
        }      
        .nav-links { display: flex; gap: 2.5rem; }
        .nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; position: relative; }
        .nav-links a:hover { color: var(--accent-gold); }
        .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent-gold); transition: width 0.3s ease; }
        .nav-links a:hover::after { width: 100%; }

        /* --- 4. HERO SECTION --- */
        .hero {
            min-height: 100vh;
            background: radial-gradient(circle at 10% 20%, rgba(62, 146, 204, 0.2) 0%, transparent 40%),
                        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
                        linear-gradient(135deg, #0f2e75 0%, #05102e 100%);
            display: flex; align-items: center; padding: 8rem 5% 5rem; position: relative; overflow: hidden;
        }
        .bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 10s infinite ease-in-out alternate; }
        .blob-1 { width: 400px; height: 400px; background: #2a5ba8; top: -100px; left: -100px; }
        .blob-2 { width: 300px; height: 300px; background: #6b5714; bottom: -50px; right: -50px; animation-delay: -5s; }

        .hero-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; z-index: 2; width: 100%; }
        .hero-text h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
        .text-gradient { background: linear-gradient(to right, #ffffff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-tagline {
            display: inline-block; background: rgba(212, 175, 55, 0.15); color: var(--accent-gold);
            padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.3); backdrop-filter: blur(5px);
        }
        .hero-subtitle { color: #cbd5e1; font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 550px; font-weight: 300; }

        .btn { padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.4s ease; display: inline-flex; align-items: center; gap: 10px; font-size: 1rem; z-index: 1; }
        .btn-primary { background: var(--gradient-gold); color: var(--primary-blue); border: none; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5); }
        .btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
        .btn-secondary:hover { background: var(--white); color: var(--primary-blue); transform: translateY(-3px); }

        /* Hero Visual (Animated) */
        .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; animation: slideInRight 1s ease 0.5s backwards; }
        .visual-container { position: relative; width: 450px; height: 450px; display: flex; justify-content: center; align-items: center; }
        .orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.6; z-index: 0; animation: orbFloat 6s infinite alternate ease-in-out; }
        .orb-1 { width: 300px; height: 300px; background: radial-gradient(circle, var(--accent-gold), transparent); top: -20px; left: -40px; }
        .orb-2 { width: 250px; height: 250px; background: radial-gradient(circle, var(--secondary-blue), transparent); bottom: -20px; right: -40px; animation-delay: -3s; }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative; z-index: 2; width: 380px; height: 260px; padding: 20px; display: flex; flex-direction: column;
            animation: cardFloat 6s ease-in-out infinite;
        }
        .card-header { display: flex; gap: 8px; margin-bottom: 25px; }
        .dot-control { width: 12px; height: 12px; border-radius: 50%; }
        .dot-control.red { background: #FF5F56; } .dot-control.yellow { background: #FFBD2E; } .dot-control.green { background: #27C93F; }
        .chart-area { flex-grow: 1; display: flex; align-items: flex-end; justify-content: space-around; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .bar-group { display: flex; width: 100%; justify-content: space-around; height: 100%; align-items: flex-end; }
        .bar { width: 12%; background: linear-gradient(to top, var(--secondary-blue), var(--accent-gold)); border-radius: 4px; opacity: 0.9; box-shadow: 0 0 10px rgba(62, 146, 204, 0.3); height: var(--h); animation: barGrow 2s infinite alternate ease-in-out; animation-delay: var(--d); }
        .card-meta { margin-top: 15px; } .meta-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 8px; }
        
        .floating-badge { position: absolute; background: rgba(10, 36, 99, 0.85); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); padding: 10px 15px; border-radius: 12px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 3; animation: badgeFloat 5s ease-in-out infinite; }
        .badge-top { top: -20px; right: -30px; animation-delay: 0.5s; }
        .badge-bottom { bottom: -20px; left: -30px; animation-delay: 1s; }
        .badge-icon { font-size: 1.5rem; }
        .badge-text span { font-size: 0.7rem; color: #ccc; text-transform: uppercase; }
        .badge-text strong { font-size: 0.9rem; color: var(--white); }

        .wave-separator { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); }
        .wave-separator svg { position: relative; display: block; width: calc(133% + 1.3px); height: 100px; }
        .wave-separator .shape-fill { fill: var(--white); }

        /* --- 5. SECTIONS COMMON --- */
        section { padding: 7rem 5%; position: relative; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
        .section-title { font-size: 2.5rem; margin-bottom: 1rem; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; display: inline-block; }
        .section-subtitle { color: var(--text-grey); font-size: 1.1rem; position: relative; display: inline-block; }
        .section-subtitle::after { content: ''; display: block; width: 40px; height: 3px; background: var(--accent-gold); margin: 15px auto 0; border-radius: 10px; }

        /* --- 6. ABOUT (Fixed 2x2 Grid) --- */
        .about-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        .stat-card { background: var(--white); padding: 2.5rem 1.5rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s; position: relative; overflow: hidden; }
        .stat-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -10px rgba(10,36,99,0.15); border-color: var(--accent-gold); }
        .stat-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--secondary-blue), var(--accent-gold)); transform: scaleX(0); transition: transform 0.4s ease; }
        .stat-card:hover::after { transform: scaleX(1); }
        .stat-number { font-size: 3rem; font-weight: 800; font-family: 'Montserrat', sans-serif; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; display: block; }
        .stat-label { font-size: 0.95rem; color: var(--text-grey); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

        .about-features li { margin-bottom: 1rem; padding-left: 2.5rem; position: relative; font-weight: 500; }
        .about-features li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; background: rgba(212, 175, 55, 0.2); color: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; }

        /* --- 7. SERVICES (Kartu sebagai Link) --- */
        .services-section { background: #f0f4f8; position: relative; }
        .services-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
        
        /* Style untuk Kartu Servis (baik div maupun a) */
        .service-card { 
            background: var(--white); padding: 3rem 2rem; border-radius: 24px; transition: all 0.4s; 
            border: 1px solid rgba(255,255,255,0.8); box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
            display: block; /* Agar tag 'a' memenuhi area */
            text-decoration: none; color: inherit; /* Reset style link default */
            cursor: pointer;
        }
        .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
        .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
        .service-card:hover::after { transform: scaleX(1); }
        .service-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); color: var(--primary-blue); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.5rem; transition: all 0.5s ease; }
        .service-card:hover .service-icon { background: var(--gradient-blue); color: var(--white); transform: rotateY(180deg); }
        
        /* Read More link di dalam kartu */
        .read-more {
            display: inline-block; margin-top: 1rem; font-size: 0.9rem; font-weight: 600; color: var(--secondary-blue);
            opacity: 0; transform: translateX(-10px); transition: all 0.3s ease;
        }
        .service-card:hover .read-more { opacity: 1; transform: translateX(0); }

        /* --- 8. TESTIMONIALS SLIDER --- */
        .testimonials-section { background: var(--white); background-image: radial-gradient(#e5e7eb 1px, transparent 1px); background-size: 30px 30px; }
        .testimonial-slider-wrapper { max-width: 900px; margin: 0 auto; position: relative; overflow: hidden; padding: 20px 0 50px; }
        .testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; }
        .testimonial-slide { min-width: 100%; padding: 0 1rem; display: flex; justify-content: center; }
        .testimonial-card-single { background: rgba(255,255,255,0.9); border: 1px solid rgba(226, 232, 240, 0.8); border-radius: 30px; padding: 4rem 3rem; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1); text-align: center; max-width: 850px; width: 100%; backdrop-filter: blur(10px); }
        .stars { color: var(--accent-gold); font-size: 1.4rem; margin-bottom: 1.5rem; letter-spacing: 3px; }
        .testimonial-quote { font-size: 1.3rem; font-style: italic; color: var(--primary-deep); margin-bottom: 2.5rem; line-height: 1.6; }
        .client-avatar-lg { width: 60px; height: 60px; background: var(--gradient-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 0.5rem; }
        .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.3s; z-index: 10; }
        .slider-btn:hover { background: var(--primary-blue); color: var(--white); }
        .prev-btn { left: 0; } .next-btn { right: 0; }
        .slider-dots { display: flex; justify-content: center; gap: 12px; margin-top: 2.5rem; }
        .dot { width: 12px; height: 12px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.4s; }
        .dot.active { background: var(--primary-blue); width: 30px; border-radius: 10px; }

        /* --- 9. WHY CHOOSE (2x3 Grid) --- */
        .why-choose { background: #0f172a; color: var(--white); padding: 8rem 5%; position: relative; overflow: hidden; }
        .why-choose::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(10,36,99,0.4) 0%, transparent 50%); animation: rotate 30s linear infinite; }
        .why-grid-fixed { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; position: relative; z-index: 2; }
        .why-card { text-align: center; }
        .why-icon { font-size: 2.5rem; margin: 0 auto 1.5rem; width: 80px; height: 80px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; transition: all 0.4s; }
        .why-card:hover .why-icon { background: var(--accent-gold); color: var(--primary-blue); transform: rotate(10deg) scale(1.1); }
        .why-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.25rem; }
        .why-card p { color: #94a3b8; font-weight: 300; }

        /* --- 10. CTA SECTION --- */
        .cta-section { padding: 8rem 5%; background: var(--bg-body); }
        .cta-container { max-width: 1000px; margin: 0 auto; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); padding: 5rem; border-radius: 40px; box-shadow: 0 30px 80px -20px rgba(10, 36, 99, 0.15); text-align: center; border: 1px solid #fff; }

        /* --- 11. FOOTER (4 COLS WITH MAP) --- */
        footer { background: #020617; color: #94a3b8; padding: 6rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-bottom: 4rem; }
        .footer-section h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-section p { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.6; }
        .footer-section a { color: #94a3b8; display: block; margin-bottom: 0.8rem; transition: color 0.3s; }
        .footer-section a:hover { color: var(--accent-gold); transform: translateX(5px); display: inline-block; }
        .social-links { display: flex; gap: 15px; margin-top: 1.5rem; }
        .social-link { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: background 0.3s; }
        .social-link:hover { background: var(--accent-gold); }
        .footer-map iframe { width: 100%; height: 200px; border-radius: 15px; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; }

        /* --- KEYFRAMES & RESPONSIVE --- */
        @keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 30px); } }
        @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(20px, -20px) scale(1.1); } }
        @keyframes cardFloat { 0%, 100% { transform: translateY(0) rotateX(2deg); } 50% { transform: translateY(-15px) rotateX(-2deg); } }
        @keyframes barGrow { 0% { height: 20%; opacity: 0.5; } 100% { height: var(--h); opacity: 1; } }
        @keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

        @media (max-width: 1024px) {
            .footer-content { grid-template-columns: repeat(2, 1fr); }
            .hero-text h1 { font-size: 3rem; }
            .why-grid-fixed { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { margin-top: 3rem; }
            .visual-container { transform: scale(0.85); }
            .nav-links, .slider-btn { display: none; }
            .why-grid-fixed { grid-template-columns: 1fr; }
            .about-content { grid-template-columns: 1fr; }
            .about-stats { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: 1fr; }
            .cta-container { padding: 3rem 1.5rem; }
        }
    