/* Tour detail page – Alveera professional layout */
:root {
    --td-gold: #c59341;
    --td-gold-light: #d4a853;
    --td-navy: #1b3e5f;
    --td-navy-light: #2a5580;
    --td-muted: #6b7c8f;
    --td-border: #e8edf2;
    --td-bg: #ffffff;
    --td-shadow: 0 8px 32px rgba(27, 62, 95, 0.1);
}

.tour-details-page {
    background: var(--td-bg);
    padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(2rem, 4vw, 2.5rem);
}

.tour-details-page .td-hero-meta {
    display: none;
}

.tour-details-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.tour-details-main-content {
    width: 100%;
    min-width: 0;
    padding-right: 0;
}

/* Gallery */
.td-hero-gallery {
    margin-bottom: 1.75rem;
}

.td-gallery-main-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    background: #dce3ea;
    box-shadow: var(--td-shadow);
}

.td-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease;
}

.td-view-all-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--td-navy);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
}

.td-view-all-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.td-gallery-main-wrap .tour-details-discount-badge {
    top: 16px;
    right: 16px;
}

.td-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.65rem;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.td-thumb {
    flex: 0 0 88px;
    width: 88px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    opacity: 0.75;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.td-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.td-thumb:hover,
.td-thumb.active {
    opacity: 1;
    border-color: var(--td-gold);
    transform: translateY(-2px);
}

.td-hero-meta {
    margin-top: 1.25rem;
}

.td-hero-meta .tour-details-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--td-navy);
    margin: 0 0 0.65rem;
    text-shadow: none;
    line-height: 1.25;
}

.td-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.td-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--td-border);
    color: var(--td-navy);
    font-size: 0.82rem;
    font-weight: 600;
}

.td-hero-chip i {
    color: var(--td-gold);
    font-size: 0.8rem;
}

.td-hero-chip.td-tag {
    background: rgba(197, 147, 65, 0.12);
    border-color: rgba(197, 147, 65, 0.35);
    color: var(--td-navy);
}

/* Lightbox */
.td-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10200;
    background: rgba(15, 30, 45, 0.92);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.td-lightbox.open {
    display: flex;
}

.td-lightbox-inner {
    position: relative;
    width: min(100%, 960px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.td-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
}

.td-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.td-lightbox-main {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-lightbox-main img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.td-lightbox-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.td-lightbox-prev,
.td-lightbox-next {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.td-lightbox-prev:hover,
.td-lightbox-next:hover {
    background: var(--td-gold);
    color: var(--td-navy);
}

.td-lightbox-counter {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
}

.td-lightbox-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0;
}

.td-lightbox-strip button {
    flex: 0 0 72px;
    height: 52px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
}

.td-lightbox-strip button.active {
    border-color: var(--td-gold);
    opacity: 1;
}

.td-lightbox-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav tabs */
.tour-details-nav-tabs {
    border: none;
    background: #fff;
    border-radius: 14px;
    padding: 0.4rem;
    margin-bottom: 1rem;
    box-shadow: var(--td-shadow);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.25rem;
}

.tour-details-nav-tabs .nav-link {
    border: none !important;
    border-radius: 12px !important;
    color: var(--td-muted) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.65rem 1rem !important;
    white-space: nowrap;
}

.tour-details-nav-tabs .nav-link:hover {
    color: var(--td-navy) !important;
    background: rgba(197, 147, 65, 0.08);
}

.tour-details-nav-tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light)) !important;
}

.tour-details-nav-tabs .nav-link.active::after {
    display: none;
}

/* Sections */
.tour-details-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--td-border);
    box-shadow: var(--td-shadow);
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
}

.tour-details-section-header {
    background: linear-gradient(135deg, #fafbfc, #f4f7fa);
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--td-border);
}

.tour-details-section-title {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--td-navy);
}

.tour-details-section-title i {
    color: var(--td-gold);
}

.tour-details-section-content {
    padding: clamp(0.9rem, 2vw, 1.25rem);
}

/* Package Overview */
.td-overview-wrap,
.td-hotel-wrap {
    padding: clamp(1rem, 2.5vw, 1.35rem) !important;
}

