.booking-container {
    background-color: #ffffff;
    padding: 25px 35px;
    border-radius: 10px;
    max-width: 650px;
    width: 100%;
}

.home_banner_area {
    padding: 53px 0 53px !important;
}

h1 {
    font-weight: normal;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Step Indicator */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
    user-select: none;
}

.step {
    display: flex;
    align-items: center;
    color: #555;
    cursor: default;
}

.step.active {
    color: #f26122;
    font-weight: 600;
}

.step-number {
    border: 2px solid #666;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    background-color: transparent;
    transition: all 0.3s;
}

.step.active .step-number {
    border-color: #f26122;
    color: #f26122;
    background-color: transparent;
}

/* Form controls */
label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #080707;
}

input,
select {
    width: 100%;
    padding: 10px 12px;
    /* margin-bottom: 20px; */
    border: 1.8px solid #ffffff;
    border-radius: 4px;
    background-color: #d8d8d8;
    color: #6b6b6b;
    font-size: 14px;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    border-color: #f26122;
    outline: none;
}

.date-time-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.date-time-group input[type="date"],
.date-time-group input[type="time"] {
    flex: 1;
}

/* Optional voucher code */
.optional {
    font-size: 12px;
    color: #888;
    margin-top: -16px;
    margin-bottom: 10px;
}

/* More options link */
.more-options {
    font-size: 13px;
    color: #f26122;
    cursor: pointer;
    margin-bottom: 15px;
    display: inline-block;
    user-select: none;
}

/* Hidden extra options */
.extra-options {
    display: none;
}

/* Buttons */
.btn {
    background-color: #f26122;
    border: none;
    color: white;
    padding: 15px 20px;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover:not(:disabled) {
    background-color: #d44c06;
}

.btn:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Nav buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.nav-buttons button {
    width: 48%;
    background-color: #f26122;
    border: none;
    color: white;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-buttons button:hover {
    background-color: #d44c06;
}

.nav-buttons button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Confirmation message */
.confirmation {
    background-color: #0db87f;
    padding: 20px;
    border-radius: 8px;
    /* border: 1px solid #34850e; */
    /* color: #34850e; */
    font-weight: bold;
    text-align: center;
}

/* CARS */
.car-list {
    /* display: grid;
    grid-template-columns: 1fr;  */
    /* gap: 20px; */
    position: relative;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Efek bayangan di atas dan bawah */
.car-list::before,
.car-list::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}

.car-list::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
}

.car-list::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.car-list::-webkit-scrollbar {
  width: 8px;
}

.car-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.car-list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 8px;
}

.car-list::-webkit-scrollbar-thumb:hover {
  background: #888888;
}



.car-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

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

.car-card .content {
    padding: 15px;
}

.car-card h5 {
    margin-bottom: 10px;
}

.car-card p {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .car-list {
        /* grid-template-columns: 1fr 1fr; */
         /* 2 kolom di tablet/desktop */
    }
}

.modal {
    z-index: 1051 !important;
}
.modal-backdrop {
    z-index: 1040 !important;
}

.car-card:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

/* biar dropdown autocomplete rapi */
.suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 2000;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
    background: #fdfdfd;
    color: #312e2e;
}
.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Toast notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #f44336;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 90000;
}
.toast.show {
    opacity: 1;
}

/* Bill Summary */
.booking-summary {
    border-radius: 10px;
    overflow: hidden;
}

.booking-summary .card-body {
    padding: 1.5rem;
    background-color: #fafafa;
}

.summary-list li {
    /* margin-bottom: 0.5rem; */
    color: #34495e;
    font-size: 0.95rem;
}

.summary-list li strong {
    width: 120px;
    display: inline-block;
    color: #2c3e50;
}

.summary-list li.total {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #16a34a; /* green */
    border-top: 1px solid #ddd;
    padding-top: 0.75rem;
}
.booking-summary .summary-list li {
    font-size: 0.95rem;
}

.booking-summary .total {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.booking-summary .card-title i {
    font-size: 1.2rem;
    margin-right: 6px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
    cursor: text;
}

.tag {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 3px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.tag span {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}

.tag-input {
    border: none;
    flex: 1;
    min-width: 100px;
    font-size: 14px;
    padding: 5px;
    outline: none;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* H1 di kiri */
.header-row h1 {
    flex: 0 0 83.333%;
    /* kira-kira 10/12 */
    margin: 0;
    font-size: 1.75rem;
}

/* Wrapper tombol di kanan */
.header-row .btn-wrap {
    flex: 0 0 16.667%;
    /* kira-kira 2/12 */
    display: flex;
    justify-content: flex-end;
}

/* Tombol kecil */
.btn-success-small {
    flex: 0 0 20.667%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    background-color: #198754;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn-info-small {
    flex: 0 0 20.667%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    background-color: #1e40af;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn-default-small {
    flex: 0 0 20.667%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    background-color: #585b5a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

/* Hover */
.btn-success-small:hover {
    background-color: #157347;
}
.btn-default-small:hover {
    background-color: #474c4a;
}

/* 🔥 Efek blink lembut pada shadow */
@keyframes softBlink {
    0% {
        box-shadow: 0 0 6px rgba(25, 135, 84, 0.3);
    }

    50% {
        box-shadow: 0 0 14px rgba(25, 135, 84, 0.8);
    }

    100% {
        box-shadow: 0 0 6px rgba(25, 135, 84, 0.3);
    }
}
@keyframes softBlinkBlue {
    0% {
        box-shadow: 0 0 6px rgba(25, 82, 135, 0.3);
    }

    50% {
        box-shadow: 0 0 14px rgba(25, 67, 135, 0.8);
    }

    100% {
        box-shadow: 0 0 6px rgba(25, 74, 135, 0.3);
    }
}

.btn-success-small {
    animation: softBlink 2s ease-in-out infinite;
}
.btn-info-small {
    animation: softBlinkBlue 2s ease-in-out infinite;
}

/* Responsif */
@media (max-width: 576px) {
    .header-row h1 {
        flex: 1 1 auto;
        font-size: 1.25rem;
    }

    .header-row .btn-wrap {
        flex: 0 0 auto;
        margin-left: 0.5rem;
    }

    .btn-success-small {
        flex: 0 0 30.667%;
    }
}

/* scoll list */
.scrollable-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Scrollbar halus */
.scrollable-list::-webkit-scrollbar {
    width: 6px;
}
.scrollable-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.scrollable-list::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* === Booking Card === */
.booking-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
    border-left: 5px solid #198754; /* hijau elegan (Bootstrap success) */
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border-left-color: #0d6efd; /* biru saat hover */
}

/* Style teks di dalam card */
.booking-card .text-muted {
    font-weight: 500;
    color: #6c757d;
}
.booking-card .fw-semibold {
    font-weight: 600;
    color: #333;
}

/* Link tombol detail */
.booking-card a.btn-info-small {
    display: inline-block;
    background-color: #0d6efd;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}
.booking-card a.btn-info-small:hover {
    background-color: #0b5ed7;
}

