.booking-steps {
    list-style: none;
    padding: 0;
}

.booking-steps li {
    padding: 10px 20px;
    border-radius: 30px;
    background: #f3f8f6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-steps li.active {
    background: var(--gotur-base);
    color: #fff;
}

.booking-steps li.done {
    background: var(--gotur-primary);
    color: #fff;
}

.booking-step {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar Header */
.sidebar-header {
    background: #164E36;
    /* hijau tua hangat */
    color: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

/* Info Box */
.tour-info-box {
    background: #f9faf9;
    border: 1px solid #e1e7e1;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #333;
}

.tour-info-box p {
    margin-bottom: 6px;
}

/* Warning Badge */
.booking-warning {
    background: #fff4d6;
    color: #b45309;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* Price Box */
.price-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 15px;
}

.price-box h4 {
    font-weight: 600;
}

/* Card wrapper */
.avail-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6eee6;
}

/* Header hijau hangat */
.avail-card__header {
    background: var(--gotur-base, #089640);
    color: #fff;
    padding: 14px 16px;
}

.avail-card__title {
    margin: 0;
    font-weight: 700;
    letter-spacing: .2px;
}

/* Form controls: rapi + nyaman */
.sidebar-two__form__control {
    margin-bottom: 14px;
}

.sidebar-two__form__control .form-select,
.sidebar-two__form__control .form-control {
    height: 44px;
    border-radius: 10px;
}

.sidebar-two__form__control .input-group-text {
    border-radius: 10px 0 0 10px;
}

/* Divider halus */
.availability-divider {
    height: 1px;
    background: #eef2ee;
    margin: 8px 0 12px;
}

/* Status available setelah cek */
.availability-status {
    display: none;
    margin-top: 10px;
    background: #e6f4ea;
    color: #166534;
    border: 1px solid #b7e0c2;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.availability-show #availStatus {
    display: block;
}

/* Info box & price (selaras sebelumnya) */
.tour-info-box {
    background: #f9faf9;
    border: 1px solid #e1e7e1;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #333;
}

.tour-info-box p {
    margin-bottom: 6px;
}

.booking-warning {
    background: #fff4d6;
    color: #b45309;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
}

.price-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 15px;
}

.price-box h4 {
    font-weight: 600;
}

/* Loading state untuk tombol gotur */
.gotur-btn.btn--loading {
    opacity: .9;
    pointer-events: none;
    position: relative;
}

.gotur-btn.btn--loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    vertical-align: -3px;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Title */
.avail-card__title {
    font-size: 16px;
    font-weight: 600;
    background: #164E36;
    /* hijau hangat */
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
    margin: 0 0 16px;
}

/* Form fields clean style */
.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #222;
}

.form-field .form-select,
.form-field .form-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

/* Info & price boxes */
.tour-info-box {
    background: #f9faf9;
    border: 1px solid #e1e7e1;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
}

.price-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 14px;
}

.booking-warning {
    background: #fff4d6;
    color: #b45309;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
}

.booking-step {
    margin-bottom: 2rem;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.pickup-box {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    overflow: hidden;
    /* biar rapi */
    border: 1px solid transparent;
    /* invisible border awal */
}

/* Hover effect: shadow + angkat */
.pickup-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    /* transform: translateY(-3px); */
}

/* Border dashed animasi via pseudo-element */
.pickup-box::after {
    content: "";
    position: absolute;
    inset: 0;
    /* full size */
    /* border: 2px solid #164E36; */
    border-radius: 8px;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.3s ease;
    pointer-events: none;
    /* biar gak ganggu klik */
}

.pickup-box:hover::after {
    opacity: 1;
    transform: scale(1);
    /* masuk ke ukuran normal */
}

.summary-box {
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.summary-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    transform: translateY(-3px);
}

.pickup-box,
.payment-box {
    background: #fff;
}