.td-overview-lead {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.85rem;
    border-left: 3px solid var(--td-gold);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(135deg, #faf6ef, #f8fafc);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--td-navy);
}

.td-overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.td-overview-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    background: #f8fafc;
    border: 1px solid var(--td-border);
    border-radius: 12px;
    min-width: 0;
}

.td-overview-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light));
    color: var(--td-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.td-overview-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--td-muted);
    line-height: 1.2;
}

.td-overview-stat-value {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td-navy);
    line-height: 1.35;
    word-break: break-word;
}

.td-overview-body {
    font-size: 0.86rem;
    line-height: 1.7;
    color: var(--td-muted);
}

.td-overview-body p {
    margin: 0 0 0.65rem;
}

.td-overview-body p:last-child {
    margin-bottom: 0;
}

.td-overview-body ul,
.td-overview-body ol {
    margin: 0.35rem 0 0.65rem;
    padding-left: 1.15rem;
}

.td-overview-body li {
    margin-bottom: 0.3rem;
}

.td-overview-body strong {
    color: var(--td-navy);
    font-weight: 700;
}

.td-overview-empty {
    margin: 0;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--td-muted);
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed var(--td-border);
}

/* Hotel Details */
.td-hotel-section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.35rem;
}

.td-hotel-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    width: 100%;
}

.td-hotel-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(197, 147, 65, 0.14);
    border: 1px solid rgba(197, 147, 65, 0.35);
    color: var(--td-navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.td-hotel-section-sub {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--td-muted);
}

.td-hotel-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.35rem);
}

.td-hotel-card {
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    gap: 0;
    border: 1px solid var(--td-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.td-hotel-card:hover {
    border-color: rgba(197, 147, 65, 0.4);
    box-shadow: 0 8px 24px rgba(27, 62, 95, 0.08);
}

.td-hotel-media {
    position: relative;
    min-height: 160px;
    background: #e8edf2;
}

.td-hotel-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
}

.td-hotel-index {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(197, 147, 65, 0.92);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.td-hotel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(27, 62, 95, 0.88);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.td-hotel-body {
    padding: 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.td-hotel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
}

.td-hotel-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--td-navy);
    line-height: 1.3;
}

.td-hotel-stars {
    display: flex;
    gap: 2px;
    font-size: 0.72rem;
    color: var(--td-gold);
}

.td-hotel-stars .td-star-off {
    opacity: 0.2;
}

.td-hotel-address {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--td-muted);
}

.td-hotel-address i {
    color: var(--td-gold);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.td-hotel-desc {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--td-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.15rem;
}

.td-hotel-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(27, 62, 95, 0.06);
    border: 1px solid var(--td-border);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--td-navy);
}

.td-hotel-tag i {
    color: var(--td-gold);
    font-size: 0.6rem;
}

/* Itinerary roadmap */
.td-itinerary-wrap {
    padding-top: 0.5rem !important;
}

.td-itinerary-roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.td-roadmap-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 0.85rem;
    position: relative;
}

.td-roadmap-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.35rem;
}

.td-roadmap-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light));
    border: 2px solid var(--td-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 62, 95, 0.2);
    flex-shrink: 0;
    z-index: 1;
}

.td-roadmap-node-inner {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
}

.td-roadmap-connector {
    flex: 1;
    width: 2px;
    min-height: 24px;
    margin: 4px 0;
    background: linear-gradient(180deg, var(--td-gold-light), var(--td-border));
    border-radius: 2px;
}

.td-roadmap-card {
    background: #fff;
    border: 1px solid var(--td-border);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.td-roadmap-item.is-open .td-roadmap-card {
    border-color: rgba(197, 147, 65, 0.45);
    box-shadow: 0 6px 20px rgba(27, 62, 95, 0.08);
}

.td-roadmap-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: none;
    background: linear-gradient(135deg, #fafbfc, #f6f8fb);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.td-roadmap-toggle:hover {
    background: linear-gradient(135deg, #f4f7fa, #eef2f6);
}

.td-roadmap-toggle-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.td-roadmap-day-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--td-gold);
}

.td-roadmap-day-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--td-navy);
    line-height: 1.35;
}

