/* ============================================================
   TOUR PACKAGES & ITINERARY MODULE — Om Taxi Service
   Includes: Tour Cards, Single Tour Page, Day-wise Itinerary
   Accordion, Inclusions / Exclusions
   ============================================================ */

/* ── HOMEPAGE & LISTING TOUR CARDS SECTION ── */
.tpc-sec {
    position: relative;
    background: #f8fafc;
    padding: 60px 0 70px;
}

.tpc-header {
    margin-bottom: 36px;
}

.tpc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--second, #F2277E);
    background: #fff0f6;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.tpc-heading {
    font-size: 32px;
    font-weight: 800;
    color: #170F2F;
    line-height: 1.25;
    margin-bottom: 8px;
}

.tpc-sub {
    font-size: 14.5px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.tpc-outer {
    position: relative;
}

.tpc-card {
    background: #0f172a;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    height: 400px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tpc-card:hover {
    border-color: rgba(95, 45, 237, 0.4);
    box-shadow: 0 16px 36px rgba(95, 45, 237, 0.22);
}

.tpc-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #170F2F;
}

.tpc-img-wrap img,
.tpc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tpc-card:hover .tpc-img-wrap img,
.tpc-card:hover .tpc-img {
    transform: scale(1.08);
}

.tpc-overlay {
    display: none;
}

.tpc-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.tpc-tag-days {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tpc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 9px 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 10px;
    max-width: 95%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 10px;
}

.tpc-title {
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.tpc-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tpc-title a:hover {
    color: #f0eaff;
}

.tpc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.tpc-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.tpc-btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--theme, #5F2DED);
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(95, 45, 237, 0.35);
    border: 1px solid #fff;
}

.tpc-btn-view:hover {
    background: #4a1fc7;
    color: #ffffff !important;
    box-shadow: 0 5px 14px rgba(95, 45, 237, 0.45);
}

