        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #1a1a1a;
            padding-top: 63px;
            line-height: 1.6;
        }

        @media (max-width: 767.98px) {
            body {
                padding-top: 63px;
            }
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        .navbar-brand:hover .logo-text {
            color: #4f46e5;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: #6b7280 !important;
            padding: 8px 16px !important;
            margin: 0 4px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: #1a1a1a !important;
            background: rgba(79, 70, 229, 0.05);
        }

        .nav-link.active {
            color: #4f46e5 !important;
            font-weight: 600;
            background: rgba(79, 70, 229, 0.1);
        }

        .btn-nav-cta {
            background: #4f46e5 !important;
            color: #ffffff !important;
            border: 1px solid #4f46e5;
            padding: 10px 24px !important;
            margin-left: 10px !important;
            font-weight: 500;
            border-radius: 8px;
        }

        .btn-nav-cta:hover {
            background: #4338ca !important;
            border-color: #4338ca;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 6px 10px;
            border-radius: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23%231a1a1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                border-radius: 12px;
                margin-top: 15px;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-link {
                padding: 12px 16px !important;
                margin: 4px 0;
                text-align: center;
            }

            .btn-nav-cta {
                margin-left: 0 !important;
                margin-top: 10px !important;
                text-align: center;
            }
        }

        .hero-slider {
            height: 85vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .slide-1 {
            background: url('img/nethen-background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-2 {
            background: 
                url('img/bg-2-nethen.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        @media (max-width: 768px) {
            .slide-1 {
                background-image:
                    url('img/bg\ mobile\ fix.jpg');
            }

            .slide-2 {
                background-image:
                    url('img/bg-mobile-fix.jpg');
            }
        }

        .carousel-indicators {
            bottom: 30px;
            z-index: 15;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .carousel-indicators button.active {
            background-color: #ffffff;
            transform: scale(1.2);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-stats {
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 24px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
        }

        .hero-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            border: none;
            color: #ffffff;
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-right: 15px;
            margin-bottom: 10px;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #ee5a24, #ff6b6b);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
        }

        .btn-outline-secondary {
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 14px 32px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .btn-outline-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #ffffff;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 767.98px) {
            .hero-slider {
                height: 100vh;
            }

            .hero-slide {
                height: 100vh;
                padding: 20px 0;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .btn-primary,
            .btn-outline-secondary {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
                padding: 12px 24px;
                font-size: 0.95rem;
            }

            .hero-stats {
                margin-top: 3rem;
            }

            .stat-item {
                padding: 20px 12px;
                margin-bottom: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .carousel-control-prev {
                left: 15px;
            }

            .carousel-control-next {
                right: 15px;
            }

            .carousel-indicators {
                bottom: 20px;
            }
        }

        /* Why Choose Us & Other Sections */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            font-weight: 400;
        }

        .advantage-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(79, 70, 229, 0.2);
        }

        .advantage-icon {
            margin-bottom: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .icon-container {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .icon-container.blue {
            background: rgba(59, 130, 246, 0.1);
        }

        .icon-container.red {
            background: rgba(239, 68, 68, 0.1);
        }

        .icon-container.yellow {
            background: rgba(251, 191, 36, 0.1);
        }

        .icon-container.green {
            background: rgba(16, 185, 129, 0.1);
        }

        .advantage-card:hover .icon-container {
            transform: scale(1.1);
        }

        .advantage-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .advantage-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .advantage-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
            font-weight: 400;
        }

        @media (max-width: 767.98px) {
            .advantage-card {
                padding: 30px 20px;
                margin-bottom: 1rem;
            }

            .icon-container {
                width: 100px;
                height: 100px;
            }

            .advantage-img {
                width: 60px;
                height: 60px;
            }

            .advantage-title {
                font-size: 1.1rem;
            }

            .advantage-description {
                font-size: 0.9rem;
            }
        }

        /* Motor Card Styles */
        .popular-motors,
        .complete-motors {
            background: #f8fafc;
        }

        .motor-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .motor-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .motor-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f8fafc;
        }

        .motor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .motor-card:hover .motor-image {
            transform: scale(1.05);
        }

        .motor-info {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .motor-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
        }
         /* Definisikan animasi gradien bergerak */
    @keyframes rainbow-flow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Gaya untuk tautan "DaffaWorks" */
    .creative-link {
        font-weight: 900; /* Dibuat lebih tebal */
        color: #fff;
        text-decoration: none;
        transition: transform 0.3s ease; /* Transisi untuk efek zoom */
        display: inline-block; /* Diperlukan untuk transform */
    }

    .creative-link:hover {
        transform: scale(1.1); /* Sedikit membesar saat di-hover */
        /* Terapkan gradien sebagai background */
        background: linear-gradient(to right, #ff8a00, #e52e71, #8a2be2, #0072ff, #00c6ff, #ff8a00);
        background-size: 200% auto;
        
        /* Klip background ke dalam teks */
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        
        /* Jalankan animasi */
        animation: rainbow-flow 3s linear infinite;
    }

        .motor-type {
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            flex-grow: 1;
        }

        .btn-whatsapp {
            width: 100%;
            background: #25d366;
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
        }

        .btn-whatsapp:hover {
            background: #128c7e;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        @media (max-width: 991.98px) {
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .motor-card {
                margin-bottom: 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }
        }

        /* Styles for Review Section */
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-rating .star {
            margin-right: 2px;
        }

        .review-text {
            font-size: 0.95rem;
            color: #333;
        }
        .footer-section {
            background-color: #111827;
            /* Warna gelap */
        }

        .footer-title {
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #ffffff;
        }

        .footer-text,
        .copyright-text {
            color: #9ca3af;
            /* Abu-abu terang */
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-contact li {
            margin-bottom: 12px;
            color: #9ca3af;
            display: flex;
            align-items: center;
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .social-icons .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .social-icons .social-link:hover {
            background-color: #4f46e5;
            /* Warna utama brand */
            color: #ffffff;
        }
    