/* ===== TOUR HERO ===== */
.tour-hero-bg {
    transition: background-image .6s ease-in-out;
}
.tour-hero {
    position: relative;
    margin-top: -50px;
}

.tour-hero-bg {
    height: 750px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.tour-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    color: #fff;
}

.tour-info {
    max-width: 900px;
}

.tour-destination {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.tour-hero-content .tour-title {
    font-size: 28px !important;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.tour-hero-content .tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
    font-size: 15px;
}

.tour-hero-content .tour-meta li {
    color: #fff;
    font-size: 16px;
}

.tour-hero-content .tour-price {
    font-size: 28px;
    font-weight: 700;
    color: #fb9797;
}

.tour-hero-content .tour-price del {
    font-size: 18px;
    margin-left: 10px;
    color: #ddd;
}

/* ===== THUMBNAIL GALLERY ===== */
.tour-gallery {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 10px;
}

.tour-gallery img {
    width: 180px;
    height: 100px;
    border: 1px solid #fff;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.tour-gallery img:hover {
    transform: scale(1.05);
}

/* ===== CONTENT ===== */
.tour-content {
    padding: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .tour-hero-bg {
        height: 420px;
    }

    .tour-gallery {
        position: static;
        display: flex;
        padding: 15px;
        overflow-x: auto;
        background: #fff;
    }

    .tour-gallery img {
        width: 120px;
        height: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 575px) {
    .tour-title {
        font-size: 26px;
    }

    .tour-price {
        font-size: 22px;
    }
}

/* ===== ITINERARY STICKY LAYOUT ===== */
.section-title {
    font-size: 30px;
}

.itinerary-wrap {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
}

/* ===== LEFT NAV ===== */
.itinerary-nav {
    position: sticky;
    top: 150px;
    /* tránh header sticky */
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-start;
}

.itinerary-nav-item {
    background: #00A1C0;
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.itinerary-nav-item.active {
    background: #e53935;
}

/* ===== RIGHT CONTENT ===== */
.itinerary-content-area {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.itinerary-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* header */
.itinerary-head {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #00A1C0;
    margin-bottom: 20px;
}

.itinerary-day-badge {
    background: #00A1C0;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.itinerary-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

/* text */
.itinerary-text {
    line-height: 1.8;
    color: #333;
}

/* image */
.itinerary-image img {
    margin-top: 20px;
    width: 100%;
    border-radius: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .itinerary-wrap {
        grid-template-columns: 1fr;
    }

    .itinerary-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
    }

    .itinerary-nav-item {
        min-width: 90px;
        flex-shrink: 0;
    }
}

/* ===== BODY 9 / 3 ===== */
.tour-body {
    padding: 40px 0;
}

.tour-body-grid {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 32px;
}

/* LEFT */
.tour-main {
    min-width: 0;
}

/* RIGHT */
.tour-sidebar {
    position: relative;
}

.tour-booking {
    top: 120px;
}

.booking-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.booking-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0px;
}

.booking-field label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.booking-date {
    width: 100%;
    background: #07a2bc1f;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-section {
    margin-top: 10px;
}
.booking-section select {
        background: #07a2bc1f;
            border: none;
                height: 45px;
}
.booking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.booking-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-price {
    background: #07a2bc1f;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
}

/* Nhóm số lượng */
.qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Nút + / - nhỏ lại */
.qty button {
    background: #07a2bc;
    color: #fff;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 8px;
    line-height: 1;
    padding: -10px;
}

/* Ô số lượng */
.qty-number {
    background: #07a2bc1f;
    border-radius: 8px;
    padding: 0px 8px;
    /* ↓ gọn hơn */
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 64px;
    /* ↓ nhỏ hơn */
    justify-content: center;
}

/* Input số */
.qty-number input {
    width: 22px;
    /* ↓ nhỏ hơn */
    border: none;
    background: transparent;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
    /* ↓ nhỏ hơn */
}

.qty-number input:focus {
    outline: none;
}

/* Chữ "người" */
.qty-text {
    font-weight: 600;
    font-size: 13px;
    /* ↓ nhỏ hơn */
}

.booking-total {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.booking-total strong {
    color: #fb9797;
    font-size: 22px;
}

.booking-submit {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    border-radius: 999px;
    border: none;
    background: #f29c9c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.booking-submit.disabled {
    opacity: .7;
    cursor: not-allowed;
}

.booking-date-select {
    width: 100%;
    border-radius: 10px;
    border: none;
    background: #07a2bc1f;
    cursor: pointer;
}

/* Mỗi booking-row là 1 block */
.booking-row {
    display: block;
    /* 🔑 không dùng flex nữa */
    margin-bottom: 5px;
}

/* Label luôn chiếm 1 dòng */
.booking-label {
    display: block;
    font-size: .9em;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Control (giá + +/-) nằm hàng dưới */
.booking-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-price {
    min-width: 150px;
    text-align: center;
}



/* XÓA MŨI TÊN LÊN / XUỐNG (Chrome, Edge, Safari) */
.qty-number input::-webkit-outer-spin-button,
.qty-number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-number input[type=number] {
    padding: 0px;
    margin: 0px !important;
    width: 20px;
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
}

.qty-number button {
    margin: 0px;
}



.tour-consult {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.consult-field.full {
    grid-column: 1/-1;
}

.consult-field {
    margin-bottom: -10px;
}

.consult-field label span {
    color: red;
}

.consult-submit {
    width: 100%;
    margin-top: 5px;
    background: #07a2bc;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    font-weight: 600;
}

.consult-title,
.consult-desc {
    text-align: center;
}

.consult-checkbox {
    display: flex;
    align-items: center;
    gap: 24px;
    /* khoảng cách giữa 2 option */
}

.consult-checkbox label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
}

.consult-checkbox input[type="checkbox"] {
    margin: 0;
}




