/**
 * Australian Hostel - Frontend Styles
 * Modern, professional frontend interface
 */

/* CSS Variables */
:root {
    --tj-primary: #2F443F;
    --tj-secondary: #552F34;
    --tj-background: #FDFFFB;
    --tj-accent: #F7EED1;
    --tj-white: #ffffff;
    --tj-black: #1a1a1a;
    --tj-gray-50: #f9fafb;
    --tj-gray-100: #f3f4f6;
    --tj-gray-200: #e5e7eb;
    --tj-gray-300: #d1d5db;
    --tj-gray-400: #9ca3af;
    --tj-gray-500: #6b7280;
    --tj-gray-600: #4b5563;
    --tj-gray-700: #374151;
    --tj-gray-800: #1f2937;
    --tj-radius: 16px;
    --tj-radius-sm: 12px;
    --tj-radius-xs: 8px;
    --tj-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tj-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tj-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tj-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid System */
.tj-grid {
    display: grid;
    gap: 30px;
}

.tj-grid-cols-1 {
    grid-template-columns: 1fr;
}

.tj-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.tj-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tj-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .tj-grid-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .tj-grid-cols-3,
    .tj-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .tj-grid-cols-2,
    .tj-grid-cols-3,
    .tj-grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.tj-hero {
    position: relative;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--tj-primary);
}

.tj-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.tj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 68, 63, 0.9) 0%, rgba(85, 47, 52, 0.7) 100%);
}

.tj-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
}

.tj-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    color: var(--tj-white) !important;
    margin: 0 0 20px;
    line-height: 1.1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.tj-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    line-height: 1.6;
}

.tj-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 20px;
}

.tj-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: var(--tj-transition);
}

.tj-hero-breadcrumb a:hover {
    color: var(--tj-white) !important;
}

/* Section Styles */
.tj-section {
    padding: 80px 0;
}

.tj-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tj-section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--tj-primary);
    margin: 0 0 15px;
}

.tj-section-subtitle {
    font-size: 1.1rem;
    color: var(--tj-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.tj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* No Results */
.tj-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--tj-gray-500);
    font-size: 1.1rem;
}

/* Animations */
@keyframes tj-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

[data-aos="fade-up"] {
    animation: tj-fadeInUp 0.6s ease forwards;
}

/* Buttons */
.tj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--tj-radius-xs);
    cursor: pointer;
    border: none;
    transition: var(--tj-transition);
    text-align: center;
}

.tj-btn-primary {
    background: var(--tj-primary);
    color: var(--tj-white) !important;
}

.tj-btn-primary:hover {
    background: #3d5a52;
    transform: translateY(-2px);
    box-shadow: var(--tj-shadow-md);
}

.tj-btn-secondary {
    background: var(--tj-secondary);
    color: var(--tj-white);
}

.tj-btn-secondary:hover {
    background: #6d3d43;
    transform: translateY(-2px);
}

.tj-btn-accent {
    background: var(--tj-accent);
    color: var(--tj-primary);
}

.tj-btn-accent:hover {
    background: #e8d9b8;
}

.tj-btn-outline {
    background: transparent;
    border: 2px solid var(--tj-primary);
    color: var(--tj-primary);
}

.tj-btn-outline:hover {
    background: var(--tj-primary);
    color: var(--tj-white);
}

.tj-btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.tj-btn-whatsapp {
    background: #25d366;
    color: var(--tj-white);
}

.tj-btn-whatsapp:hover {
    background: #1da851;
}

/* Archive Page Wrapper */
.tj-archive-page {
    background: var(--tj-background);
    min-height: 100vh;
}

.tj-archive-content {
    padding: 60px 0;
}

/* Filter Bar */
.tj-filter-bar {
    background: var(--tj-white);
    padding: 20px;
    border-radius: var(--tj-radius);
    box-shadow: var(--tj-shadow);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.tj-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tj-filter-select {
    padding: 10px 16px;
    border: 1px solid var(--tj-gray-300);
    border-radius: var(--tj-radius-xs);
    font-size: 14px;
    background: var(--tj-white);
    cursor: pointer;
}

.tj-filter-select:focus {
    outline: none;
    border-color: var(--tj-primary);
}

/* Pagination */
.tj-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.tj-pagination a,
.tj-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--tj-radius-xs);
    font-size: 15px;
    text-decoration: none;
    transition: var(--tj-transition);
}

