  * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
            overflow-x: hidden;
        }
        
        /* ===== NAVBAR ===== */
        .navbar-brand {
            font-weight: 700;
            color: #1a1a2e;
            font-size: 1rem;
        }
        .logo {
            height: 22px;
            width: auto;
            margin-right: 8px;
        }

        /* ===== HERO ===== */
        .hero {
            background: url('https://images.pexels.com/photos/1402787/pexels-photo-1402787.jpeg?_gl=1*24ns5j*_ga*MTg1OTAxNjc0NC4xNzcyNDMzMDQ0*_ga_8JE65Q40S6*czE3NzI0MzMwNDQkbzEkZzEkdDE3NzI0MzMwNTckajQ3JGwwJGgw') center/cover no-repeat;
            border-radius: 16px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Overlay gelap agar teks terbaca */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.45);
            border-radius: 16px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 2.5rem 1.2rem 1.5rem;
        }

        .hero h2 {
            font-size: 1.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.4rem;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }

        .hero p {
            font-size: 0.82rem;
            text-align: center;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .hero-content {
                padding: 4rem 2.5rem 2rem;
            }
            .hero h2 {
                font-size: 1.8rem;
                margin-top: 20px;
            }
            .hero p {
                font-size: 1rem;
            }
        }

        /* ===== SEARCH BOX ===== */
        .search-box {
            background: white;
            border-radius: 12px;
            padding: 0.9rem 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .search-box .form-select,
        .search-box .form-control {
            font-size: 0.85rem;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            padding: 0.5rem 0.75rem;
        }

        .search-btn {
            background: #2845D6;
            color: white;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
            padding: 0.5rem;
            border: none;
        }

        .search-btn:hover {
            background: #223CC2;
            color: white;
        }

        @media (min-width: 768px) {
            .search-btn {
                width: auto;
                padding: 0.5rem 1.5rem;
            }
        }

        /* ===== SECTIONS ===== */
        .section-title {
            font-weight: 700;
            color: #1a1a2e;
        }

        .about-img {
            width: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .category-title {
            font-weight: 700;
            color: #2845D6;
            margin-top: 2rem;
            border-left: 4px solid #2845D6;
            padding-left: 10px;
            font-size: 1rem;
        }

        /* ===== CAR CARDS ===== */
        .car-card {
            border: none;
            border-radius: 14px;
            border-left: 4px solid #2845D6;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            transition: transform 0.2s, box-shadow 0.2s;
            height: 100%;
        }

        .car-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: 10px;
        }

        .car-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .car-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: #1a1a2e;
        }

        .car-desc small {
            font-size: 0.78rem;
            color: #555;
        }

        .price-text {
            color: #48A111;
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* Mobile: 2 kolom untuk car cards */
        @media (max-width: 575px) {
            .car-grid .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        /* ===== WHY BOX ===== */
        .why-box {
            background: white;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            height: 100%;
            border-left: 3px solid #2845D6;
        }

        .why-box h6 {
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }

        .why-box p {
            font-size: 0.82rem;
            margin-bottom: 0;
            color: #555;
        }

        /* ===== BOOK BUTTON ===== */
        .btn-book {
            background: #2845D6;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.82rem;
            padding: 8px 0;
            width: 100%;
            margin-top: 10px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .btn-book:hover {
            background: #1f36b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(40,69,214,0.25);
            color: white;
        }

        .btn-book i {
            margin-right: 4px;
        }

        /* ===== FILTER RESULTS ===== */
        #filter-results-section {
            display: none;
        }

        #filter-results-section.active {
            display: block;
        }

        #section-tentang-kami.hidden,
        #section-harga.hidden {
            display: none;
        }

        .result-badge {
            background: #2845D6;
            color: white;
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .no-result {
            text-align: center;
            padding: 3rem 1rem;
            color: #888;
        }

        .no-result i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            color: #ddd;
        }

        .filter-tag {
            background: #f0f4ff;
            border: 1px solid #d0d8f5;
            border-radius: 20px;
            padding: 3px 10px;
            font-size: 0.75rem;
            color: #444;
            display: inline-block;
            margin-right: 4px;
            margin-bottom: 4px;
        }

        .btn-reset-filter {
            background: transparent;
            border: 1px solid #2845D6;
            color: #2845D6;
            border-radius: 8px;
            font-size: 0.82rem;
            padding: 4px 12px;
            white-space: nowrap;
        }

        .btn-reset-filter:hover {
            background: #2845D6;
            color: white;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 2rem 0 1.5rem;
            border-radius: 16px;
        }

        .footer-content {
            padding: 0 1.2rem;
        }

        .footer-title {
            color: white;
            font-weight: 700;
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
        }

        .footer-desc {
            color: #aaa;
        }

        .footer p {
            font-size: 0.82rem;
            margin-bottom: 0.3rem;
        }

        .footer .col-md-3 {
            margin-bottom: 1.5rem;
        }

        .social-icons a {
            color: #aaa;
            font-size: 1.3rem;
            margin-right: 10px;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: #2845D6;
        }

        /* ===== WHATSAPP FLOAT ===== */
        .wa-float {
            position: fixed;
            width: 54px;
            height: 54px;
            bottom: 15%;
            right: 16px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 26px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .wa-float:hover {
            background-color: #1ebe5d;
            transform: scale(1.1);
            color: white;
        }

        /* ===== ACCORDION MOBILE ===== */
        .accordion-button {
            font-size: 0.88rem;
            padding: 0.75rem 1rem;
        }

        .accordion-body {
            font-size: 0.83rem;
        }

        /* ===== TERMS ===== */
        .terms-section ul {
            font-size: 0.85rem;
            padding-left: 1.2rem;
        }

        .terms-section h6 {
            font-size: 0.9rem;
        }

        /* ===== CONTAINER PADDING MOBILE ===== */
        @media (max-width: 575px) {
            .container.my-4 {
                padding-left: 12px;
                padding-right: 12px;
            }

            .section-title, h4 {
                font-size: 1.05rem;
            }

            .category-title {
                font-size: 0.92rem;
            }

            /* About section images stack nicely */
            .about-img {
                height: 160px !important;
            }

            /* Why section: 2 col on mobile */
            .why-section .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        /* ===== SEARCH FORM MOBILE ===== */
        @media (max-width: 767px) {
            .search-box .row {
                gap: 0.5rem !important;
            }

            .search-box .col-md,
            .search-box .col-auto {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
/* ===== TAMBAHKAN DI AKHIR style.css ===== */

/* FIX: hero harus overflow visible agar popup kalender tidak terpotong */
.hero {
    overflow: visible !important;
}
.hero::before {
    border-radius: 16px;
    /* overlay tetap tidak memotong popup */
    pointer-events: none;
}
.hero-content {
    overflow: visible !important;
}
.search-box {
    overflow: visible !important;
    position: relative;
    z-index: 10;
}

/* ===== CUSTOM DATE PICKER ===== */
.dp-wrapper {
    position: relative;
}

.dp-trigger {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    background: white;
    font-size: 0.85rem;
    height: 38px;
}

.dp-trigger:hover {
    border-color: #2845D6;
}

/* POPUP — pakai fixed agar tidak terpotong parent manapun */
.dp-popup {
    position: relative;
    z-index: 99999;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    width: 310px;
    padding: 12px;
    border: 1px solid #e5e9ff;
    animation: dp-fadein 0.15s ease;
}

@media (max-width: 575px) {
    .dp-popup {
        width: 290px;
    }
}

@keyframes dp-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* HEADER bulan/tahun */
.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dp-month-year {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.dp-nav {
    background: #f0f4ff;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    color: #2845D6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.dp-nav:hover {
    background: #2845D6;
    color: white;
}

/* LEGENDA */
.dp-legend {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.dp-leg {
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}

.dp-leg-self {
    background: #e8f5e1;
    color: #2d6a00;
    border: 1px solid #b6dea0;
}

.dp-leg-driver {
    background: #e8eeff;
    color: #2845D6;
    border: 1px solid #b0bff5;
}

/* GRID HEADER */
.dp-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 2px;
}

.dp-day-name {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: #888;
    padding: 3px 0;
}

/* GRID BODY */
.dp-grid-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

/* CELL */
.dp-cell {
    border-radius: 8px;
    padding: 3px 1px 4px;
    text-align: center;
    cursor: pointer;
    min-height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.15s;
}

.dp-cell:not(.dp-past):not(.dp-empty):hover {
    background: #f0f4ff;
}

.dp-cell.dp-empty { cursor: default; }
.dp-cell.dp-past  { cursor: default; opacity: 0.35; }

.dp-cell.dp-today .dp-num {
    background: #2845D6;
    color: white;
    border-radius: 50%;
}

.dp-cell.dp-selected {
    background: #eef1ff;
    border: 1.5px solid #2845D6;
}
.dp-cell.dp-selected .dp-num { color: #2845D6; font-weight: 700; }

.dp-num {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-price {
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    width: 100%;
}
.dp-price-self   { color: #2d6a00; }
.dp-price-driver { color: #2845D6; }

/* FOOTER */
.dp-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.dp-btn-clear {
    background: none; border: none;
    color: #e74c3c; font-size: 0.8rem;
    cursor: pointer; font-weight: 600; padding: 0;
}
.dp-btn-clear:hover { text-decoration: underline; }

.dp-btn-today {
    background: none; border: none;
    color: #2845D6; font-size: 0.8rem;
    cursor: pointer; font-weight: 600; padding: 0;
}
.dp-btn-today:hover { text-decoration: underline; }