.td-roadmap-chevron {
    color: var(--td-muted);
    font-size: 0.75rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.td-roadmap-item.is-open .td-roadmap-chevron {
    transform: rotate(180deg);
    color: var(--td-gold);
}

.td-roadmap-body {
    padding: 0 0.9rem 0.85rem;
    border-top: 1px solid var(--td-border);
    background: #fff;
}

.td-roadmap-activities {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
}

.td-roadmap-activities li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--td-muted);
    border-bottom: 1px dashed rgba(232, 237, 242, 0.9);
}

.td-roadmap-activities li:last-child {
    border-bottom: none;
}

.td-roadmap-activities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--td-gold);
}

.tour-details-discount-badge {
    background: linear-gradient(135deg, var(--td-gold), var(--td-gold-light));
    color: var(--td-navy);
}

/* Inclusions & Exclusions */
.td-ix-wrap,
.td-policies-wrap {
    padding: clamp(0.75rem, 2vw, 1rem) !important;
}

.td-ix-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.td-ix-card {
    border-radius: 14px;
    border: 1px solid var(--td-border);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.td-ix-card--included {
    border-top: 3px solid #2d8a4e;
}

.td-ix-card--excluded {
    border-top: 3px solid #c44d4d;
}

.td-ix-card-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--td-border);
}

.td-ix-card--included .td-ix-card-head {
    background: linear-gradient(135deg, #f3faf5, #edf7f0);
}

.td-ix-card--excluded .td-ix-card-head {
    background: linear-gradient(135deg, #fdf6f6, #fceeee);
}

.td-ix-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.td-ix-card--included .td-ix-card-icon {
    background: #2d8a4e;
    color: #fff;
}

.td-ix-card--excluded .td-ix-card-icon {
    background: #c44d4d;
    color: #fff;
}

.td-ix-card-title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--td-navy);
    line-height: 1.2;
}

.td-ix-card-count {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--td-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.td-ix-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.65rem 0.65rem;
    max-height: 320px;
    overflow-y: auto;
}

.td-ix-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.35rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--td-muted);
    border-radius: 8px;
    transition: background 0.15s ease;
}

.td-ix-list-item:hover {
    background: rgba(27, 62, 95, 0.04);
}

.td-ix-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.td-ix-bullet--yes {
    background: rgba(45, 138, 78, 0.12);
    color: #2d8a4e;
}

.td-ix-bullet--no {
    background: rgba(196, 77, 77, 0.12);
    color: #c44d4d;
}

.td-ix-empty {
    margin: 0;
    padding: 1rem 0.85rem;
    font-size: 0.82rem;
    color: var(--td-muted);
}