.tj-pagination a {
    background: var(--tj-white);
    color: var(--tj-gray-700);
    border: 1px solid var(--tj-gray-200);
}

.tj-pagination a:hover {
    border-color: var(--tj-primary);
    color: var(--tj-primary);
}

.tj-pagination .current {
    background: var(--tj-primary);
    color: var(--tj-white);
    border: 1px solid var(--tj-primary);
}

/* Single Page Styles */
.tj-single-page {
    background: var(--tj-background);
}

.tj-single-content {
    padding: 60px 0;
}

.tj-single-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .tj-single-grid {
        grid-template-columns: 1fr;
    }
}

.tj-single-main {
    background: var(--tj-white);
    border-radius: var(--tj-radius);
    box-shadow: var(--tj-shadow);
    overflow: hidden;
}

.tj-single-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Gallery */
.tj-gallery {
    position: relative;
}

.tj-gallery-main {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tj-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tj-gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--tj-gray-50);
    overflow-x: auto;
}

.tj-gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--tj-radius-xs);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--tj-transition);
}

.tj-gallery-thumb:hover,
.tj-gallery-thumb.active {
    opacity: 1;
}

.tj-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Single Content Body */
.tj-single-body {
    padding: 30px;
}

.tj-single-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tj-primary);
    margin: 0 0 20px;
}

.tj-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tj-gray-200);
}

.tj-single-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--tj-gray-600);
}

.tj-single-meta-item svg {
    color: var(--tj-primary);
}

/* Booking Card */
.tj-booking-card {
    background: var(--tj-white);
    border-radius: var(--tj-radius);
    box-shadow: var(--tj-shadow-lg);
    overflow: hidden;
}

.tj-booking-header {
    background: linear-gradient(135deg, var(--tj-primary), #3d5a52);
    padding: 25px;
    color: var(--tj-white);
}

.tj-booking-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tj-booking-price-current {
    font-size: 2.5rem;
    font-weight: 700;
}

.tj-booking-price-unit {
    font-size: 1rem;
    opacity: 0.8;
}

.tj-booking-price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.tj-booking-body {
    padding: 25px;
}

.tj-booking-body .tj-btn {
    width: 100%;
    margin-bottom: 10px;
}

.tj-booking-info {
    padding: 20px;
    border-top: 1px solid var(--tj-gray-200);
}

.tj-booking-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--tj-gray-600);
}

.tj-booking-info-item svg {
    color: var(--tj-primary);
    flex-shrink: 0;
}

/* Section Blocks */
.tj-content-section {
    margin-bottom: 30px;
}

.tj-content-section:last-child {
    margin-bottom: 0;
}

.tj-content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tj-primary);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Amenities List */
.tj-amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.tj-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--tj-gray-50);
    border-radius: var(--tj-radius-xs);
    font-size: 14px;
    color: var(--tj-gray-700);
}

.tj-amenity-item svg {
    color: var(--tj-primary);
    flex-shrink: 0;
}

/* Itinerary */
.tj-itinerary {
    position: relative;
    padding-left: 30px;
}

.tj-itinerary::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tj-gray-200);
}

.tj-itinerary-step {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

.tj-itinerary-step::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--tj-primary);
    border-radius: 50%;
    border: 3px solid var(--tj-white);
    box-shadow: 0 0 0 2px var(--tj-primary);
}

.tj-itinerary-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--tj-secondary);
    margin-bottom: 5px;
}

.tj-itinerary-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--tj-gray-800);
    margin-bottom: 8px;
}

.tj-itinerary-description {
    font-size: 14px;
    color: var(--tj-gray-600);
    line-height: 1.6;
}

/* Includes/Excludes Lists */
.tj-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 640px) {
    .tj-includes-grid {
        grid-template-columns: 1fr;
    }
}

.tj-includes-list,
.tj-excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tj-includes-list li,
.tj-excludes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--tj-gray-700);
    border-bottom: 1px solid var(--tj-gray-100);
}

.tj-includes-list li:last-child,
.tj-excludes-list li:last-child {
    border-bottom: none;
}

