* { margin:0; padding:0; box-sizing:border-box; font-family:'Plus Jakarta Sans',sans-serif; }
        :root {
            --primary: #dc2626;
            --primary-dark: #991b1b;
            --primary-light: #fee2e2;
            --accent: #ef4444;
            --dark: #0a0a0a;
            --black: #000000;
            --gray: #525252;
            --light: #f5f5f5;
            --white: #ffffff;
            --success: #16a34a;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
            --radius: 16px;
            --radius-sm: 10px;
        }
        body { background: var(--light); color: var(--dark); overflow-x: hidden; line-height: 1.6; }

        .text-stroke-white {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
        }

        /* NAVBAR */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--primary);
            transition: all 0.3s ease;
        }
        .navbar.scrolled { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2); }
        .nav-container {
            max-width: 1280px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between;
            height: 74px;
        }
        .logo {
            display: flex; align-items: center; gap: 12px;
            font-size: 1.35rem; font-weight: 900;
            color: var(--dark); text-decoration: none;
        }
        .logo-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.3rem;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
            border: 2px solid var(--dark);
        }
        .logo-text { display: flex; flex-direction: column; line-height: 1; }
        .logo-text .line1 { font-size: 0.95rem; font-weight: 800; color: var(--dark); letter-spacing: 0.5px; }
        .logo-text .line2 { font-size: 0.95rem; font-weight: 900; color: var(--primary); letter-spacing: 0.5px; }
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: var(--dark);
            font-weight: 700; font-size: 0.9rem;
            transition: color 0.2s; position: relative;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }
        .nav-links a.active::after {
            content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
            height: 3px; background: var(--primary); border-radius: 3px;
        }
        .nav-actions { display: flex; align-items: center; gap: 12px; }
        .btn {
            padding: 10px 20px; border-radius: var(--radius-sm);
            font-weight: 800; font-size: 0.85rem;
            cursor: pointer; transition: all 0.2s;
            border: 2px solid transparent;
            display: inline-flex; align-items: center; gap: 8px;
            text-decoration: none;
        }
        .btn-outline { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
        .btn-outline:hover { background: var(--primary); color: white; }
        .btn-primary {
            background: var(--primary); color: white;
            border: 2px solid var(--primary-dark);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }
        .btn-primary:hover {
            background: var(--primary-dark); transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
        }
        .mobile-menu-btn {
            display: none; background: var(--primary);
            border: 2px solid var(--primary-dark);
            font-size: 1.2rem; color: white; cursor: pointer;
            width: 42px; height: 42px; border-radius: 10px;
            align-items: center; justify-content: center;
        }

        /* HERO */
        .hero {
            margin-top: 74px; position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1c1917 40%, #7f1d1d 100%);
            min-height: 620px; display: flex; align-items: center;
            overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 900px; height: 900px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -30%; left: -10%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-container {
            max-width: 1280px; margin: 0 auto; padding: 60px 24px;
            position: relative; z-index: 2; width: 100%;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary); border: 2px solid var(--white);
            padding: 8px 18px; border-radius: 50px;
            color: white; font-size: 0.8rem; font-weight: 800;
            margin-bottom: 24px; letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
        }
        .hero h1 {
            font-size: 3.4rem; font-weight: 900; color: white;
            line-height: 1.1; margin-bottom: 20px;
            max-width: 750px; letter-spacing: -1px;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.5);
        }
        .hero h1 .highlight {
            color: var(--primary);
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7), 0 0 20px rgba(220, 38, 38, 0.6);
        }
        .hero p {
            color: #e5e5e5; font-size: 1.08rem;
            max-width: 580px; margin-bottom: 36px; font-weight: 500;
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.5);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
        }

        /* SEARCH BOX */
        .search-box {
            background: white; border-radius: var(--radius);
            padding: 24px; box-shadow: var(--shadow-xl);
            max-width: 950px; border: 3px solid var(--dark);
        }
        .search-fields {
            display: grid; grid-template-columns: 1fr 1fr 1fr auto;
            gap: 12px; align-items: end;
        }
        .search-field label {
            display: block; font-size: 0.72rem; font-weight: 800;
            color: var(--dark); margin-bottom: 6px;
            text-transform: uppercase; letter-spacing: 0.8px;
        }
        .search-field select {
            width: 100%; padding: 12px 14px;
            border: 2px solid var(--dark); border-radius: var(--radius-sm);
            font-size: 0.9rem; font-weight: 600;
            background: white; outline: none;
            font-family: inherit;
        }
        .search-field select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
        }
        .search-btn { padding: 12px 28px; height: 46px; }

        /* HERO STATS */
        .hero-stats { display: flex; gap: 40px; margin-top: 36px; }
        .stat-item h3 {
            font-size: 1.9rem; font-weight: 900; color: white;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
        }
        .stat-item p {
            font-size: 0.85rem; color: #d4d4d4;
            font-weight: 600;
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.6);
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
        }

        /* SECTION */
        .section { max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
        .section-header {
            display: flex; align-items: flex-end; justify-content: space-between;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: 2.1rem; font-weight: 900; color: var(--dark);
            margin-bottom: 8px; letter-spacing: -0.5px;
        }
        .section-header h2 span { color: var(--primary); }
        .section-header p { color: var(--gray); font-size: 0.95rem; font-weight: 500; }
        .section-header .line {
            width: 70px; height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--dark));
            border-radius: 5px; margin-top: 12px;
        }
        .see-all {
            color: var(--primary); font-weight: 800; font-size: 0.9rem;
            text-decoration: none; display: flex; align-items: center; gap: 6px;
            transition: gap 0.2s; padding: 8px 16px;
            border: 2px solid var(--primary); border-radius: 10px;
        }
        .see-all:hover { gap: 10px; background: var(--primary); color: white; }

        /* CATEGORY */
        .categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
        .category-card {
            background: white; border-radius: var(--radius);
            padding: 24px 16px; text-align: center;
            cursor: pointer; transition: all 0.3s;
            border: 2px solid var(--dark);
        }
        .category-card:hover {
            border-color: var(--primary); transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(220, 38, 38, 0.2);
            background: var(--primary-light);
        }
        .category-icon {
            width: 56px; height: 56px; margin: 0 auto 12px;
            background: var(--dark); border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: white;
            transition: all 0.3s; border: 2px solid var(--primary);
        }
        .category-card:hover .category-icon {
            background: var(--primary); border-color: var(--dark);
            transform: rotate(-5deg) scale(1.1);
        }
        .category-card h4 {
            font-size: 0.9rem; font-weight: 800; color: var(--dark);
        }
        .category-card p {
            font-size: 0.75rem; color: var(--gray);
            margin-top: 2px; font-weight: 600;
        }

        /* CAR CARDS */
        .cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .car-card {
            background: white; border-radius: var(--radius);
            overflow: hidden; transition: all 0.3s;
            border: 2px solid var(--dark);
        }
        .car-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25);
            border-color: var(--primary);
        }
        .car-image {
            position: relative; height: 200px;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; border-bottom: 3px solid var(--dark);
            background: #fee2e2;
        }
        .car-image img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s;
        }
        .car-card:hover .car-image img { transform: scale(1.05); }
        .car-placeholder { font-size: 4rem; color: var(--dark); opacity: 0.25; }
        .car-badges {
            position: absolute; top: 12px; left: 12px;
            display: flex; gap: 6px;
        }
        .badge {
            padding: 5px 12px; border-radius: 6px;
            font-size: 0.7rem; font-weight: 900;
            text-transform: uppercase; letter-spacing: 0.5px;
            border: 2px solid var(--dark);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        }
        .badge-hot { background: var(--primary); color: white; }
        .badge-new { background: var(--success); color: white; }
        .badge-featured { background: var(--dark); color: white; }
        .car-favorite {
            position: absolute; top: 12px; right: 12px;
            width: 38px; height: 38px; background: white;
            border-radius: 50%; display: flex;
            align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.2s;
            border: 2px solid var(--dark); color: var(--gray);
        }
        .car-favorite:hover { color: var(--primary); transform: scale(1.1); }
        .car-body { padding: 20px; }
        .car-body h3 {
            font-size: 1.05rem; font-weight: 800;
            margin-bottom: 6px; color: var(--dark);
        }
        .car-location {
            display: flex; align-items: center; gap: 4px;
            font-size: 0.8rem; color: var(--gray);
            margin-bottom: 14px; font-weight: 600;
        }
        .car-location i { color: var(--primary); font-size: 0.75rem; }
        .car-specs {
            display: flex; gap: 14px; margin-bottom: 16px;
            padding-bottom: 16px; border-bottom: 2px dashed #e5e5e5;
            flex-wrap: wrap;
        }
        .car-spec {
            display: flex; align-items: center; gap: 6px;
            font-size: 0.76rem; color: var(--dark); font-weight: 600;
        }
        .car-spec i { color: var(--primary); font-size: 0.75rem; }
        .car-footer {
            display: flex; align-items: center; justify-content: space-between;
        }
        .car-price {
            font-size: 1.15rem; font-weight: 900; color: var(--primary);
        }
        .car-price small {
            font-size: 0.7rem; font-weight: 600;
            color: var(--gray); display: block;
        }
        .car-btn {
            padding: 8px 16px; font-size: 0.8rem;
            border-radius: 8px; background: var(--dark);
            color: white; border: 2px solid var(--dark);
            font-weight: 800; cursor: pointer;
            transition: all 0.2s; font-family: inherit;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .car-btn:hover {
            background: var(--primary); border-color: var(--primary);
            transform: translateY(-1px);
        }

        /* FEATURES */
        .features-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1c1917 60%, #7f1d1d 100%);
            padding: 80px 24px; position: relative; overflow: hidden;
        }
        .features-section::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        .features-container { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
        .features-header { text-align: center; margin-bottom: 56px; }
        .features-header h2 {
            font-size: 2.1rem; font-weight: 900; color: white;
            margin-bottom: 12px;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
        }
        .features-header h2 span {
            color: var(--primary);
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
        }
        .features-header p {
            color: #d4d4d4; max-width: 500px; margin: 0 auto;
            font-weight: 500;
            -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.5);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .feature-card {
            background: white; border: 2px solid var(--dark);
            border-radius: var(--radius); padding: 32px 24px;
            text-align: center; transition: all 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(220, 38, 38, 0.3);
            border-color: var(--primary);
        }
        .feature-icon {
            width: 64px; height: 64px; margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: white;
            border: 2px solid var(--dark);
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
        }
        .feature-card h4 {
            color: var(--dark); font-size: 1rem;
            font-weight: 800; margin-bottom: 8px;
        }
        .feature-card p {
            color: var(--gray); font-size: 0.82rem; line-height: 1.6;
        }

        /* CTA */
        .cta-section { max-width: 1280px; margin: 0 auto; padding: 0 24px 80px; }
        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 24px; padding: 56px;
            display: flex; align-items: center; justify-content: space-between;
            position: relative; overflow: hidden;
            border: 3px solid var(--dark);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
        }
        .cta-box::before {
            content: ''; position: absolute; top: -50%; right: -10%;
            width: 400px; height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        .cta-content { position: relative; z-index: 2; }
        .cta-content h2 {
            font-size: 1.9rem; font-weight: 900; color: white;
            margin-bottom: 12px;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
        }
        .cta-content p {
            color: #fee2e2; font-size: 1rem; max-width: 500px;
            font-weight: 500;
        }
        .cta-actions { display: flex; gap: 12px; position: relative; z-index: 2; }
        .btn-white {
            background: white; color: var(--primary);
            border: 2px solid var(--dark);
        }
        .btn-white:hover {
            background: var(--dark); color: white;
            transform: translateY(-2px);
        }

        /* FOOTER */
        footer {
            background: var(--dark); color: #d4d4d4;
            padding: 64px 24px 0;
            border-top: 4px solid var(--primary);
        }
        .footer-container { max-width: 1280px; margin: 0 auto; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px; padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand .logo { color: white; margin-bottom: 16px; }
        .footer-brand .logo-text .line1 { color: white; }
        .footer-brand p {
            font-size: 0.85rem; line-height: 1.7;
            margin-bottom: 20px; font-weight: 500;
        }
        .social-links { display: flex; gap: 10px; }
        .social-link {
            width: 40px; height: 40px; border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex; align-items: center; justify-content: center;
            color: #d4d4d4; text-decoration: none;
            transition: all 0.2s; font-size: 0.9rem;
            border: 2px solid transparent;
        }
        .social-link:hover {
            background: var(--primary); color: white;
            transform: translateY(-3px); border-color: white;
        }
        .footer-col h4 {
            color: white; font-size: 0.9rem; font-weight: 900;
            margin-bottom: 20px; text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul a {
            color: #d4d4d4; text-decoration: none;
            font-size: 0.85rem; transition: color 0.2s;
            font-weight: 500;
        }
        .footer-col ul a:hover { color: var(--primary); padding-left: 4px; }
        .contact-item {
            display: flex; gap: 12px; margin-bottom: 14px;
            font-size: 0.85rem; font-weight: 500;
        }
        .contact-item i { color: var(--primary); margin-top: 3px; width: 16px; }
        .footer-bottom {
            padding: 24px 0; display: flex;
            align-items: center; justify-content: space-between;
            font-size: 0.8rem; font-weight: 500;
        }
        .footer-bottom a {
            color: #d4d4d4; text-decoration: none; margin-left: 20px;
        }
        .footer-bottom a:hover { color: var(--primary); }

        /* CHAT WIDGET */
        .chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
        .chat-btn {
            width: 60px; height: 60px; border-radius: 50%;
            background: var(--primary); color: white;
            border: 3px solid var(--dark); font-size: 1.5rem;
            cursor: pointer; box-shadow: 0 8px 24px rgba(220, 38, 38, 0.5);
            transition: all 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .chat-btn:hover {
            transform: scale(1.1) rotate(-5deg);
            background: var(--primary-dark);
        }

        /* RESPONSIVE */
        @media (max-width: 1023px) {
            .hero h1 { font-size: 2.5rem; }
            .categories { grid-template-columns: repeat(3, 1fr); }
            .cars-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 1023px) {
            .nav-links, .nav-actions { display: none; }
            .mobile-menu-btn { display: flex; }
            .nav-links.mobile-open {
                display: flex; flex-direction: column;
                position: absolute; top: 74px; left: 0; right: 0;
                background: white; padding: 20px; gap: 16px;
                box-shadow: var(--shadow-lg);
                border-bottom: 3px solid var(--primary);
            }
            .hero h1 { font-size: 2rem; }
            .search-fields { grid-template-columns: 1fr 1fr; }
            .search-fields .search-btn { grid-column: span 2; }
            .hero-stats { gap: 24px; }
            .stat-item h3 { font-size: 1.4rem; }
            .categories { grid-template-columns: repeat(2, 1fr); }
            .cars-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
            .section-header h2 { font-size: 1.5rem; }
            .cta-box { flex-direction: column; text-align: center; padding: 36px 24px; gap: 24px; }
            .cta-actions { flex-direction: column; width: 100%; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .footer-bottom a { margin: 0 8px; }
        }
/* ============================================================
   MENU DRAWER — SOLID BACKGROUND (Firefox & Chrome fix)
   Force semua properti biar konsisten di semua browser
   ============================================================ */

.nav-links.mobile-open,
.nav-links.menu-open,
.mbj-mobile-drawer {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15) !important;
  isolation: isolate;
  z-index: 99999 !important;
}

/* Drawer item — solid */
.nav-links.mobile-open li,
.nav-links.menu-open li {
  background: transparent !important;
}

.nav-links.mobile-open a,
.nav-links.menu-open a,
.mbj-mobile-drawer a {
  background-color: #f9fafb !important;
  color: #0a0a0a !important;
  border: 2px solid #e5e7eb !important;
  display: block !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.nav-links.mobile-open a.active,
.nav-links.menu-open a.active {
  background-color: #fee2e2 !important;
  color: #dc2626 !important;
  border-color: #dc2626 !important;
}

/* Overlay — force solid transparan gelap */
.mbj-drawer-overlay,
.nav-links-overlay {
  background: rgba(0, 0, 0, 0.5) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Logo di dalam header mobile — force solid */
.navbar .logo,
.mbj-mobile-drawer .logo {
  background-color: transparent !important;
}

/* Header drawer (tombol close + logo) */
.mbj-drawer-header,
.nav-links.mobile-open .drawer-header {
  background: #ffffff !important;
  border-bottom: 2px solid #dc2626 !important;
}

/* Firefox fix: drawer flex support */
@supports (-moz-appearance: none) {
  .nav-links.mobile-open,
  .nav-links.menu-open,
  .mbj-mobile-drawer {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
}
