        /* =========================================
           VARIABLES & RESET
        ========================================= */
        :root {
            --navy: #0B3D6B;
            --navy-deep: #072D52;
            --navy-mid: #1565A8;
            --blue-light: #2196F3;
            --blue-pale: #E8F4FD;
            --accent: #0ea5e9;
            --accent-glow: rgba(14, 165, 233, 0.3);
            --white: #FFFFFF;
            --off-white: #F0F7FF;
            --text-dark: #0D1F35;
            --text-mid: #4A6B8A;
            --text-light: #8BAAC4;
            --border: rgba(11, 61, 107, 0.12);
            --shadow-sm: 0 4px 16px rgba(11, 61, 107, 0.08);
            --shadow-md: 0 12px 40px rgba(11, 61, 107, 0.15);
            --shadow-lg: 0 24px 64px rgba(11, 61, 107, 0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        .container { width: 92%; max-width: 1200px; margin: 0 auto; }

        /* =========================================
           POPUP / PROMO MODAL
        ========================================= */
        .popup-overlay {
            position: fixed; inset: 0; z-index: 9999;
            background: rgba(7, 45, 82, 0.85);
            backdrop-filter: blur(6px);
            display: flex; align-items: center; justify-content: center;
            padding: 20px;
            opacity: 0; animation: fadeInOverlay 0.5s 0.8s forwards;
        }
        @keyframes fadeInOverlay { to { opacity: 1; } }
        .popup-box {
            background: var(--white);
            border-radius: 24px;
            max-width: 520px;
            width: 100%;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: scale(0.85) translateY(20px);
            animation: popIn 0.5s 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            position: relative;
        }
        @keyframes popIn { to { transform: scale(1) translateY(0); } }
        .popup-header {
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            padding: 30px 30px 20px;
            text-align: center;
            position: relative;
        }
        .popup-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 12px;
        }
        .popup-header h2 {
            color: white;
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1.3;
        }
        .popup-header p { color: rgba(255,255,255,0.8); margin-top: 8px; font-size: 0.9rem; }
        .popup-close {
            position: absolute; top: 14px; right: 14px;
            width: 32px; height: 32px;
            background: rgba(255,255,255,0.2);
            color: white; border: none; border-radius: 50%;
            cursor: pointer; font-size: 1rem;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
        }
        .popup-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
        .popup-body { padding: 28px; }
        .popup-services {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 12px; margin-bottom: 24px;
        }
        .popup-service-item {
            display: flex; align-items: center; gap: 10px;
            background: var(--off-white);
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--navy);
        }
        .popup-service-item i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
        .popup-cta {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }
        .popup-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5); }
        .popup-note { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--text-light); }

        /* Floating Notification */
        .float-notif {
            position: fixed; bottom: 90px; left: 24px; z-index: 888;
            background: white;
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: 0 8px 30px rgba(11, 61, 107, 0.18);
            display: flex; align-items: center; gap: 12px;
            max-width: 280px;
            border-left: 4px solid #25D366;
            font-size: 0.85rem;
            animation: slideInLeft 0.5s ease;
            opacity: 0; pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .float-notif.visible { opacity: 1; pointer-events: auto; }
        @keyframes slideInLeft { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        .float-notif-icon { font-size: 1.5rem; color: #25D366; flex-shrink: 0; }
        .float-notif strong { display: block; font-weight: 700; color: var(--navy); }
        .float-notif span { color: var(--text-mid); font-size: 0.8rem; }

        /* =========================================
           HEADER
        ========================================= */
        .header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        .header.scrolled {
            box-shadow: 0 4px 24px rgba(11, 61, 107, 0.12);
            background: rgba(255, 255, 255, 0.99);
        }
        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 0;
        }
        .logo { display: flex; align-items: center; gap: 10px; }
        .logo-icon {
            width: 44px; height: 44px; border-radius: 12px;
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .logo-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
        .logo-icon-svg {
            font-size: 1.3rem;
            color: white;
        }
        .logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; }
        .logo-text span { color: var(--accent); }
        .logo-sub { font-size: 0.68rem; color: var(--text-light); font-weight: 500; display: block; line-height: 1; margin-top: 2px; }

        nav ul { display: flex; gap: 6px; align-items: center; }
        nav ul li a {
            font-size: 0.92rem; font-weight: 600;
            color: var(--text-mid);
            padding: 8px 14px; border-radius: 8px;
            transition: var(--transition);
            display: block;
        }
        nav ul li a:hover, nav ul li a.active {
            color: var(--navy); background: var(--blue-pale);
        }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 11px 24px; border-radius: 50px;
            font-weight: 700; font-size: 0.9rem;
            cursor: pointer; transition: var(--transition);
            border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            color: white;
            box-shadow: 0 8px 24px rgba(11, 61, 107, 0.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11, 61, 107, 0.45); }
        .btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
        }
        .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
        .btn-outline {
            background: transparent; color: white;
            border: 2px solid rgba(255,255,255,0.6);
            backdrop-filter: blur(5px);
        }
        .btn-outline:hover { background: white; color: var(--navy); }
        .btn-light {
            background: white; color: var(--navy);
            box-shadow: var(--shadow-md);
        }
        .btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
        .hamburger span {
            display: block; width: 24px; height: 2px;
            background: var(--navy); border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* =========================================
           HERO
        ========================================= */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero-blob {
            position: absolute; border-radius: 50%;
            filter: blur(80px); pointer-events: none;
        }
        .hero-blob-1 {
            width: 500px; height: 500px;
            background: rgba(14, 165, 233, 0.15);
            top: -150px; right: -100px;
        }
        .hero-blob-2 {
            width: 350px; height: 350px;
            background: rgba(33, 150, 243, 0.1);
            bottom: -100px; left: -80px;
        }
        .hero-inner {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
            position: relative; z-index: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(14, 165, 233, 0.2);
            border: 1px solid rgba(14, 165, 233, 0.4);
            color: #7DD3FC;
            padding: 6px 16px; border-radius: 50px;
            font-size: 0.82rem; font-weight: 600;
            margin-bottom: 20px;
        }
        .hero-badge i { font-size: 0.75rem; }
        .hero h1 {
            font-size: 3.2rem; font-weight: 800;
            color: white; line-height: 1.2;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
        }
        .hero h1 em { font-style: normal; color: #7DD3FC; }
        .hero-sub {
            color: rgba(255,255,255,0.75);
            font-size: 1.05rem; margin-bottom: 36px;
            max-width: 480px;
        }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .hero-stats {
            display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
        }
        .hero-stat {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-sm);
            padding: 14px 20px;
            backdrop-filter: blur(6px);
        }
        .hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: white; line-height: 1; }
        .hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

        .hero-visual {
            display: flex; flex-direction: column; gap: 16px;
            position: relative;
        }
        .hero-card {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius);
            padding: 20px 24px;
            backdrop-filter: blur(10px);
            display: flex; align-items: center; gap: 16px;
            transition: var(--transition);
            cursor: default;
        }
        .hero-card:hover { background: rgba(255,255,255,0.15); transform: translateX(-6px); }
        .hero-card-icon {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--blue-light));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; color: white; flex-shrink: 0;
        }
        .hero-card h4 { color: white; font-size: 0.95rem; font-weight: 700; }
        .hero-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
        .hero-card-price {
            margin-left: auto; text-align: right; flex-shrink: 0;
        }
        .hero-card-price strong { display: block; color: #7DD3FC; font-size: 0.9rem; font-weight: 700; }
        .hero-card-price span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* =========================================
           SERVICES (SEMUA KARTU JADI BIRU)
        ========================================= */
        .services { background: #f4f9fd; }

        .services-grid {
            display: flex;
            gap: 24px;
            align-items: stretch;
            overflow-x: auto;
            padding: 10px 10px 40px 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; 
        }
        .services-grid::-webkit-scrollbar {
            display: none;
        }

        /* --- BACKGROUND KARTU JADI BIRU SEMUA --- */
        .service-card {
            flex: 0 0 calc(33.333% - 16px);
            min-width: 320px;
            scroll-snap-align: start;
            background: #0b5a8c !important; /* Warna Biru Pekat Sesuai Gambar */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(11, 90, 140, 0.25);
        }
        .service-card::after { display: none !important; }

        /* --- Ikon Menyatu dengan Biru --- */
        .svc-icon {
            width: 60px; height: 60px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.15) !important; /* Transparan Putih */
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: white !important;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        .service-card:hover .svc-icon {
            background: rgba(255, 255, 255, 0.25) !important;
        }

        /* --- Teks Berubah Jadi Putih --- */
        .service-card h3 {
            font-size: 1.25rem; font-weight: 700;
            margin-bottom: 12px; color: white !important; /* Teks Putih */
        }
        
        .service-card p { 
            font-size: 0.9rem; color: rgba(255, 255, 255, 0.85) !important; /* Paragraf Putih */
            line-height: 1.6; margin-bottom: 20px;
        }
        
        /* --- Tombol Link Bawah Jadi Putih --- */
        .service-card .svc-link {
            margin-top: auto; 
            padding-top: 15px;
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 0.9rem; font-weight: 700;
            color: white !important;
            transition: all 0.3s ease;
        }
        .service-card:hover .svc-link { color: #7DD3FC !important; /* Menyala biru muda saat disentuh */ }

        /* =========================================
           FEATURED CARD (Pembeda Kartu Paling Dicari)
        ========================================= */
        .service-card.featured {
            border-bottom: 4px solid #0ea5e9 !important; /* Garis biru terang di bawah */
        }

        .service-card.featured .svc-badge {
            background: #0ea5e9 !important; 
            color: white !important; 
            font-size: 0.8rem !important;
            padding: 10px 16px !important; 
            border-radius: 8px !important; 
            font-weight: 700; 
            margin-bottom: 20px;
            display: flex !important; 
            width: 100%;
            align-items: center;
            gap: 8px;
        }

        /* --- Tombol Header Section (Booking Sekarang) --- */
        .services .btn-primary {
            background: #0b5a8c !important; 
            color: white !important;
            border-radius: 50px;
            border: none;
            box-shadow: 0 8px 20px rgba(11, 90, 140, 0.25) !important;
        }

        /* --- Responsif HP --- */
        @media (max-width: 1024px) {
            .services-grid { 
                max-width: 100%; margin: 0; padding-left: 20px; padding-right: 20px;
            }
            .service-card {
                flex: 0 0 85%; min-width: unset;
            }
        }

        /* =========================================
           STATS STRIP
        ========================================= */
        .stats-strip {
            background: white;
            padding: 50px 0;
            border-bottom: 1px solid var(--border);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        .stat-item::after {
            content: '';
            position: absolute; right: 0; top: 20%; height: 60%;
            width: 1px; background: var(--border);
        }
        .stat-item:last-child::after { display: none; }
        .stat-num {
            font-size: 2.6rem; font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            color: var(--navy); line-height: 1;
        }
        .stat-num sup { font-size: 1.2rem; }
        .stat-label { color: var(--text-mid); font-size: 0.82rem; font-weight: 600; margin-top: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
        .stat-icon { color: var(--accent); font-size: 1.5rem; margin-bottom: 8px; }

        /* =========================================
           SECTION UTILITIES
        ========================================= */
        .section { padding: 90px 0; }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--blue-pale);
            color: var(--navy-mid);
            padding: 6px 16px; border-radius: 50px;
            font-size: 0.78rem; font-weight: 700;
            letter-spacing: 1px; text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: 2.4rem; font-weight: 800;
            color: var(--navy);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .section-sub { color: var(--text-mid); font-size: 1rem; max-width: 560px; }
        .section-header-wrap {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 50px; flex-wrap: wrap; gap: 20px;
        }
        .section-header-left { flex: 1; min-width: 280px; }

/* =========================================
           SERVICES (REVISI BISA SWIPE/GESER)
        ========================================= */
        .services-grid {
            display: flex;
            gap: 24px;
            align-items: stretch;
            overflow-x: auto;
            padding: 10px 10px 35px 10px; /* Jeda bawah untuk shadow */
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; 
        }
        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 calc(33.333% - 16px); /* 3 kotak sejajar di PC */
            min-width: 320px;
            scroll-snap-align: center;
            /* Style background, border, dll biarkan tetap seperti yang sudah ada */
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        /* Posisikan tombol link selalu di bawah biar sejajar */
        .service-card .svc-link {
            margin-top: auto;
            padding-top: 18px;
        }

        /* Responsif untuk HP */
        @media (max-width: 1024px) {
            .services-grid { 
                max-width: 100%; 
                margin: 0; 
                padding-left: 5%; 
                padding-right: 5%;
            }
            .service-card {
                flex: 0 0 85%; /* Nampil 85% biar sebelahnya ngintip */
                min-width: unset;
            }
        }

        /* =========================================
           HOW IT WORKS
        ========================================= */
        .how-it-works { background: var(--off-white); }
        .steps-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 30px; position: relative;
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 36px; left: 10%; right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--navy), var(--accent));
            z-index: 0;
        }
        .step-card {
            text-align: center; position: relative; z-index: 1;
            padding: 30px 20px;
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .step-num {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            color: white;
            font-size: 1.3rem; font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            font-family: 'Space Grotesk', sans-serif;
            box-shadow: 0 8px 24px rgba(11, 61, 107, 0.35);
        }
        .step-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
        .step-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

        /* =========================================
           WHY CHOOSE US
        ========================================= */
        .why-us { background: white; }
        .why-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
        }
        .why-image-stack { position: relative; }
        .why-img-main {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .why-img-main img { width: 100%; height: 420px; object-fit: cover; }
        .why-img-badge {
            position: absolute; bottom: -20px; right: -20px;
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            color: white;
            padding: 20px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            text-align: center;
        }
        .why-img-badge strong { display: block; font-size: 2rem; font-weight: 800; }
        .why-img-badge span { font-size: 0.82rem; opacity: 0.8; }
        .why-list { display: flex; flex-direction: column; gap: 20px; }
        .why-item {
            display: flex; gap: 18px; align-items: flex-start;
            padding: 22px;
            background: var(--off-white);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .why-item:hover { border-color: var(--navy-mid); box-shadow: var(--shadow-sm); }
        .why-item-icon {
            width: 48px; height: 48px; flex-shrink: 0;
            border-radius: 12px;
            background: var(--blue-pale);
            display: flex; align-items: center; justify-content: center;
            color: var(--navy); font-size: 1.2rem;
        }
        .why-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
        .why-item p { font-size: 0.87rem; color: var(--text-mid); margin: 0; }

        /* === VARIABEL WARNA === */
        :root {
            --primary-navy: #0B3D6B;
            --secondary-navy: #1565A8;
            --accent-red: #E63946;
            --text-gray: #666666;
            --shadow-md: 0 10px 30px rgba(11, 61, 107, 0.15);
            --shadow-lg: 0 20px 40px rgba(11, 61, 107, 0.25);
        }

        /* === PRICING GRID (DIJADIKAN SLIDER) === */
        .price-grid {
            display: flex; /* Menggunakan flex agar berjajar ke samping */
            overflow-x: auto; /* Memungkinkan scroll horizontal */
            scroll-snap-type: x mandatory; /* Efek magnet saat digeser */
            gap: 20px;
            padding: 20px 10px 40px 10px; /* Padding bawah agar shadow tidak terpotong */
            align-items: stretch;
            -webkit-overflow-scrolling: touch; /* Smooth scroll di HP */
            margin-top: 20px;
        }

        /* Sembunyikan garis scrollbar agar rapi */
        .price-grid::-webkit-scrollbar {
            display: none; 
        }

        .price-card {
            /* Lebar card: Di layar PC nampilin 4 card, sisanya di-scroll */
            flex: 0 0 calc(25% - 15px); 
            min-width: 280px; /* Batas kecil agar card tidak gepeng */
            scroll-snap-align: center; /* Berhenti tepat di tengah card saat di-scroll */
            
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(11, 61, 107, 0.08);
            border: 1px solid rgba(11, 61, 107, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: auto;
        }

        .price-card:hover { 
            transform: translateY(-10px); 
            box-shadow: var(--shadow-md); 
        }

        /* === STYLING KHUSUS CARD POPULAR === */
        .price-card.popular { 
            transform: scale(1.03); 
            box-shadow: var(--shadow-lg); 
            border: 2px solid var(--primary-navy);
            z-index: 2;
        }

        .price-card.popular:hover { 
            transform: scale(1.03) translateY(-10px); 
        }

        .popular-badge {
            position: absolute; 
            top: 20px; 
            right: -35px; 
            background: #FFD700; 
            color: var(--primary-navy);
            padding: 5px 40px; 
            transform: rotate(45deg); 
            font-size: 0.8rem; 
            font-weight: 800; 
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* === HEADER CARD === */
        .price-header { 
            padding: 30px 20px; 
            text-align: center; 
            border-bottom: 1px solid #eee; 
            background: #fafafa;
        }

        .price-card.popular .price-header { 
            background: var(--primary-navy); 
            color: white; 
            border-bottom: none;
        }

        .price-header h3 { 
            font-size: 1.3rem; 
            margin-bottom: 15px;
            font-weight: 700;
        }

        .price-header .price { 
            font-size: 2.2rem; 
            font-weight: 800; 
            color: var(--primary-navy); 
            display: flex;
            justify-content: center;
            align-items: baseline;
        }

        .price-card.popular .price-header .price { 
            color: #FFD700; 
        }

        .price-header .price span { 
            font-size: 1rem; 
            color: var(--text-gray); 
            font-weight: 500;
            margin: 0 4px;
        }

        .price-card.popular .price-header .price span { 
            color: rgba(255,255,255,0.8); 
        }

        /* === BODY & LIST === */
        .price-body { 
            padding: 30px 24px; 
            display: flex; 
            flex-direction: column; 
            flex: 1; 
            background: white;
        }

        .price-list { 
            margin-bottom: 30px; 
            list-style: none;
            padding: 0;
        }

        .price-list li { 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            padding: 12px 0; 
            font-size: 0.95rem; 
            border-bottom: 1px dashed #e0e0e0;
        }

        .price-list li i { 
            color: #0ea5e9; 
            margin-right: 10px;
        }

        .price-list li span:last-child { 
            font-weight: 700; 
            color: var(--secondary-navy); 
        }

        /* Tombol selalu ada di bawah */
        .price-body .btn { 
            margin-top: auto; 
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            background: var(--primary-navy);
            color: white;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }

        .price-body .btn:hover {
            background: var(--secondary-navy);
        }

        .price-card.popular .btn {
            background: #FFD700;
            color: var(--primary-navy);
        }

        .price-card.popular .btn:hover {
            background: #e6c200;
        }

        /* === RESPONSIVE LAYOUT UNTUK SLIDER === */
        @media (max-width: 1200px) {
            .price-card { 
                flex: 0 0 calc(33.333% - 15px); /* Tablet Besar: Nampilin 3 card */
            }
            .price-card.popular { 
                transform: scale(1); /* Matikan efek scale agar rata saat digeser */
            }
            .price-card.popular:hover { 
                transform: translateY(-10px); 
            }
        }

        @media (max-width: 900px) {
            .price-card { 
                flex: 0 0 calc(50% - 10px); /* Tablet Kecil: Nampilin 2 card */
            }
        }

        @media (max-width: 640px) {
            .price-card { 
                /* HP: Nampilin 1 card penuh, sisa layanannya ngintip sedikit di pinggir (85%) */
                flex: 0 0 85%; 
                min-width: unset;
            }
        }
        /* =========================================
           SEWA AC
        ========================================= */
        .sewa-ac { background: linear-gradient(160deg, var(--navy-deep), var(--navy), var(--navy-mid)); padding: 80px 0; }
        .sewa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .sewa-text .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .sewa-text .section-title { color: white; }
        .sewa-text .section-sub { color: rgba(255,255,255,0.7); max-width: 440px; }
        .sewa-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
        .sewa-feat {
            display: flex; align-items: center; gap: 12px;
            color: rgba(255,255,255,0.85); font-size: 0.92rem; font-weight: 500;
        }
        .sewa-feat i { color: var(--accent); width: 20px; text-align: center; }
        .sewa-cards { display: flex; flex-direction: column; gap: 16px; }
        .sewa-card {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius);
            padding: 22px 26px;
            backdrop-filter: blur(8px);
            display: flex; justify-content: space-between; align-items: center;
            transition: var(--transition);
        }
        .sewa-card:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
        .sewa-card-left h4 { color: white; font-size: 1rem; font-weight: 700; }
        .sewa-card-left p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; }
        .sewa-card-price { text-align: right; }
        .sewa-card-price strong { display: block; color: #7DD3FC; font-size: 1.1rem; font-weight: 800; }
        .sewa-card-price span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

        /* =========================================
           PORTFOLIO
        ========================================= */
        .portfolio { background: white; }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 20px;
        }
        .portfolio-item {
            position: relative; border-radius: var(--radius);
            overflow: hidden; cursor: pointer;
            background: var(--navy);
        }
        .portfolio-item:first-child {
            grid-column: span 2;
        }
        .portfolio-item img {
            width: 100%; height: 300px; object-fit: cover;
            transition: transform 0.6s ease, filter 0.4s ease;
            filter: brightness(0.75);
        }
        .portfolio-item:first-child img { height: 380px; }
        .portfolio-item:hover img { transform: scale(1.08); filter: brightness(0.55); }
        .portfolio-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(7,45,82,0.9) 0%, transparent 60%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 28px;
        }
        .portfolio-overlay h4 { color: white; font-size: 1.1rem; font-weight: 700; transform: translateY(6px); transition: var(--transition); }
        .portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; transform: translateY(6px); transition: var(--transition) 0.05s; }
        .portfolio-item:hover .portfolio-overlay h4,
        .portfolio-item:hover .portfolio-overlay p { transform: translateY(0); }
        .portfolio-tag {
            position: absolute; top: 16px; left: 16px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            color: white; font-size: 0.72rem; font-weight: 600;
            padding: 5px 12px; border-radius: 50px;
            backdrop-filter: blur(4px);
        }

        /* =========================================
           TESTIMONIALS
        ========================================= */
        .testimonials { background: var(--off-white); }
        .testi-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testi-card {
            background: white;
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid var(--border);
            position: relative;
            transition: var(--transition);
        }
        .testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .testi-card::before {
            content: '\201C';
            position: absolute; top: 16px; right: 24px;
            font-size: 5rem; color: var(--blue-pale);
            font-family: serif; line-height: 1;
        }
        .stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
        .testi-text { color: var(--text-mid); font-style: italic; font-size: 0.92rem; line-height: 1.8; margin-bottom: 22px; position: relative; z-index: 1; }
        .testi-author { display: flex; align-items: center; gap: 14px; }
        .author-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 700; font-size: 1.1rem;
            flex-shrink: 0;
        }
        .author-info strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 700; }
        .author-info span { font-size: 0.78rem; color: var(--text-light); }

        /* =========================================
           FAQ
        ========================================= */
        .faq { background: white; }
        .faq-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: flex-start;
        }
        .faq-items { display: flex; flex-direction: column; gap: 14px; }
        .faq-item {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden; transition: var(--transition);
        }
        .faq-item.active { border-color: var(--navy-mid); box-shadow: var(--shadow-sm); }
        .faq-q {
            padding: 18px 20px;
            display: flex; justify-content: space-between; align-items: center;
            cursor: pointer; font-weight: 600; font-size: 0.92rem; color: var(--navy);
            gap: 16px;
        }
        .faq-q i { color: var(--text-light); transition: var(--transition); flex-shrink: 0; }
        .faq-item.active .faq-q i { transform: rotate(180deg); color: var(--navy-mid); }
        .faq-a {
            max-height: 0; overflow: hidden;
            transition: max-height 0.35s ease, padding 0.2s;
            color: var(--text-mid); font-size: 0.88rem; line-height: 1.8;
        }
        .faq-item.active .faq-a { max-height: 200px; padding: 0 20px 18px; }
        .faq-contact {
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            border-radius: var(--radius);
            padding: 40px 36px;
            color: white;
            position: sticky; top: 100px;
        }
        .faq-contact h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
        .faq-contact p { opacity: 0.75; font-size: 0.9rem; margin-bottom: 28px; }
        .faq-contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
        .faq-contact-item {
            display: flex; align-items: center; gap: 14px;
            padding: 14px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
        }
        .faq-contact-item i { color: var(--accent); font-size: 1.2rem; width: 20px; text-align: center; }
        .faq-contact-item strong { display: block; font-weight: 700; }
        .faq-contact-item span { opacity: 0.65; font-size: 0.78rem; }

        /* =========================================
           CTA BANNER
        ========================================= */
        .cta-section { background: var(--off-white); padding: 0 0 80px; }
        .cta-banner {
            background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-mid));
            border-radius: 28px;
            padding: 70px 60px;
            text-align: center;
            position: relative; overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-banner::before {
            content: '';
            position: absolute; top: -80px; right: -80px;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: rgba(14, 165, 233, 0.15);
            filter: blur(60px);
        }
        .cta-banner h2 {
            font-size: 2.4rem; font-weight: 800; color: white;
            margin-bottom: 16px;
            font-family: 'Space Grotesk', sans-serif;
            position: relative; z-index: 1;
        }
        .cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; position: relative; z-index: 1; }
        .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

        /* =========================================
           FOOTER
        ========================================= */
        .footer {
            background: var(--navy-deep);
            color: rgba(255,255,255,0.75);
            padding: 70px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-brand .logo-text { color: white; font-size: 1.4rem; }
        .footer-brand .logo-text span { color: var(--accent); }
        .footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
        .footer-brand p { font-size: 0.88rem; margin: 16px 0 24px; line-height: 1.8; }
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 38px; height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6); font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-socials a:hover { background: var(--accent); color: white; transform: translateY(-3px); }
        .footer-col h5 {
            color: white; font-size: 0.95rem; font-weight: 700;
            margin-bottom: 20px; position: relative; padding-bottom: 12px;
        }
        .footer-col h5::after {
            content: '';
            position: absolute; bottom: 0; left: 0;
            width: 32px; height: 2px;
            background: var(--accent); border-radius: 2px;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links li a {
            color: rgba(255,255,255,0.6); font-size: 0.87rem;
            transition: var(--transition);
            display: flex; align-items: center; gap: 8px;
        }
        .footer-links li a:hover { color: white; gap: 12px; }
        .footer-links li a i { font-size: 0.7rem; color: var(--accent); }
        .footer-addr {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-sm);
            padding: 14px;
            margin-bottom: 12px;
            border-left: 3px solid var(--accent);
        }
        .footer-addr h6 { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
        .footer-addr p { font-size: 0.8rem; margin: 0; }
        .badge-new {
            background: var(--accent);
            color: white; font-size: 0.6rem;
            padding: 2px 7px; border-radius: 4px;
            font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
        }
        .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.87rem; }
        .footer-contact-item i { color: var(--accent); width: 18px; text-align: center; }
        .footer-contact-item a { color: rgba(255,255,255,0.6); }
        .footer-contact-item a:hover { color: white; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 28px;
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom a { color: var(--accent); }
        .footer-bottom i { color: var(--accent); }

        /* WA Floating Button */
        .wa-float {
            position: fixed; bottom: 28px; right: 24px; z-index: 900;
            width: 58px; height: 58px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; color: white;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
            transition: var(--transition);
        }
        .wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
        .wa-float-pulse {
            position: absolute; inset: -4px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.3);
            animation: pulse-ring 2s infinite;
        }
        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* =========================================
           REVEAL ANIMATION
        ========================================= */
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* =========================================
           MOBILE NAV DRAWER
        ========================================= */
        .mobile-nav {
            position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
            background: white; z-index: 1100;
            box-shadow: -10px 0 40px rgba(11, 61, 107, 0.15);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 30px 24px;
            display: flex; flex-direction: column;
        }
        .mobile-nav.open { right: 0; }
        .mobile-nav-close {
            align-self: flex-end;
            width: 36px; height: 36px;
            background: var(--off-white);
            border: none; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 1rem; color: var(--navy);
            transition: var(--transition); margin-bottom: 20px;
        }
        .mobile-nav-close:hover { background: var(--blue-pale); }
        .mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
        .mobile-nav ul li a {
            display: block; padding: 12px 16px;
            font-size: 0.95rem; font-weight: 600; color: var(--text-mid);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .mobile-nav ul li a:hover { background: var(--blue-pale); color: var(--navy); }
        .mobile-nav-footer { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
        .mobile-overlay {
            position: fixed; inset: 0; z-index: 1050;
            background: rgba(7, 45, 82, 0.5);
            backdrop-filter: blur(4px);
            opacity: 0; pointer-events: none;
            transition: opacity 0.4s;
        }
        .mobile-overlay.show { opacity: 1; pointer-events: auto; }

        /* =========================================
           RESPONSIVE
        ========================================= */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid::before { display: none; }
            .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            nav, .header-cta { display: none; }
            .hamburger { display: flex; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 2.4rem; }
            .hero-btns { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { display: none; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2)::after { display: none; }
            .why-grid { grid-template-columns: 1fr; }
            .why-image-stack { display: none; }
            .sewa-inner { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr 1fr; }
            .portfolio-item:first-child { grid-column: span 2; }
            .testi-grid { grid-template-columns: 1fr; }
            .faq-grid { grid-template-columns: 1fr; }
            .faq-contact { display: none; }
            .cta-banner { padding: 50px 30px; }
            .cta-banner h2 { font-size: 1.8rem; }
        }

        @media (max-width: 640px) {
            .hero h1 { font-size: 1.9rem; }
            .section-title { font-size: 1.8rem; }
            .services-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .portfolio-item:first-child { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-stat { flex: 1; min-width: 120px; }
            .popup-services { grid-template-columns: 1fr; }
            .section { padding: 60px 0; }
            .cta-banner { border-radius: 20px; }
            .price-grid { max-width: 100%; }
        }

        /* =========================================
        STYLE UNTUK POSTER POPUP & TOMBOL SILANG
        ========================================= */
        .popup-poster-box {
            position: relative; 
            background: transparent;
            box-shadow: none;
            width: fit-content; /* Biar kotak membungkus gambar dengan pas */
            max-width: 420px; 
            margin: auto;
            padding: 0;
            border-radius: 20px;
            overflow: visible !important; /* Wajib biar tombol X gak kepotong */
        }

        .popup-poster-box img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 80vh; /* Batasi tinggi gambar maksimal 80% dari tinggi layar */
            border-radius: 20px;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Tombol Silang (X) warna Hitam */
        .poster-close {
            position: absolute;
            top: -12px;      /* Ditarik ke atas, tapi lebih aman gak sampai out-of-screen */
            right: -12px;    /* Ditarik ke kanan */
            width: 36px;     
            height: 36px;
            background-color: #000000; 
            color: #ffffff;            
            border: 2px solid #ffffff; 
            border-radius: 50%;        
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            z-index: 9999; 
            transition: all 0.3s ease;
        }

        /* Efek pas disorot mouse (PC) / disentuh (HP) */
        .poster-close:hover {
            background-color: #e11d48; /* Merah cerah saat disorot */
            transform: scale(1.1) rotate(90deg); 
        }

        /* Responsif untuk HP */
        @media (max-width: 640px) {
            .popup-poster-box {
                max-width: 85%; /* Kasih jarak di pinggir layar HP */
            }
            .poster-close {
                top: -10px;
                right: -10px;
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
        }
        /* =========================================
           SERVICE AREA TICKER (PITA BERJALAN)
        ========================================= */
        .service-area {
            background: linear-gradient(135deg, #0b5a8c, #072D52); /* Background biru pekat premium */
            padding: 20px 0;
            overflow: hidden;
            color: white;
        }
        .service-area-inner {
            display: flex; align-items: center; gap: 20px;
        }
        .area-label {
            background: #0ea5e9; /* Warna cyan persis kayak badge */
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
        }
        .area-ticker {
            overflow: hidden; 
            flex: 1;
            /* Tambahan efek bayangan halus di ujung kiri-kanan biar estetik */
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }
        .area-ticker-inner {
            display: flex; align-items: center;
            animation: tickerScroll 35s linear infinite; /* Kecepatan jalan teks */
            width: max-content;
        }
        /* Kalau di-hover mouse, teksnya berhenti jalan biar gampang dibaca */
        .area-ticker-inner:hover { 
            animation-play-state: paused; 
        }
        @keyframes tickerScroll { 
            from { transform: translateX(0); } 
            to { transform: translateX(-50%); } 
        }
        .area-item {
            display: inline-flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem; font-weight: 600;
            padding: 0 25px;
            white-space: nowrap; /* Kunci biar teks gak turun ke bawah */
        }
        .area-item i { 
            color: #0ea5e9; 
            font-size: 0.6rem; /* Ikon titik pemisah */
        }
        
        /* Responsif HP */
        @media (max-width: 640px) {
            .service-area-inner { gap: 15px; }
            .area-label { padding: 6px 14px; font-size: 0.75rem; }
            .area-item { font-size: 0.85rem; padding: 0 15px; }
        }
                /* === SECTION HEADER STYLING === */
        .section-header-wrap {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Ubah ke center kalau mau teksnya di tengah */
        }

        /* Styling Label Transparansi Harga */
        .section-label {
            display: inline-block;
            background: rgba(11, 61, 107, 0.1); /* Biru navy transparan */
            color: var(--primary-navy);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .section-label i {
            margin-right: 6px;
            color: var(--accent-red); /* Ikon warna merah/aksen */
        }

        /* Styling Judul */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        /* Efek Gradasi pada teks "Tanpa Biaya Kejutan" */
        .text-gradient {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Styling Paragraf */
        .section-sub {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 24px;
        }

        /* === STYLING SWIPE HINT (INDIKATOR GESER) === */
        .swipe-hint {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-navy);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        /* Animasi berdenyut untuk ikon jari */
        .pulse-icon {
            color: var(--secondary-navy);
            animation: pulse 2s infinite;
        }

        /* Animasi gerak kanan-kiri untuk ikon panah */
        .pulse-icon-right {
            color: var(--accent-red);
            animation: slideRight 1.5s infinite ease-in-out;
        }

        /* Keyframes Animasi */
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes slideRight {
            0% { transform: translateX(0); }
            50% { transform: translateX(5px); }
            100% { transform: translateX(0); }
        }

        /* Responsif untuk Layar HP */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            .section-sub {
                font-size: 1rem;
            }
            .swipe-hint {
                font-size: 0.85rem;
                width: 100%; /* Biar di HP tombol gesernya full width */
                justify-content: center;
            }
        }