.tj-includes-list li svg {
    color: var(--tj-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.tj-excludes-list li svg {
    color: var(--tj-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Table */
.tj-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--tj-radius-sm);
    overflow: hidden;
    box-shadow: var(--tj-shadow);
}

.tj-pricing-table th,
.tj-pricing-table td {
    padding: 16px 20px;
    text-align: left;
}

.tj-pricing-table thead th {
    background: var(--tj-primary);
    color: var(--tj-white);
    font-weight: 600;
    font-size: 14px;
}

.tj-pricing-table tbody tr {
    background: var(--tj-white);
}

.tj-pricing-table tbody tr:nth-child(even) {
    background: var(--tj-gray-50);
}

.tj-pricing-table tbody td {
    border-bottom: 1px solid var(--tj-gray-200);
    font-size: 15px;
    color: var(--tj-gray-700);
}

.tj-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.tj-pricing-value {
    font-weight: 600;
    color: var(--tj-primary);
}

/* Related Items */
.tj-related-section {
    padding: 60px 0;
    background: var(--tj-gray-50);
}

.tj-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tj-primary);
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Images */
.tj-responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder Image */
.tj-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tj-gray-100), var(--tj-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tj-placeholder-image .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--tj-gray-400);
}

/* Load More Button */
.tj-load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Scroll to Top */
.tj-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--tj-primary);
    color: var(--tj-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--tj-transition);
    z-index: 1000;
    box-shadow: var(--tj-shadow-lg);
}

.tj-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.tj-scroll-top:hover {
    background: var(--tj-secondary);
    transform: translateY(-3px);
}

/* ===== Hero Full Background ===== */
.tj-hero-fullbg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tj-hero-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.tj-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.tj-hero-meta-item svg {
    opacity: 0.8;
}

.tj-hero-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.tj-hero-attr {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--tj-white);
    font-size: 14px;
    font-weight: 500;
}

.tj-hero-attr svg {
    opacity: 0.9;
}

.tj-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: var(--tj-accent);
    color: var(--tj-primary);
}

.tj-badge-luxury {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
}

.tj-badge-popular {
    background: #ff6b6b;
    color: white;
}

.tj-badge-sale {
    background: #e74c3c;
    color: white;
}

.tj-badge-adventure {
    background: #27ae60;
    color: white;
}

.tj-badge-christmas {
    background: #c0392b;
    color: white;
}

/* ===== Sticky Sidebar ===== */
.tj-sticky-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .tj-sticky-sidebar {
        position: relative;
        top: 0;
    }
}

/* ===== Booking Form Styles ===== */
.tj-booking-form {
    margin-bottom: 15px;
}

.tj-booking-form .mf-input-wrapper {
    margin-bottom: 12px;
}

.tj-booking-form input,
.tj-booking-form select,
.tj-booking-form textarea {
    border: 1px solid var(--tj-gray-200);
    border-radius: var(--tj-radius-xs);
    padding: 12px;
    width: 100%;
    font-size: 14px;
}

.tj-booking-form input:focus,
.tj-booking-form select:focus {
    outline: none;
    border-color: var(--tj-primary);
    box-shadow: 0 0 0 3px rgba(47, 68, 63, 0.1);
}

.tj-booking-form button[type="submit"] {
    width: 100%;
    background: var(--tj-accent);
    color: var(--tj-primary);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--tj-radius-xs);
    cursor: pointer;
    transition: var(--tj-transition);
}

.tj-booking-form button[type="submit"]:hover {
    background: #e8d9b8;
    transform: translateY(-2px);
}

.tj-booking-child-price {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.tj-price-from {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

/* ===== Booking Info Items Enhanced ===== */
.tj-booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tj-gray-100);
}

.tj-booking-info-item:last-child {
    border-bottom: none;
}

.tj-booking-info-item svg {
    color: var(--tj-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.tj-booking-info-item div {
    display: flex;
    flex-direction: column;
}

.tj-booking-info-item strong {
    font-size: 14px;
    color: var(--tj-gray-800);
    font-weight: 600;
}

.tj-booking-info-item span {
    font-size: 13px;
    color: var(--tj-gray-500);
    margin-top: 2px;
}

/* ===== FAQ Accordion ===== */
.tj-faq-section {
    margin-top: 40px;
}

.tj-faq-accordion {
    border: 1px solid var(--tj-gray-200);
    border-radius: var(--tj-radius);
    overflow: hidden;
}

.tj-faq-item {
    border-bottom: 1px solid var(--tj-gray-200);
}

.tj-faq-item:last-child {
    border-bottom: none;
}

.tj-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--tj-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: var(--tj-transition);
}

.tj-faq-question:hover {
    background: var(--tj-gray-50);
}

.tj-faq-question[aria-expanded="true"] {
    background-color: var(--e-global-color-accent);
}

.tj-faq-question span {
    flex: 1;
    padding-right: 15px;
}

.tj-faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--tj-primary);
}