.tpc-btn-enq {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.tpc-btn-enq:hover {
    background: #ffffff;
    color: var(--theme, #5F2DED) !important;
    border-color: #ffffff;
}

.tpc-btn-wa {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.tpc-btn-wa:hover {
    background: #1ebc59;
    color: #ffffff !important;
}

/* ── DAY-WISE ITINERARY ACCORDION ── */
.pg-itinerary-block {
    margin-bottom: 36px;
}

.pg-itinerary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-itin-item {
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pg-itin-item.pg-itin-open {
    border-color: var(--theme, #5F2DED);
    box-shadow: 0 4px 18px rgba(95, 45, 237, 0.08);
}

.pg-itin-q {
    width: 100%;
    background: #faf8ff;
    border: none;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.pg-itin-item.pg-itin-open .pg-itin-q {
    background: var(--theme, #5F2DED);
    color: #fff;
}

.pg-itin-day {
    flex-shrink: 0;
    background: var(--theme, #5F2DED);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.pg-itin-item.pg-itin-open .pg-itin-day {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.pg-itin-title {
    flex: 1;
    font-size: 14.5px;
    font-weight: 700;
    color: #170F2F;
    line-height: 1.4;
    transition: color 0.2s;
}

.pg-itin-item.pg-itin-open .pg-itin-title {
    color: #ffffff;
}

.pg-itin-arrow {
    font-size: 12px;
    color: var(--theme, #5F2DED);
    transition: transform 0.3s ease, color 0.2s;
    flex-shrink: 0;
}

.pg-itin-item.pg-itin-open .pg-itin-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.pg-itin-a {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pg-itin-inner {
    padding: 18px;
    font-size: 14px;
    color: var(--text-color, #475569);
    line-height: 1.65;
    background: #ffffff;
    border-top: 1px solid rgba(95, 45, 237, 0.1);
}

.pg-itin-inner p {
    margin-bottom: 12px;
}

.pg-itin-inner p:last-child {
    margin-bottom: 0;
}

.pg-itin-places {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border, #e2e8f0);
}

.pg-itin-place {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #faf8ff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border, #ede9ff);
}

.pg-itin-place img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.pg-itin-place strong {
    display: block;
    font-size: 13px;
    color: #170F2F;
    margin-bottom: 2px;
}

.pg-itin-place p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* ── INCLUSIONS & EXCLUSIONS ── */
.pg-inc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 24px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pg-inc-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pg-inc-yes {
    border-top: 4px solid #10b981;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, #ffffff 100px);
}

.pg-inc-no {
    border-top: 4px solid #ef4444;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, #ffffff 100px);
}

.pg-inc-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.pg-inc-yes h3 {
    color: #065f46;
}

.pg-inc-no h3 {
    color: #991b1b;
}

.pg-inc-yes h3 i {
    color: #10b981;
    font-size: 20px;
}

.pg-inc-no h3 i {
    color: #ef4444;
    font-size: 20px;
}

.pg-inc-card p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 14px;
}

.pg-inc-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-inc-card li {
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-left: 0;
}

.pg-inc-yes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome';
    font-weight: 900;
    color: #10b981;
    font-size: 11px;
    background: rgba(16, 185, 129, 0.14);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pg-inc-no li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome';
    font-weight: 900;
    color: #ef4444;
    font-size: 11px;
    background: rgba(239, 68, 68, 0.14);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .tpc-heading {
        font-size: 26px;
    }
}

/* ============================================================
   MODERN TOUR PACKAGES EXPLORER & FILTER SYSTEM
   ============================================================ */
.tour-explorer-sec {
    background: #f8fafc;
    padding: 30px 0 70px;
    min-height: 80vh;
}

/* ── Tour Explorer Filter Card (Inheriting Cab-List Design) ── */
.tour-filter-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 10;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}
.tour-filter-card::-webkit-scrollbar {
    width: 5px;
}
.tour-filter-card::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 4px;
}
.tour-filter-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.tour-filter-card::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ── Active Filter Chips ── */
.tour-active-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.tour-chips-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tour-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ede9fe;
    color: #5F2DED;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
}
.tour-chip a {
    color: #5F2DED;
    margin-left: 2px;
    text-decoration: none;
}
.tour-chip a:hover {
    color: #dc2626;
}
.tour-chip-reset {
    font-size: 12px;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}
.tour-chip-reset:hover {
    text-decoration: underline;
}

/* ── Modern Luxury Tour Card ── */
.tour-card-luxury {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tour-card-luxury:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(95, 45, 237, 0.35);
}
.tour-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}
.tour-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tour-card-luxury:hover .tour-card-media img {
    transform: scale(1.08);
}
.tour-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.tour-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.tour-badge-winter {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}
.tour-badge-pilgrimage {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}
.tour-badge-hill {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
.tour-badge-adventure {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}
.tour-badge-honeymoon {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}
.tour-badge-standard {
    background: linear-gradient(135deg, #5F2DED 0%, #4c1d95 100%);
}
.tour-card-duration {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.tour-card-hubs {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #f1f5f9;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}

/* ── Card Content ── */
.tour-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tour-card-title {
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #0f172a;
}
.tour-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.tour-card-title a:hover {
    color: #5F2DED;
}
.tour-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tour-card-highlights li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.tour-card-highlights li i {
    color: #10b981;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Card Footer & CTA Group ── */
.tour-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tour-pricing-block {
    display: flex;
    flex-direction: column;
}
.tour-price-caption {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.tour-price-amount {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.tour-price-note {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
}
.tour-cta-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-tour-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    color: #334155;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tour-details:hover {
    background: #5F2DED;
    color: #ffffff;
}
.btn-tour-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #25D366;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tour-wa:hover {
    background: #1eb956;
    color: #ffffff;
    transform: scale(1.05);
}
.btn-tour-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #5F2DED 0%, #7c3aed 100%);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tour-book:hover {
    transform: scale(1.05);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(95, 45, 237, 0.35);
}

/* ── Modern Pagination ── */
.tour-pagination-nav {
    display: flex;
    justify-content: center;
}
.tour-pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.tour-page-item .tour-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}
.tour-page-item .tour-page-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.tour-page-item.active .tour-page-link {
    background: #5F2DED;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(95, 45, 237, 0.35);
}

/* ── Sidebar Styling ── */
.tour-sidebar-wrap {
    display: flex;
    flex-direction: column;
}
.tour-sb-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}
.tour-sb-card-head {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tour-sb-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.tour-sb-reset-link {
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
}
.tour-sb-reset-link:hover {
    color: #ef4444;
}
.tour-sb-body {
    padding: 18px 20px;
}
.tour-filter-subtitle {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tour-filter-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tour-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}
.tour-filter-link:hover {
    background: #f8fafc;
    color: #0f172a;
}
.tour-filter-link.active {
    background: #ede9fe;
    color: #5F2DED;
    font-weight: 700;
}
.tour-fl-pill {
    font-size: 11px;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 7px;
    border-radius: 12px;
}
.tour-filter-link.active .tour-fl-pill {
    background: #5F2DED;
    color: #ffffff;
}

/* ── Expert Card ── */
.tour-expert-card {
    background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 22px;
}
.tour-expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    color: #a5b4fc;
    margin-bottom: 10px;
}
.tour-expert-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}
.tour-expert-desc {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 16px;
}
.tour-expert-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-tour-sb-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #5F2DED;
    color: #ffffff;
    padding: 9px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tour-sb-call:hover {
    background: #4f22cc;
    color: #ffffff;
}
.btn-tour-sb-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    padding: 9px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tour-sb-wa:hover {
    background: #1eb956;
    color: #ffffff;
}
.btn-tour-sb-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-tour-sb-modal:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ── Trust Card ── */
.tour-trust-list {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tour-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.tour-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #5F2DED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.tour-trust-info {
    display: flex;
    flex-direction: column;
}
.tour-trust-info strong {
    font-size: 13px;
    color: #0f172a;
    font-weight: 700;
}
.tour-trust-info span {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.35;
}

/* ── Category Rich Content Section ── */
.tour-category-rich-content {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.rich-content-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #5F2DED;
}
.rich-content-header h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.rich-content-body {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
}

/* ── Empty State ── */
.tour-empty-state {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    text-align: center;
}
.tour-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ede9fe;
    color: #5F2DED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}
.tour-empty-state h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.tour-empty-state p {
    font-size: 14px;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 20px;
}
.tour-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .tour-card-media {
        height: 190px;
    }
    .tour-card-content {
        padding: 16px;
    }
    .tour-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .tour-cta-group {
        width: 100%;
        justify-content: space-between;
    }
    .btn-tour-details {
        flex-grow: 1;
        justify-content: center;
    }
}