/* Policies & Terms */
.td-policy-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.td-policy-item {
    border: 1px solid var(--td-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.td-policy-item[open] {
    border-color: rgba(197, 147, 65, 0.4);
    box-shadow: 0 4px 16px rgba(27, 62, 95, 0.06);
}

.td-policy-summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(135deg, #fafbfc, #f6f8fb);
    transition: background 0.2s ease;
}

.td-policy-summary::-webkit-details-marker {
    display: none;
}

.td-policy-summary:hover {
    background: linear-gradient(135deg, #f4f7fa, #eef2f6);
}

.td-policy-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light));
    color: var(--td-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.td-policy-title {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td-navy);
    line-height: 1.35;
    min-width: 0;
}

.td-policy-chevron {
    font-size: 0.7rem;
    color: var(--td-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.td-policy-item[open] .td-policy-chevron {
    transform: rotate(180deg);
    color: var(--td-gold);
}

.td-policy-body {
    padding: 0.65rem 0.85rem 0.8rem;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--td-muted);
    border-top: 1px solid var(--td-border);
}

.td-policy-body p {
    margin: 0 0 0.5rem;
}

.td-policy-body p:last-child,
.td-policy-body ul:last-child,
.td-policy-body ol:last-child {
    margin-bottom: 0;
}

.td-policy-body ul,
.td-policy-body ol {
    margin: 0.35rem 0 0.5rem;
    padding-left: 1.1rem;
}

.td-policy-body li {
    margin-bottom: 0.25rem;
}

.td-policy-empty {
    text-align: center;
    padding: 1.5rem 1rem;
    color: var(--td-muted);
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed var(--td-border);
}

.td-policy-empty i {
    font-size: 1.5rem;
    color: #cdd5df;
    margin-bottom: 0.5rem;
    display: block;
}

.td-policy-empty p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Tour highlights chips */
.td-highlights-block {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--td-border);
}

.td-highlights-heading {
    margin: 0 0 0.6rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--td-navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.td-highlights-heading i {
    color: var(--td-gold);
    font-size: 0.8rem;
}

.td-highlights-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.td-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.3;
}

.td-highlight-chip i {
    color: var(--td-gold);
    font-size: 0.65rem;
}

/* Booking sidebar */
.tour-details-booking-sidebar {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    position: sticky;
    top: 100px;
}

.modern-booking-card {
    border-radius: 16px;
    border-color: var(--td-border);
    box-shadow: var(--td-shadow);
    overflow: visible;
}

.booking-header {
    background: linear-gradient(135deg, #faf6ef, #f0f4f8);
    padding: 16px 18px 14px !important;
}

.price-container {
    align-items: center !important;
}

.current-price {
    color: var(--td-navy);
    font-size: 28px !important;
    width: 100%;
    margin-top: 2px;
}

.per-person {
    margin-bottom: 8px !important;
}

.booking-buttons {
    padding: 12px 16px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.btn-book-now,
.btn-enquire {
    width: 100% !important;
    min-width: 0 !important;
    padding: 11px 6px !important;
    font-size: 11px !important;
    letter-spacing: 0.2px !important;
    border-radius: 10px !important;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.btn-book-now {
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light)) !important;
}

.btn-enquire {
    border: 2px solid var(--td-gold) !important;
    color: var(--td-navy) !important;
    background: #fff !important;
}

.btn-enquire:hover {
    background: var(--td-gold) !important;
    color: var(--td-navy) !important;
    border-color: var(--td-gold) !important;
}

.tour-info,
.package-includes,
.help-section {
    padding: 14px 16px !important;
}

.tour-info .info-item {
    align-items: flex-start;
}

.tour-info .info-item-body {
    min-width: 0;
}

.package-includes .includes-title {
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    color: var(--td-navy) !important;
    margin-bottom: 0.65rem !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-includes .includes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
}

.package-includes .include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.package-includes .include-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, rgba(27, 62, 95, 0.08), rgba(27, 62, 95, 0.04)) !important;
    color: var(--td-navy) !important;
    border: 1px solid var(--td-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.package-includes .include-item:hover .include-icon {
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light)) !important;
    color: var(--td-gold) !important;
    border-color: var(--td-navy);
}

.package-includes .include-text {
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    color: var(--td-muted) !important;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
}

.emi-info {
    align-items: flex-start !important;
}

.emi-info span {
    flex: 1;
    min-width: 0;
}

/* Reviews */
.td-reviews-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.td-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #faf6ef, #f4f7fa);
    border: 1px solid var(--td-border);
    border-radius: 14px;
}

.td-reviews-score {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.td-reviews-score-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--td-navy);
    line-height: 1;
}

.td-reviews-stars {
    display: flex;
    gap: 2px;
    color: var(--td-gold);
    font-size: 0.85rem;
}

.td-reviews-count {
    font-size: 0.78rem;
    color: var(--td-muted);
    font-weight: 600;
}

.td-reviews-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--td-gold);
    border-radius: 999px;
    background: #fff;
    color: var(--td-navy);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.td-reviews-write-btn:hover {
    background: rgba(197, 147, 65, 0.12);
    transform: translateY(-1px);
}

.td-review-form-panel {
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--td-border);
    border-radius: 14px;
}

.td-review-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.td-review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.td-review-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.td-review-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td-navy);
}

.td-review-label span {
    color: #c44d4d;
}

.td-review-input,
.td-review-textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--td-border);
    border-radius: 10px;
    font-size: 0.88rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.td-review-input:focus,
.td-review-textarea:focus {
    outline: none;
    border-color: var(--td-gold);
    box-shadow: 0 0 0 3px rgba(197, 147, 65, 0.15);
}

