/* --- Gaya Umum & Variabel --- */
        :root {
            --primary-color: #0d47a1; /* Biru Tua */
            --secondary-color: #ff6f00; /* Oranye */
            --dark-color: #263238;
            --light-color: #f4f4f4;
            --text-color: #333;
            --white-color: #fff;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white-color);
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-weight: 600;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        section {
            padding: 60px 0;
        }

        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            color: #666;
        }

        /* --- Header & Navigasi --- */
        .navbar {
            background: var(--white-color);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .navbar .logo i {
            color: var(--secondary-color);
        }

        .navbar .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .navbar .nav-link {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--secondary-color);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .gambar-asp{
            width:340px;
            height:320px;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            background-color: var(--dark-color);
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/seed/car-repair-hero/1920/1080.jpg') no-repeat center center/cover;
            height: 100vh;
            color: var(--white-color);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--white-color);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #e65100;
        }

        /* --- Tentang Kami --- */
        #about {
            background: var(--light-color);
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .about-content img {
            width: 100%;
            border-radius: 10px;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        /* --- Layanan --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white-color);
            padding: 2rem;
            text-align: center;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .service-card .icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        /* Captcha */
        .captcha-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* --- PROSES PENGERJAAN (BARU) --- */
        #process {
            background: var(--light-color);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
        }
        .process-grid::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
            z-index: 1;
            display: none; /* Hide line on smaller screens */
        }
        .process-card {
            background: var(--white-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
            position: relative;
            z-index: 2;
        }
        .process-card:hover {
            transform: translateY(-10px);
        }
        .process-card .process-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .process-card .process-content {
            padding: 1.5rem;
        }
        .process-card .step-number {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white-color);
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .process-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }
		
		/* --- Tracking Section --- */
        .tracking {
            padding: 5rem 0;
            /* background: var(--light-color);*/
			background: white;
        }
        
        .tracking-form {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }

        .tracking-form .form-group {
            display: flex;
            gap: 1rem;
        }

        .tracking-form input[type="text"] {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        #tracking-result {
            margin-top: 2rem;
            padding: 1.5rem;
            background: #e8f5e9;
            border-left: 5px solid #4caf50;
            border-radius: 5px;
            display: none; /* Awalnya disembunyikan */
        }

        #tracking-result.error {
            background: #ffebee;
            border-left-color: #f44336;
        }
        
        /* --- Mengapa Memilih Kami --- */
        #why-us {
            /*background: var(--white-color);*/
			background: var(--light-color);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .feature-item .icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        .feature-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* --- Galeri --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-grid img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        /* --- Testimoni --- */
        #testimonials {
            background: var(--light-color);
        }
        .testimonial-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-card .rating {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        .testimonial-card h4 {
            color: var(--dark-color);
        }
        .testimonial-card .author-info {
            font-size: 0.9rem;
            color: #777;
        }

        /* --- Kontak --- */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--white-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .contact-info .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .contact-info .info-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        .contact-form .form-group {
            margin-bottom: 1rem;
        }
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
        }
        .contact-form textarea {
            resize: vertical;
            height: 150px;
        }

        /* --- Footer --- */
        .footer {
            background: var(--dark-color);
            color: var(--white-color);
            text-align: center;
            padding: 2rem 0;
        }
        .social-links {
            margin-bottom: 1rem;
        }
        .social-links a {
            color: var(--white-color);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: var(--secondary-color);
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.5rem 0;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white-color);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--box-shadow);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .about-content img {
                order: -1; /* Menempatkan gambar di atas di mobile */
            }

            .process-grid::after {
                display: block; /* Show line on mobile if desired, or keep hidden */
            }
			
			.tracking-form .form-group {
                flex-direction: column;
            }
        }