 body {
        font-family: 'Poppins', sans-serif;
    }

    .hero {
        background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center center/cover no-repeat;
        height: 90vh;
        display: flex;
        align-items: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .card:hover {
        transform: translateY(-5px);
        transition: 0.3s;
    }

    .footer {
        background: #111;
        color: white;
        padding: 20px 0;
    }

    .btn-wa {
        background-color: #25D366;
        color: white;
    }

    .btn-wa:hover {
        background-color: #1ebe5d;
        color: white;
    }

    .hero-slide {
        height: 90vh;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .wa-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        border-radius: 50%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transition: 0.3s;
    }

    .wa-float:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
    }

    .unit-mobil {
        background: #f5f5f5;
    }

    .sub-title {
        color: #25D366;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .car-img {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .shape-bg {
        position: absolute;
        width: 250px;
        height: 300px;
        background: #25D366;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        border-radius: 10px;
    }

    .feature-item {
        display: flex;
        align-items: start;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .feature-item i {
        color: white;
        background: #25D366;
        padding: 10px;
        border-radius: 6px;
        margin-right: 10px;
    }

    /* CTA SECTION */
    .cta-section {
        background: #f5f5f5;
        padding: 80px 10%;
    }

    .cta-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .cta-left h2 {
        font-size: 42px;
        font-weight: 700;
        color: #333;
    }

    .underline {
        width: 70px;
        height: 4px;
        background: #25D366;
        margin-top: 15px;
    }

    .cta-right {
        max-width: 500px;
        color: #555;
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-boxes {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .cta-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 20px;
        flex: 1;
        min-width: 280px;
        display: flex;
        gap: 20px;
        align-items: flex-start;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .cta-box:hover {
        transform: translateY(-5px);
    }

    .cta-box.active {
        background: #25D366;
        color: white;
    }

    .cta-box.active p {
        color: white;
    }

    .icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: white;
    }

    .icon.dark {
        background: black;
        color: white;
    }

    .cta-box h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .cta-box p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cta-header {
            flex-direction: column;
            gap: 20px;
        }

        .cta-left h2 {
            font-size: 30px;
        }

        .cta-boxes {
            flex-direction: column;
        }
    }

    /* SERVICES SECTION */
    .services-section {
        background: #000;
        padding: 100px 10%;
        color: white;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title span {
        color: #25D366;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 40px;
        margin-top: 15px;
    }

    .services-wrapper {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        background: #111;
        border: 2px solid #25D366;
        width: 350px;
        overflow: hidden;
        transition: 0.4s;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(242, 140, 40, 0.4);
    }

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .service-content {
        padding: 30px;
        text-align: center;
    }

    .service-content h3 {
        color: #25D366;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .service-content p {
        font-size: 15px;
        margin-bottom: 25px;
        color: #ddd;
    }

    .btn-book {
        display: inline-block;
        background: #25D366;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

    .btn-book:hover {
        background: white;
        color: #25D366;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .services-wrapper {
            flex-direction: column;
            align-items: center;
        }

        .service-card {
            width: 100%;
            max-width: 400px;
        }

        .section-title h2 {
            font-size: 28px;
        }

		
    }

	/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #f5f5f5;
    padding: 100px 10%;
    text-align: center;
}

.section-title span {
    color: #f28c28;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 38px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.testimonial-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote {
    font-size: 60px;
    color: #f28c28;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stars {
    color: #f5b301;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