.tj-faq-question[aria-expanded="true"] .tj-faq-icon {
    transform: rotate(180deg);
}

.tj-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--tj-gray-50);
}

.tj-faq-answer p {
    margin: 0;
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--tj-gray-600);
}

.tj-faq-item.active .tj-faq-answer {
    max-height: 500px;
}

/* ===== Highlights List ===== */
.tj-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.tj-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--tj-gray-50);
    border-radius: var(--tj-radius-xs);
    font-size: 15px;
    color: var(--tj-gray-700);
}

.tj-highlights-list li svg {
    color: var(--tj-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Itinerary Enhanced ===== */
.tj-itinerary-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--tj-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tj-itinerary-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--tj-white);
}

.tj-itinerary-content {
    padding-left: 10px;
}

/* ===== Package Day Cards ===== */
.tj-package-itinerary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tj-day-card {
    background: var(--tj-white);
    border: 1px solid var(--tj-gray-200);
    border-radius: var(--tj-radius);
    overflow: hidden;
    transition: var(--tj-transition);
}

.tj-day-card:hover {
    box-shadow: var(--tj-shadow-md);
    border-color: var(--tj-primary);
}

.tj-day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--tj-gray-50);
    border-bottom: 1px solid var(--tj-gray-200);
}

.tj-day-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--tj-primary);
    border-radius: var(--tj-radius-xs);
    color: var(--tj-white);
}

.tj-day-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.tj-day-num {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.tj-day-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--tj-gray-800);
}

.tj-day-content {
    padding: 20px;
}

.tj-day-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--tj-gray-600);
}

.tj-day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
    background: var(--tj-accent);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tj-day-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--tj-primary);
    font-weight: 500;
}

.tj-day-meta-item svg {
    opacity: 0.8;
}

/* ===== Includes/Excludes Enhanced ===== */
.tj-includes-col,
.tj-excludes-col {
    flex: 1;
    min-width: 250px;
}

.tj-includes-title,
.tj-excludes-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tj-includes-title {
    color: var(--tj-primary);
}

.tj-excludes-title {
    color: var(--tj-secondary);
}

.tj-includes-list li,
.tj-excludes-list li {
    position: relative;
    padding-left: 25px;
}

.tj-includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tj-primary);
    font-weight: 700;
}

.tj-excludes-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--tj-secondary);
    font-weight: 700;
}

/* ===== Group Pricing Table Inline ===== */
.tj-group-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.tj-pricing-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--tj-gray-50);
    border-radius: var(--tj-radius-xs);
    text-align: center;
    border: 1px solid var(--tj-gray-200);
    transition: var(--tj-transition);
}

.tj-pricing-tier:hover {
    border-color: var(--tj-primary);
    background: var(--tj-white);
}

.tj-tier-label {
    font-size: 14px;
    color: var(--tj-gray-600);
    margin-bottom: 8px;
}

.tj-tier-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--tj-primary);
}

/* ===== Pricing Table Wrapper ===== */
.tj-pricing-table-wrapper {
    overflow-x: auto;
}

/* ===== Destination About Section ===== */
.tj-destination-about {
    margin-top: 60px;
    background: var(--tj-white);
    padding: 40px;
    border-radius: var(--tj-radius);
    box-shadow: var(--tj-shadow);
}

.tj-destination-about h2 {
    color: var(--tj-primary);
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.tj-destination-highlights {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--tj-gray-200);
}

.tj-destination-highlights h3 {
    color: var(--tj-primary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* ===== Gallery Section ===== */
.tj-gallery-section {
    margin-bottom: 0;
}

/* ===== Content Section Headers ===== */
.tj-content-section h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--tj-primary) !important;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--tj-gray-100);
}

/* ===== Cancellation Section ===== */
.tj-cancellation {
    background: var(--tj-gray-50);
    padding: 25px;
    border-radius: var(--tj-radius-xs);
    border-left: 4px solid var(--tj-secondary);
}

