    /* =====================
    RESET & GLOBAL
    ===================== */
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f8fafc;
        background-image: url("IMAGE/Background\ 1.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 900px;
        background-attachment: fixed;
        overflow-x: visible;
    }

    /* =====================
    NAVBAR
    ===================== */
    nav {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: #913131;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 40px;
        height: 95px;
        padding-top: 25px;
        padding-bottom: 25px;
    }



    .logo {
        display: flex;
        align-items: center;
        gap: 30px;
        font-size: 40px;
    }

    .logo-text-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logo-text {
        font-size: 50px;
        color: gold;
        font-weight: bold;
        line-height: 1.1;
        font-family: 'Montserrat', sans-serif;
    }

    .logo-subtext {
        font-size: 16px;
        color: whitesmoke;
        font-weight: 500;
        margin-top: 2px;
        font-family:'Montserrat', sans-serif;
        letter-spacing: 2px;
    }

    .logo img.s {
        width: 110px;
        margin-right: -20px;
        height: 110px;
    }

    .logo-text {
        font-size: 32px;
        position: relative;
        top: 6px;
    }

    /* MENU */
    .nav-menu {
        display: flex;
        gap: 25px;
        margin-top: 50px;
        margin-right: 35px;
    }

    .nav-menu a {
        color: #d6d5d1;
        text-decoration: none;
        font-family: 'poppins';
    }

    /* HAMBURGER */
    /* HAMBURGER MENU STYLING */
    .hamburger {
        display: none; /* hanya muncul di mobile */
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        z-index: 10000;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        transition: all 0.4s ease;
        transform-origin: left center;
    }

    /* ANIMASI MENU OPEN (X) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* =====================
    SECTION
    ===================== */
    section {
        padding: 40px 20px;
        scroll-margin-top: 90px;
    }

    #beranda {
        background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("IMAGE/Foto\ background\ navbar.png") center/cover no-repeat;

        color: white;
        text-align: center;

        /* INI YANG BUAT LEBAR KE BAWAH */
        min-height: 85vh;

        /* TENGAH VERTIKAL */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 20px;

        text-align: center;
        color: white;
        font-family: 'poppins', sans-serif;
    }

    #beranda h1 {
        font-size: 52px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 18px;
    }


    #beranda p {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.4;
        margin: 4px 0;
    }


    #beranda h1,
    #beranda p {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =====================
    GALERI GRID
    ===================== */
    .galeri {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        padding: 20px 0;
        justify-items: center;
    }

    /* =====================
    CARD
    ===================== */
    .car-card {
        width: 100%;
        max-width: 400px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        transition: transform 0.3s;
    }

    .car-card:hover {
        transform: translateY(-8px);
    }

    /* IMAGE */
    .car-image {
        position: relative;
        background: linear-gradient(135deg, #b91c1c, #ef4444);
        padding: 20px;
        text-align: center;
        height: 280px; /* tinggi tetap */
        display: flex;
        justify-content: center;
    }

    .car-image img {
        max-width: 260px;
        max-height: 180px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    /* BADGE */
    .badge {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        color: goldenrod;
        padding: 8px 18px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        width: 220px;
        text-align: center;
}

    /* BODY */
    .car-body {
        padding: 20px;
    }

    .car-body h3 {
        text-align: center;
        font-size: 30px;
        margin: 10px 0;
    }

    /* RATING */
    .rating {
        text-align: center;
        color: #facc15;
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* PRICE */
    .price {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .price-item {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        justify-content: center;
    }

    .amount {
        font-size: 32px;
        font-weight: bold;
        color: #ef4444;
    }

    .unit {
        font-size: 14px;
        color: #6b7280;
        white-space: nowrap;
    }

    /* BUTTON */
    .btn-book {
        display: block;
        text-align: center;
        background: #ef4444;
        color: white;
        padding: 14px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: bold;
    }

    .btn-book:hover {
        background: #dc2626;
    }

    /* =====================
    KONTAK & FOOTER
    ===================== */
    .btn-wa {
        display: inline-block;
        background-color: #25D366;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 15px;
        font-weight: bold;
    }

    footer {
        background-color: #070707;
        color: white;
        text-align: center;
        padding: 10px; /* tinggi footer lebih kecil */
    }

    footer .copyright {
        font-size: 10px; /* ukuran teks copyright */
    }

    footer .developed {
        font-size: 7px; /* ukuran teks developed lebih kecil */
        opacity: 0.8; /* opsional, biar lebih soft */
    }

    /* =====================
    ANIMATION
    ===================== */
    .fade-left {
        opacity: 0;
        transform: translateX(-150px);
        transition: 1s ease;
    }

    .fade-right {
        opacity: 0;
        transform: translateX(150px);
        transition: 1s ease;
    }

    .show {
        opacity: 1;
        transform: translateX(0);
    }



    /* TENTANG KAMI */
    .tentang {
        background-color: #fff;
        padding: 80px 20px;
}

.tentang-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;

    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .tentang-image img {
        width: 100%;
        max-width: 900px;
        border-radius: 12px;
        transform: translateX(-80px);
        margin-left: 50px;
    }

    .tentang-text {
        flex: 1;
    }

    .tentang-text h2 {
        margin-bottom: 15px;
        font-family: 'poppins', sans-serif;
        font-weight: 700;
        font-size: 36px;
        color: rgb(133, 41, 41);
    }

    .tentang-text p {
        line-height: 1.8;
        margin-bottom: 10px;
        font-family: 'poppins', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: goldenrod;
        text-align: justify;
        text-justify: inter-word;
    }


    .layanan-card img {
        width: 60px;
        margin-bottom: 20px;
    }

    .layanan-card {
        background-color: #f3f3f3;   /* warna kotak seperti gambar */
        padding: 40px 30px;
        text-align: center;
        border-radius: 10px;
    }

    #layanan {
        padding: 80px 20px;
        background-color: #fff;
    }

    .layanan-title {
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 50px;
        font-size: 36px;
        color:rgb(133, 41, 41);
    }

    .layanan-wrapper {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 10px 0 20px;
    }

    .layanan-card {
        flex: 0 0 320px; /* lebar card tetap */
        background-color: #f3f3f3;
        padding: 40px 25px;
        border-radius: 12px;
        text-align: center;
        transition: 0.3s ease;
}

    .layanan-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .layanan-card p {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        line-height: 1.6;
        color: #333;
    }

    .layanan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .icon-sopir {
        width: 60px;
        height: 60px;
    }


    /* ICON LAYANAN - BULAT + BACKGROUND */
    .layanan-card img {
        width: 110px;
        height: 110px;
        padding: 15px;
        border-radius: 50%;
        background-color: #f2f2f2;
        object-fit: contain;
        transition: all 0.3s ease;
        margin-bottom: 15px;
    }

    .layanan-card:hover img {
        transform: scale(1.15) rotate(3deg);
        background-color: #2c3e50;
    }

    /* HEADER GALERI MOBIL */
    .galeri-header {
        width: 100%;
        padding: 25px 0;
        margin-bottom: 40px;
        background-color: #7A1F1F;/* warna navbar */
    }

    .galeri-header .layanan-title {
        margin: 0;
        text-align: center;
        color: white;
    }


    /* HUBUNGI KAMI - SEPERTI BERANDA */
    .hubungi {
        background: linear-gradient(
            rgba(0,0,0,0.6),
            rgba(0,0,0,0.6)
        ),
        url("IMAGE/Foto\ background\ navbar.png") center/cover no-repeat;

        min-height: 70vh;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        color: white;
    }

    .hubungi-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        margin-bottom: 15px;
    }

    .hubungi-content p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        margin-bottom: 25px;
        font-weight: 300;
    }

    .hubungi .btn-wa {
        font-size: 16px;
        padding: 14px 28px;
        transition: all 0.3s ease;
    }

    .hubungi .btn-wa:hover {
        transform: scale(1.05);
    }


    /* FLOATING WHATSAPP */
    .wa-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9999;
    }

    /* ICON */
    .wa-btn {
        width: 60px;
        height: 60px;
        background: #f6f8f7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .wa-btn img {
        width: 32px;
    }

    /* PANEL */
    .wa-panel {
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 300px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        margin-bottom: 120px;
        margin-right: 25px;

        opacity: 0;
        transform: scale(0.8) translateY(20px);
        pointer-events: none;

        transition: all 0.35s ease;
    }

    /* ACTIVE */
    .wa-panel.active {
        opacity: 1;
        transform: scale(1) translateY(0);
        pointer-events: auto;
    }

    /* HEADER */
    .wa-header {
        background: #7A1F1F;
        color: white;
        padding: 15px;
    }

    .wa-header h4 {
        margin: 0;
        font-size: 16px;
    }

    .wa-header span {
        font-size: 13px;
        opacity: 0.9;
    }

    /* BODY */
    .wa-body {
        padding: 15px;
    }

    .wa-item {
        display: flex;
        gap: 12px;
        align-items: center;
        padding: 10px;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        transition: background 0.3s;
    }

    .wa-item:hover {
        background: #f3f3f3;
    }

    .wa-item img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transform: translateY(-9px);
    }

    .wa-btn {
        margin-bottom: 70px;
    }


    footer p.copyright {
        font-size: 10px;
        font-family: 'poppins', sans-serif;
        opacity: 0.7;
    }

    footer p.developed {
        font-size: 7px;
        opacity: 0.5;
        font-family: 'poppins', sans-serif;
    }

    .hubungi-content p {
        margin: 0;
        line-height: 1.3; /* optional */
    }

    .hubungi-content h2 {
        margin-bottom: 50px; /* jarak antara header & paragraf */
    }