.td-review-textarea {
    resize: vertical;
    min-height: 72px;
    font-family: inherit;
}

.td-review-rating-pick {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.td-review-rating-pick input {
    display: none;
}

.td-review-star {
    font-size: 1.35rem;
    color: #dde3ea;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

.td-review-star:hover,
.td-review-star:hover ~ .td-review-star,
.td-review-star.is-active {
    color: var(--td-gold);
}

.td-review-field-file {
    position: relative;
}

.td-review-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.td-review-file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: 1px dashed var(--td-border);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--td-muted);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.td-review-file-label:hover {
    border-color: var(--td-gold);
    color: var(--td-navy);
}

.td-review-file-preview img {
    margin-top: 0.5rem;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
}

.td-review-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--td-navy), var(--td-navy-light));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.td-review-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(27, 62, 95, 0.25);
}

.td-review-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.td-review-message {
    display: none;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.td-review-message.is-success {
    background: #edf7f0;
    color: #1e6b3a;
    border: 1px solid #c8e6d0;
}

.td-review-message.is-error {
    background: #fdf0f0;
    color: #9b2c2c;
    border: 1px solid #f5c6c6;
}

.td-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.td-review-card {
    padding: 0.85rem;
    background: #fff;
    border: 1px solid var(--td-border);
    border-radius: 14px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.td-review-card:hover {
    border-color: rgba(197, 147, 65, 0.35);
    box-shadow: 0 4px 16px rgba(27, 62, 95, 0.07);
}

.td-review-card-top {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 0.6rem;
    align-items: center;
    margin-bottom: 0.55rem;
}

.td-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--td-border);
    grid-row: 1 / 3;
}

.td-review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.td-review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.td-review-date {
    font-size: 0.72rem;
    color: var(--td-muted);
}

.td-review-card-stars {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    gap: 1px;
    font-size: 0.68rem;
    color: var(--td-gold);
}

.td-review-card-stars .td-star-dim {
    opacity: 0.25;
}

.td-review-text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--td-muted);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.td-review-reply {
    margin-top: 0.6rem;
    padding: 0.55rem 0.65rem;
    background: #f4f7fa;
    border-left: 3px solid var(--td-gold);
    border-radius: 0 8px 8px 0;
}

.td-review-reply-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--td-navy);
    margin-bottom: 0.25rem;
}

.td-review-reply p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--td-muted);
}

.td-reviews-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--td-muted);
}

.td-reviews-empty i {
    font-size: 2rem;
    color: #dde3ea;
    margin-bottom: 0.5rem;
    display: block;
}

.td-reviews-empty p {
    margin: 0;
    font-size: 0.88rem;
}

.tour-reviews-section .tour-details-section-content {
    padding: clamp(0.75rem, 2vw, 1rem) !important;
}

@media (max-width: 991.98px) {
    .tour-details-content-wrapper {
        grid-template-columns: 1fr;
    }

    .tour-details-booking-sidebar {
        position: relative;
        top: 0;
    }

    .td-gallery-main-wrap {
        aspect-ratio: 4 / 3;
    }

    .td-ix-grid {
        grid-template-columns: 1fr;
    }

    .td-ix-list {
        max-height: none;
    }

    .td-hotel-card {
        grid-template-columns: 1fr;
    }

    .td-hotel-media {
        min-height: 180px;
    }

    .td-hotel-img {
        min-height: 180px;
        max-height: 200px;
    }

    .td-hotel-desc {
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .td-thumb {
        flex: 0 0 72px;
        width: 72px;
        height: 54px;
    }

    .td-view-all-btn span.count-label {
        display: none;
    }

    .td-review-form-row {
        grid-template-columns: 1fr;
    }

    .td-reviews-list {
        grid-template-columns: 1fr;
    }

    .td-reviews-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .td-reviews-write-btn {
        justify-content: center;
    }

    .td-roadmap-item {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 0 0.6rem;
    }

    .td-roadmap-node {
        width: 30px;
        height: 30px;
    }

    .tour-details-content-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-buttons {
        grid-template-columns: 1fr 1fr !important;
    }

    .btn-book-now,
    .btn-enquire {
        font-size: 12px !important;
        padding: 12px 10px !important;
    }
}