.tj-cancellation h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.tj-cancellation p {
    margin: 0;
    color: var(--tj-gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.tj-hero-content p {
    font-size: 14px;
    line-height: 1.7;
    color: white;

}

/* ===== Archive Page Description ===== */
.tj-archive-description {
    background: var(--tj-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--tj-gray-100);
}

.tj-archive-description-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--tj-gray-700);
}

.tj-archive-description-content p {
    margin-bottom: 1em;
}

.tj-archive-description-content p:last-child {
    margin-bottom: 0;
}

.tj-archive-description-content h2,
.tj-archive-description-content h3,
.tj-archive-description-content h4 {
    color: var(--tj-primary);
    margin-bottom: 15px;
    margin-top: 20px;
}

.tj-archive-description-content h2:first-child,
.tj-archive-description-content h3:first-child {
    margin-top: 0;
}

.tj-archive-description-content ul,
.tj-archive-description-content ol {
    margin-bottom: 1em;
    padding-left: 20px;
}

.tj-archive-description-content li {
    margin-bottom: 8px;
}

.tj-archive-description-content a {
    color: var(--tj-primary);
    text-decoration: underline;
}

.tj-archive-description-content a:hover {
    color: var(--tj-secondary);
}

/* ===== Related Tours Slider Section ===== */
.tj-related-tours-section {
    background: linear-gradient(135deg, var(--tj-gray-50) 0%, #f0f4f2 100%);
    padding: 60px 0 80px;
    margin-top: 0;
}

.tj-related-tours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.tj-related-tours-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--tj-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tj-related-tours-title svg {
    color: var(--tj-secondary);
}

.tj-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--tj-primary);
    color: var(--tj-white) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--tj-radius-xs);
    transition: var(--tj-transition);
}

.tj-view-all-btn:hover {
    background: #3d5a52;
    transform: translateY(-2px);
    box-shadow: var(--tj-shadow-md);
}

.tj-view-all-btn svg {
    transition: transform 0.3s ease;
}

.tj-view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Slider Container */
.tj-tours-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.tj-tours-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 20px;
    margin: -10px -5px;
}

.tj-tours-slider::-webkit-scrollbar {
    height: 8px;
}

.tj-tours-slider::-webkit-scrollbar-track {
    background: var(--tj-gray-200);
    border-radius: 4px;
}

.tj-tours-slider::-webkit-scrollbar-thumb {
    background: var(--tj-primary);
    border-radius: 4px;
}

.tj-tours-slider::-webkit-scrollbar-thumb:hover {
    background: #3d5a52;
}

.tj-tours-slider>.tj-card,
.tj-tours-slider>.tj-tour-card,
.tj-tours-slider>.tj-package-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    max-width: 400px;
    scroll-snap-align: start;
}

@media (max-width: 992px) {

    .tj-tours-slider .tj-card,
    .tj-tours-slider>.tj-tour-card,
    .tj-tours-slider>.tj-package-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
        max-width: 360px;
    }
}

@media (max-width: 640px) {

    .tj-tours-slider .tj-card,
    .tj-tours-slider>.tj-tour-card,
    .tj-tours-slider>.tj-package-card {
        flex: 0 0 calc(85% - 12px);
        min-width: 260px;
        max-width: 320px;
    }

    .tj-related-tours-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Slider Navigation Arrows */
.tj-slider-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.tj-slider-nav.tj-nav-prev {
    left: -15px;
}

.tj-slider-nav.tj-nav-next {
    right: -15px;
}

.tj-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--tj-white);
    border: 1px solid var(--tj-gray-200);
    color: var(--tj-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tj-transition);
    box-shadow: var(--tj-shadow);
}

.tj-slider-btn:hover {
    background: var(--tj-primary);
    color: var(--tj-white);
    border-color: var(--tj-primary);
}

.tj-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1280px) {
    .tj-slider-nav {
        display: none;
    }
}

/* No Related Tours Message */
.tj-no-related-tours {
    text-align: center;
    padding: 40px;
    color: var(--tj-gray-500);
    font-size: 1rem;
}

/* House Rules Section */
.tj-house-rules-section {
    padding: 60px 0;
    background: var(--tj-gray-50);
}

.tj-house-rules-section .tj-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tj-black);
    margin-bottom: 8px;
}

