
        :root {
            color-scheme: dark;
            --bg: #09090B;
            --card: #121218;
            --border: rgba(255,255,255,.08);
            --accent: #4F8CFF;
            --accent-hover: #3A70D6;
            --success: #23D18B;
            --warning: #FFB648;
            --danger: #FF5D5D;
            --text: #FFFFFF;
            --text-sec: rgba(255,255,255,.6);
            --radius: 18px;
            --transition: 0.3s ease;
            --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --header-h: 70px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 15px;
        }

        body.modal-open {
            overflow: hidden;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img, svg { max-width: 100%; display: block; }
        button { cursor: pointer; border: none; outline: none; background: transparent; font-family: inherit; }
        input, select, textarea { 
            width: 100%; 
            background: rgba(255,255,255,0.03); 
            border: 1px solid var(--border); 
            color: var(--text); 
            padding: 12px 16px; 
            border-radius: 12px;
            outline: none;
            transition: var(--transition);
            font-family: inherit;
        }
        input:focus, select:focus, textarea:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.05);
            box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
        }

        /* Trik agar seluruh area input dapat diklik untuk membuka kalender */
        input[type="date"]::-webkit-calendar-picker-indicator {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            z-index: 2;
        }

        /* Wrapper kustom untuk input dengan ikon */
        .input-with-icon {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .input-with-icon input {
            padding-right: 45px; /* Memberi ruang untuk ikon di kanan */
        }

        .input-with-icon svg {
            position: absolute;
            right: 16px;
            width: 20px;
            height: 20px;
            fill: var(--text-sec);
            pointer-events: none; /* Klik tembus ke input di bawahnya */
            z-index: 1;
            transition: var(--transition);
        }

        .input-with-icon:focus-within svg {
            fill: var(--accent);
        }

        select option { background: var(--card); color: var(--text); }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .flex { display: flex; }
        .grid { display: grid; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .flex-col { flex-direction: column; }
        .gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-4 { gap: 32px; }
        .text-center { text-align: center; }
        .w-full { width: 100%; }
        .hidden { display: none !important; }

        h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); background: linear-gradient(135deg, #fff, rgba(255,255,255,0.5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; }
        .text-sm { font-size: 0.875rem; }
        .text-xs { font-size: 0.75rem; }
        .text-sec { color: var(--text-sec); }
        .text-accent { color: var(--accent); }

        .glass {
            background: rgba(18, 18, 24, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
        }

        .card {
            border-radius: var(--radius);
            padding: 24px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border-color: rgba(255,255,255,0.15);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            gap: 8px;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 15px rgba(79, 140, 255, 0.3);
        }
        .btn-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(79, 140, 255, 0.5); transform: translateY(-2px); }
        .btn-outline {
            border: 1px solid var(--border);
            color: var(--text);
        }
        .btn-outline:hover { background: rgba(255,255,255,0.05); }
        
        .btn:disabled, .btn.loading {
            opacity: 0.7; pointer-events: none;
        }

        .badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .badge.tersedia { background: rgba(35,209,139,0.1); color: var(--success); border: 1px solid rgba(35,209,139,0.2); }
        .badge.disewa { background: rgba(255,182,72,0.1); color: var(--warning); border: 1px solid rgba(255,182,72,0.2); }
        .badge.booking { background: rgba(255,93,93,0.1); color: var(--danger); border: 1px solid rgba(255,93,93,0.2); }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: ripple-anim 0.6s linear;
            pointer-events: none;
        }
        @keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
        .skeleton { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; background: rgba(255,255,255,0.05); border-radius: 8px; }

        @keyframes spin { to { transform: rotate(360deg); } }
        .spinner {
            width: 20px; height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        .spinner-large { width: 40px; height: 40px; border-width: 3px; border-top-color: var(--accent); }

        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: var(--header-h);
            z-index: 100;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        header.scrolled {
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            height: 60px;
        }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
        .logo svg { width: 28px; height: 28px; fill: var(--accent); }
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { font-weight: 500; opacity: 0.7; transition: var(--transition); }
        .nav-links a:hover { opacity: 1; color: var(--accent); }
        .menu-toggle { display: none; }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: var(--header-h);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
            background: radial-gradient(circle at 20% 30%, rgba(79, 140, 255, 0.15) 0%, transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(35, 209, 139, 0.1) 0%, transparent 40%);
            filter: blur(60px);
            animation: breathe 10s infinite alternate;
        }
        @keyframes breathe { to { transform: scale(1.1); } }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            z-index: 1;
        }
        .hero-subtitle { font-size: 1.2rem; color: var(--text-sec); margin: 24px 0 40px; }
        .hero-buttons { display: flex; gap: 16px; justify-content: center; }

        .section-py { padding: 80px 0; }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card { text-align: center; padding: 32px 20px; }
        .stat-num { font-size: 2.5rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }
        .feature-card { display: flex; flex-direction: column; gap: 16px; }
        .feature-icon {
            width: 48px; height: 48px;
            background: rgba(79, 140, 255, 0.1);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--accent);
        }
        .feature-icon svg { width: 24px; height: 24px; fill: currentColor; }

        .availability-box {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            padding: 32px;
        }
        .av-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: end;
        }
        .form-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
        .form-label { font-size: 0.875rem; color: var(--text-sec); font-weight: 500; }

        .cars-filter {
            display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
            padding: 20px; border-radius: var(--radius);
        }
        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .car-card { display: flex; flex-direction: column; }
        .car-img-box {
            height: 180px;
            background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }
        .car-img-box svg.car-silhouette { width: 80%; height: auto; opacity: 0.5; fill: var(--text); transition: var(--transition); }
        .car-card:hover .car-img-box svg.car-silhouette { opacity: 0.8; transform: scale(1.05); }
        
        .car-real-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .car-card:hover .car-img-box .car-real-img {
            transform: scale(1.1);
        }
        
        .car-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .car-title { font-size: 1.2rem; font-weight: 600; }
        .car-specs { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
        .car-spec { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-sec); }
        .car-spec svg { width: 14px; height: 14px; fill: currentColor; }
        .car-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid var(--border); padding-top: 16px; }
        .car-price { font-size: 1.2rem; font-weight: 700; color: var(--accent); }
        .car-price span { font-size: 0.8rem; color: var(--text-sec); font-weight: 400; }

        .vehicle-tabs {
            display: inline-flex; background: rgba(255,255,255,0.05); 
            padding: 5px; border-radius: 14px; margin-top: 16px;
        }
        .tab-btn {
            background: transparent; color: var(--text-sec); 
            padding: 10px 24px; border-radius: 10px; font-weight: 600;
            transition: var(--transition);
        }
        .tab-btn:hover { color: #fff; }
        .tab-btn.active {
            background: var(--accent); color: #fff;
            box-shadow: 0 4px 15px rgba(79, 140, 255, 0.3);
        }

        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .form-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
        }
        .full-col { grid-column: 1 / -1; }
        .radio-group { display: flex; gap: 16px; }
        .radio-label {
            display: flex; align-items: center; gap: 8px; cursor: pointer;
            padding: 12px 16px; border: 1px solid var(--border); border-radius: 12px;
            flex: 1; justify-content: center; transition: var(--transition);
        }
        .radio-label input { display: none; }
        .radio-label:has(input:checked) { border-color: var(--accent); background: rgba(79,140,255,0.1); }
        .booking-summary { position: sticky; top: 100px; }
        .summary-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .summary-total { display: flex; justify-content: space-between; padding-top: 16px; font-size: 1.2rem; font-weight: 700; margin-top: 16px; border-top: 1px solid var(--border); }

        .toast-container {
            position: fixed; top: 20px; right: 20px; z-index: 9999;
            display: flex; flex-direction: column; gap: 10px;
        }
        .toast {
            min-width: 250px; padding: 16px; border-radius: 12px;
            background: var(--card); border: 1px solid var(--border);
            display: flex; align-items: center; gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            animation: slideInRight 0.3s forwards;
        }
        .toast.hiding { animation: slideOutRight 0.3s forwards; }
        .toast-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .toast-success .toast-icon { background: rgba(35,209,139,0.2); color: var(--success); fill: var(--success); }
        .toast-error .toast-icon { background: rgba(255,93,93,0.2); color: var(--danger); fill: var(--danger); }
        @keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

        .modal-overlay {
            position: fixed; inset: 0; z-index: 1000;
            background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity 0.3s;
            padding: 20px;
        }
        .modal-overlay.active { opacity: 1; pointer-events: auto; }
        .modal-content {
            width: 100%; max-width: 500px;
            transform: scale(0.95) translateY(20px); transition: 0.3s;
        }
        .modal-overlay.active .modal-content { transform: scale(1) translateY(0); }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
        .btn-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); transition: 0.2s; }
        .btn-close:hover { background: rgba(255,255,255,0.2); }
        .btn-close svg { width: 16px; height: 16px; fill: #fff; }

        .global-loader {
            position: fixed; inset: 0; z-index: 2000;
            background: var(--bg); display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 20px;
            transition: opacity 0.3s;
        }

        footer { border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 80px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: var(--text-sec); transition: 0.2s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-bottom { text-align: center; color: var(--text-sec); border-top: 1px solid var(--border); padding-top: 20px; font-size: 0.875rem; }

        @media (max-width: 992px) {
            .booking-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed; top: var(--header-h); left: 0; right: 0;
                background: var(--card); border-bottom: 1px solid var(--border);
                flex-direction: column; padding: 20px; gap: 20px;
                transform: translateY(-150%); opacity: 0; transition: 0.3s;
                pointer-events: none;
            }
            .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
            .menu-toggle { display: block; }
            h1 { font-size: 2rem; }
            .form-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .av-form { grid-template-columns: 1fr; }
        }
    