/* =====================
   ANIMASI FADE IN
===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* sedikit turun sebelum muncul */
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0); /* kembali ke posisi normal */
}



    /* =====================
   MOBILE & TABLET
===================== */
@media (max-width: 768px) {

    /* =====================
       NAVBAR & HAMBURGER
    ====================== */
    .hamburger {
        display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 42px;
    height: 42px;

    padding: 10px;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);

    border-radius: 12px;

    cursor: pointer;
    z-index: 10000;

    transition: all .3s ease;
    }

    .hamburger span {
        width: 100%;
        height: 2.5px;
        background: white;
        border-radius: 10px;
        transition: all .35s ease;
    }

    .hamburger:hover {
    background: rgba(255,255,255,0.2);
}

    .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, -2px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, 2px);
}

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        max-width: 220px;
        height: 100vh;
        background: rgba(20,20,20,0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 120px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        z-index: 9999;
        transform: translateX(-100%);
        transition: 0.4s ease;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
        z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

    .nav-menu.active {
        transform: translatex(0);
        opacity: 1;
    }

    .nav-menu a {
        color: white;

    font-size: 18px;

    font-family: 'Poppins', sans-serif;

    font-weight: 500;

    letter-spacing: 0.5px;

    text-decoration: none;

    padding: 12px 15px;

    border-radius: 12px;

    width: 100%;

    transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: #ffd700;
        background: rgba(255,255,255,.15);
        transform: translateX(8px);
    }

    /* LOGO & TEXT */
    .logo img.s {
        width: 120px;
        margin-left: 0px;
    }

    .logo-text {
        font-size: 22px;
        position: relative;
        top: 0;
        text-align: center;
    }

    .logo-subtext {
        font-size: 12px;
        text-align: center;
    }

    /* =====================
       BERANDA
    ====================== */
    #beranda {
        min-height: 75vh;
        padding: 40px 15px;
    }

    #beranda h1 {
        font-size: 32px;
    }

    #beranda p {
        font-size: 16px;
    }

    /* =====================
       TENTANG KAMI
    ====================== */
    .tentang-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
        gap: 25px;
    }

    .tentang-image img {
        max-width: 100%;
        transform: translateX(0);
        border-radius: 12px;
        margin-left: 0;
    }

    /* =====================
       LAYANAN KAMI
    ====================== */
    .layanan-wrapper {
        display: grid;
        grid-template-columns: 1fr; /* 1 kolom */
        gap: 20px;
        padding: 0 15px;
    }

    .layanan-card img {
        width: 90px;
        height: 90px;
        padding: 10px;
    }

    .layanan-card h3 {
        font-size: 20px;
    }

    .layanan-card p {
        font-size: 14px;
    }

    /* =====================
       GALERI MOBIL
    ====================== */
    .galeri {
        grid-template-columns: 1fr; /* 1 kolom */
        gap: 20px;
        padding: 20px 15px;
    }

    .car-card {
        max-width: 100%;
    }

    .car-body h3 {
        font-size: 24px;
    }

    .amount {
        font-size: 26px;
    }

    /* =====================
       KONTAK / HUBUNGI KAMI
    ====================== */
    .hubungi-content h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .hubungi-content p {
        font-size: 16px;
    }

    .hubungi .btn-wa {
        font-size: 16px;
        padding: 12px 25px;
    }

    /* =====================
       FLOATING WHATSAPP
    ====================== */
    .wa-panel {
        width: 250px;
        margin-right: 15px;
    }

    .car-slider {
        height: 180px;
    }

}

.car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.car-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-book {
    margin-top: auto;
}

.car-slider {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.car-slider img {
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;
    transition: opacity 0.4s ease;
}

.car-slider img.active {
    opacity: 1;
}

/* Tombol kiri kanan */
.slider-btn {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);

    color: white;

    cursor: pointer;

    font-size: 22px;
    font-weight: bold;

    z-index: 20;

    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.45);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ======================
   DOT INDICATOR
====================== */

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 20;
}

.slider-dots span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,0.5);

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-dots span.active {
    background: white;
    transform: scale(1.3);
}

.tentang-list {
    list-style: none;
    padding-left: 30px;
    margin: 15px 0;
}

.tentang-list li {
    margin-bottom: 8px;
    color: #7b1e1e;
}

.tentang-list li::before {
    content: "- ";
    color: #7b1e1e;
    font-weight: 600;
}

.alamat-rnr {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    color: #7b1e1e;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    padding-left: 50px;
}