.tj-house-rules-section .tj-section-subtitle {
    color: var(--tj-gray-500);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.tj-house-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tj-house-rule-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--tj-white);
    border-radius: var(--tj-radius-sm);
    box-shadow: var(--tj-shadow);
    transition: var(--tj-transition);
}

.tj-house-rule-item:hover {
    box-shadow: var(--tj-shadow-md);
    transform: translateY(-2px);
}

.tj-house-rule-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--tj-primary), #3d5a52);
    border-radius: var(--tj-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tj-white);
}

.tj-house-rule-icon svg {
    width: 24px;
    height: 24px;
}

.tj-house-rule-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tj-black);
    margin: 0 0 6px 0;
}

.tj-house-rule-content p {
    font-size: 0.9rem;
    color: var(--tj-gray-600);
    margin: 0;
    line-height: 1.5;
}

.tj-house-rule-note {
    margin-top: 8px !important;
    font-size: 0.85rem !important;
    color: var(--tj-gray-500) !important;
    font-style: italic;
}

/* FAQ Section */
.tj-faq-section {
    padding: 60px 0;
    background: var(--tj-white);
}

.tj-faq-section .tj-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tj-black);
    margin-bottom: 30px;
    text-align: center;
}

.tj-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tj-faq-item {
    background: var(--tj-gray-50);
    border-radius: var(--tj-radius-sm);
    overflow: hidden;
    transition: var(--tj-transition);
}

.tj-faq-item:hover {
    background: var(--tj-gray-100);
}

.tj-faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tj-black);
    text-align: left;
    transition: var(--tj-transition);
}

.tj-faq-question span {
    flex: 1;
    padding-right: 16px;
}

.tj-faq-question svg {
    flex-shrink: 0;
    color: var(--tj-gray-400);
    transition: var(--tj-transition);
}

.tj-faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: var(--tj-primary);
}

.tj-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tj-faq-answer.active {
    max-height: 500px;
    padding: 0 20px 18px 20px;
}

.tj-faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--tj-gray-600);
    line-height: 1.6;
}

/* Related Rooms Section */
.tj-related-section {
    padding: 60px 0;
    background: var(--tj-gray-50);
}

.tj-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.tj-related-header .tj-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tj-black);
    margin: 0;
}

.tj-view-all {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tj-primary);
    text-decoration: none;
    transition: var(--tj-transition);
}

.tj-view-all:hover {
    color: var(--tj-secondary);
}

/* Related Rooms Grid */
.tj-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tj-related-card {
    background: var(--tj-white);
    border-radius: var(--tj-radius);
    overflow: hidden;
    box-shadow: var(--tj-shadow);
    transition: var(--tj-transition);
}

.tj-related-card:hover {
    box-shadow: var(--tj-shadow-lg);
    transform: translateY(-4px);
}

.tj-related-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--tj-gray-100);
}

.tj-related-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.tj-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tj-transition);
}

.tj-related-card:hover .tj-related-card-image img {
    transform: scale(1.05);
}

.tj-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tj-gray-100), var(--tj-gray-200));
    color: var(--tj-gray-400);
}

.tj-related-card-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--tj-primary);
    color: var(--tj-white);
    padding: 6px 12px;
    border-radius: var(--tj-radius-xs);
    font-size: 1rem;
    font-weight: 600;
}

.tj-related-card-price span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.tj-related-card-content {
    padding: 16px;
}

.tj-related-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.tj-related-card-title a {
    color: var(--tj-black);
    text-decoration: none;
    transition: var(--tj-transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tj-related-card-title a:hover {
    color: var(--tj-primary);
}

.tj-related-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.tj-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--tj-gray-500);
}

.tj-meta-item svg {
    flex-shrink: 0;
}

.tj-related-card-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: var(--tj-gray-100);
    color: var(--tj-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--tj-radius-xs);
    transition: var(--tj-transition);
}

.tj-related-card-btn:hover {
    background: var(--tj-primary);
    color: var(--tj-white);
}

@media (max-width: 1200px) {
    .tj-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tj-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .tj-house-rules-section,
    .tj-faq-section,
    .tj-related-section {
        padding: 40px 0;
    }

    .tj-house-rules-grid {
        grid-template-columns: 1fr;
    }

    .tj-related-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .tj-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}