@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.tour-list-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}

@media (max-width: 768px) {
	.tour-list-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* --- UNIFIED PREMIUM TOUR CARD --- */
.tour-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(9, 35, 64, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Montserrat', sans-serif !important;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(9, 35, 64, 0.08);
    border-color: #e2e8f0;
}

.tour-card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.tour-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-card-thumb img {
    transform: scale(1.08);
}

.tour-duration-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(9, 35, 64, 0.85); /* Primary Brand Color with opacity */
    backdrop-filter: blur(4px);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #a8191e; /* Secondary Brand Color */
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(168, 25, 30, 0.3);
}

.tour-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.tour-card-placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 12px 0;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tour-card-title a {
    color: #092340 !important; /* Primary Brand Color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.tour-card-title a:hover {
    color: #a8191e !important; /* Secondary Brand Color */
}

.tour-card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.tour-card-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.tour-card-price {
    color: #a8191e !important; /* Secondary Brand Color */
    font-weight: 800;
    font-size: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.tour-card-old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 500;
}

.tour-contact-price {
    color: #092340 !important; /* Primary Brand Color */
    font-size: 18px;
}

.tour-card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tour-card-btn {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;
    background: #092340; /* Primary Brand Color */
    color: #ffffff !important;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: none;
}

.tour-card-btn:hover {
    background: #a8191e; /* Secondary Brand Color */
    box-shadow: 0 4px 12px rgba(168, 25, 30, 0.25);
    transform: translateY(-2px);
}

/* Mobile Responsive Adjustments for Tour Card */
@media (max-width: 768px) {
    .tour-card-content {
        padding: 16px;
    }
    .tour-card-thumb {
        height: 180px;
    }
    .tour-card-title {
        font-size: 15px !important;
        height: 44px;
        margin-bottom: 8px;
    }
    .tour-card-price {
        font-size: 18px !important;
    }
    .tour-card-old-price {
        font-size: 12px;
    }
    .tour-duration-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    .tour-card-excerpt {
        height: 44px;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
        font-size: 13px;
    }
    .tour-card-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* --- PREMIUM TOUR FILTER BAR --- */
.tour-filter-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(9, 35, 64, 0.03);
    border: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .tour-filter-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        margin-bottom: 30px;
    }
}

.tour-filter-select {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #092340;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23092340' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.tour-filter-select:hover {
    border-color: #092340;
    background-color: #ffffff;
}

.tour-filter-select:focus {
    border-color: #a8191e;
    box-shadow: 0 0 0 3px rgba(168, 25, 30, 0.15);
    background-color: #ffffff;
}

.tour-list-container {
	transition: opacity 0.3s ease;
}

/* Booking Form */
.tour-booking-form-wrapper {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #eaeaea;
}

.tour-booking-form-wrapper h3 {
	margin-top: 0;
	margin-bottom: 15px;
}

.tour-booking-form .form-group {
	margin-bottom: 15px;
}

.tour-booking-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.tour-booking-form input[type="text"],
.tour-booking-form input[type="email"],
.tour-booking-form input[type="tel"],
.tour-booking-form input[type="number"],
.tour-booking-form input[type="date"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.tour-booking-form input[type="radio"] {
	width: auto;
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

.tour-booking-form .payment-methods label {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	cursor: pointer;
	font-weight: normal;
}

.tour-submit-btn {
	width: 100%;
	padding: 12px;
	background: #28a745;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
}

.tour-submit-btn:hover {
	background: #218838;
}

.tour-submit-btn:disabled {
	background: #6c757d;
	cursor: not-allowed;
}

.booking-message {
	margin-bottom: 15px;
}

.success-msg {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
	padding: 10px;
	border-radius: 4px;
}

.error-msg {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
	padding: 10px;
	border-radius: 4px;
}

/* --- PREMIUM TOUR DETAILS STYLES --- */

/* Quick Info Bar */
.tour-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
}
.tour-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
}
.tour-info-item i {
    color: #0073aa;
    font-size: 18px;
}

/* Timeline / Itinerary */
.tour-itinerary-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}
.tour-itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0073aa;
    opacity: 0.3;
}
.itinerary-day {
    position: relative;
    margin-bottom: 25px;
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #0073aa;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0073aa;
}
.itinerary-day-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}
.itinerary-day-content {
    color: #666;
    line-height: 1.6;
}

/* Inclusions/Exclusions Grid */
.tour-inclusions-exclusions {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    margin: 30px 0;
    align-items: flex-start;
}
.tour-inclusions-exclusions h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}
.tour-inclusions-exclusions ul {
    margin: 0;
    padding-left: 20px;
}
.incl-excl-list {
    list-style: none;
    padding: 0;
}
.incl-excl-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}
.incl-excl-list li::before {
    position: absolute;
    left: 0;
    font-family: dashicons;
}
.list-inclusions li::before {
    content: "\f147"; /* dashicons-yes */
    color: #28a745;
}
.list-exclusions li::before {
    content: "\f158"; /* dashicons-no */
    color: #dc3545;
}

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

/* Gallery Grid (Simple) */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.tour-gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}
.tour-gallery-grid img:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tour-inclusions-exclusions {
        grid-template-columns: 1fr;
    }
    .tour-sidebar-sticky {
        position: static !important;
    }
}

/* Final Attempt: Flexbox for Layout (Supports both Sections and Flexbox Containers) */
.tour-details-section .elementor-container,
.tour-details-section.e-con,
.tour-details-section.e-container,
.tour-details-section {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4% !important;
    align-items: flex-start !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Ensure columns take up correct width */
.tour-main-content-col {
    flex: 0 0 66% !important;
    width: 66% !important;
    max-width: 66% !important;
}

.tour-sidebar-col {
    flex: 0 0 30% !important;
    width: 30% !important;
    max-width: 30% !important;
}

.tour-sidebar-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 20px !important;
    z-index: 999 !important;
}

/* Refined Timeline */
.tour-itinerary-timeline {
    border-left: 2px solid #0073aa33;
    margin-left: 10px;
    padding-left: 30px;
}
.itinerary-day {
    margin-bottom: 30px;
    position: relative;
}
.itinerary-day::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #0073aa;
    border-radius: 50%;
    border: 3px solid #fff;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .tour-details-section .elementor-container,
    .tour-details-section.e-con,
    .tour-details-section.e-container,
    .tour-details-section {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }
    .tour-main-content-col,
    .tour-sidebar-col {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .tour-sidebar-sticky {
        position: static !important;
    }
}


/* Booking Card Sidebar */
.tour-booking-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    overflow: hidden;
}
.booking-card-header {
    background: #0073aa;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.price-label {
    font-size: 13px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}
.booking-price {
    font-size: 24px;
    font-weight: 800;
}
.tour-booking-form-inner {
    padding: 25px;
}
.booking-title {
    margin: 0 0 20px;
    font-size: 18px;
    text-align: center;
    color: #333;
}
.booking-footer-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}
.tour-submit-btn {
    font-weight: bold;
    letter-spacing: 1px;
}
.day-highlight {
    color: #0073aa;
    font-size: 14px;
}


/* PREMIUM BOOKING WIDGET STYLES */
.tda-booking-card-premium {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    position: sticky;
    top: 30px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.tda-booking-header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    padding: 25px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tda-price-tag .tda-label {
    font-size: 13px;
    opacity: 0.8;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tda-price-tag .tda-amount {
    font-size: 26px;
    font-weight: 800;
}

.tda-price-tag .tda-unit {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.tda-availability-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.tda-booking-body {
    padding: 30px;
}

.tda-field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.tda-form-section {
    margin-bottom: 25px;
}

.tda-input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.tda-input-wrapper .dashicons {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #94a3b8 !important;
    font-size: 18px !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

.tda-input-wrapper input {
    width: 100% !important;
    padding: 12px 15px 12px 45px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    background: #f8fafc !important;
    box-sizing: border-box !important;
}

.tda-input-wrapper input:focus {
    border-color: #4f46e5 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
    outline: none !important;
}

.tda-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tda-pax-selector {
    background: #f8fafc;
    border-radius: 14px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.tda-pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.tda-pax-row:last-child {
    border-bottom: none;
}

.tda-pax-info {
    display: flex;
    flex-direction: column;
}

.tda-pax-label {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

.tda-pax-desc {
    font-size: 11px;
    color: #64748b;
}

.tda-qty-control {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    color: #4f46e5;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #f1f5f9;
}

.tda-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tda-pay-item input {
    display: none;
}

.tda-pay-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8fafc;
    gap: 5px;
}

.tda-pay-box .dashicons {
    font-size: 20px;
    color: #64748b;
}

.tda-pay-box span {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.tda-pay-item input:checked + .tda-pay-box {
    border-color: #4f46e5;
    background: #eef2ff;
}

.tda-pay-item input:checked + .tda-pay-box .dashicons,
.tda-pay-item input:checked + .tda-pay-box span {
    color: #4f46e5;
}

.tda-booking-summary {
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.summary-row span:first-child {
    font-weight: 600;
    color: #475569;
}

#tda-total-display {
    font-size: 20px;
    font-weight: 800;
    color: #4f46e5;
}

.summary-note {
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
}

.tda-submit-btn-premium {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.tda-submit-btn-premium:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
}

.tda-booking-footer {
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.tda-booking-footer p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tda-booking-footer strong {
    color: #1e293b;
}

.tda-error-msg {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fecaca;
    font-size: 14px;
    text-align: center;
}
/* --- FULL WIDTH & PREMIUM REBUILD --- */

:root {
    --tda-primary: #4f46e5;
    --tda-primary-hover: #4338ca;
    --tda-secondary: #10b981;
    --tda-text-main: #1e293b;
    --tda-text-muted: #64748b;
    --tda-bg-soft: #f8fafc;
    --tda-border: #e2e8f0;
    --tda-radius: 16px;
    --tda-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tour-single-page {
    background-color: #fff;
    color: var(--tda-text-main);
    line-height: 1.6;
}

/* Full Width Hero */
.tda-tour-hero-premium {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tda-hero-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 10s ease;
}

.tda-tour-hero-premium:hover .tda-hero-image-bg {
    transform: scale(1.1);
}

.tda-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
}

.tda-hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    z-index: 10;
}

.tda-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tda-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Main Content Grid */
.tda-content-grid-premium {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

@media (max-width: 1024px) {
    .tda-content-grid-premium {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}


/* Quick Stats Section */
.tda-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.tda-stat-item-modern {
    background: var(--tda-bg-soft);
    padding: 24px;
    border-radius: var(--tda-radius);
    border: 1px solid var(--tda-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.tda-stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--tda-shadow);
    background: #fff;
    border-color: var(--tda-primary);
}

@media (max-width: 768px) {
    .tda-tour-hero-premium {
        height: 350px !important;
        min-height: 350px !important;
    }
    .tda-hero-container {
        padding: 30px 20px !important;
        display: flex;
        flex-direction: column;
    }
    .tda-hero-title {
        font-size: 28px !important;
        text-align: justify !important;
        text-wrap: balance;
        line-height: 1.3 !important;
    }
    .tda-hero-badge {
        align-self: flex-start;
    }
    .tda-stats-strip {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .tda-stat-item-modern {
        flex-direction: row;
        align-items: center;
        padding: 15px 20px;
        gap: 20px;
    }
    
    .tda-section-title-modern {
        font-size: 22px !important;
        margin-bottom: 10px;
    }
    .tda-short-desc-text {
        font-size: 15px !important;
        padding-left: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    .tda-overview-text {
        font-size: 15px !important;
        line-height: 1.6;
    }
    .tda-itinerary-title-v3 {
        font-size: 18px !important;
    }
    .tda-itinerary-desc {
        font-size: 15px !important;
        line-height: 1.6;
    }
    .tda-itinerary-day-card {
        grid-template-columns: 40px 1fr !important;
        gap: 15px !important;
    }
    .tda-day-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
    .tda-itinerary-content-card {
        padding: 20px !important;
    }
}

.tda-stat-icon-box {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tda-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tda-stat-label {
    font-size: 13px;
    color: var(--tda-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tda-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--tda-text-main);
}

/* Sections */
.tda-short-desc-text {
    font-size: 1.2rem;
    color: var(--tda-text-muted);
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid var(--tda-primary);
    padding-left: 25px;
    margin-bottom: 40px;
}

.tda-overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.tda-section-card {
    margin-bottom: 60px;
}

.tda-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tda-section-title-modern {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: var(--tda-text-main);
}

.tda-section-line {
    flex-grow: 1;
    height: 2px;
    background: var(--tda-border);
}

/* Premium Itinerary */
.tda-itinerary-v3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tda-itinerary-day-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
}

.tda-day-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tda-day-circle {
    width: 50px;
    height: 50px;
    background: var(--tda-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.tda-day-v-line {
    flex-grow: 1;
    width: 2px;
    background: var(--tda-border);
}

.tda-itinerary-content-card {
    background: #fff;
    border: 1px solid var(--tda-border);
    border-radius: var(--tda-radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.tda-itinerary-content-card:hover {
    box-shadow: var(--tda-shadow);
    border-color: var(--tda-primary);
}

.tda-itinerary-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tda-itinerary-title-v3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.tda-itinerary-time {
    font-size: 12px;
    font-weight: 700;
    background: var(--tda-bg-soft);
    color: var(--tda-primary);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Gallery V3 */
.tda-gallery-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.tda-gallery-item-v3 {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--tda-radius);
    overflow: hidden;
    cursor: pointer;
}

.tda-gallery-item-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tda-gallery-item-v3:hover img {
    transform: scale(1.1);
}

/* Sticky Sidebar Wrapper */
.tda-sidebar-sticky-v3 {
    position: sticky;
    top: 40px;
}

.tda-contact-float {
    margin-top: 30px;
    background: var(--tda-bg-soft);
    border-radius: var(--tda-radius);
    padding: 25px;
    border: 1px solid var(--tda-border);
    text-align: center;
}
/* Related Products Section (Matching Screenshot) */
.tda-related-tours {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.tda-related-tours .tda-section-title-modern {
    font-size: 24px;
    font-weight: 900;
    color: #1a365d;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.tda-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tda-related-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tda-related-thumb {
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.tda-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tda-related-item:hover .tda-related-thumb img {
    transform: scale(1.05);
}

.tda-related-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a365d;
    margin: 0;
}

.tda-related-title a {
    text-decoration: none;
    color: inherit;
}

.tda-related-price {
    font-size: 14px;
    font-weight: 600;
    color: #c53030; /* Red color from screenshot */
}

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

@media (max-width: 600px) {
    .tda-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles */
.tda-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    backdrop-filter: blur(5px);
}

.tda-lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tda-lightbox-overlay.active {
    display: flex;
}

.tda-lightbox-overlay.active .tda-lightbox-image {
    transform: scale(1);
}

.tda-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* Tour Carousel Styles */
.tour-carousel-wrapper { padding: 20px 0 40px; }
.tour-carousel-item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.tour-carousel-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.tour-carousel-thumb { position: relative; height: 220px; overflow: hidden; }
.tour-carousel-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-carousel-item:hover .tour-carousel-thumb img { transform: scale(1.1); }
.tour-duration-badge { position: absolute; bottom: 15px; left: 15px; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); color: #fff; padding: 6px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.tour-carousel-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.tour-carousel-content .tour-title { margin: 0 0 15px; font-size: 18px; line-height: 1.4; }
.tour-carousel-content .tour-title a { color: #0f172a; text-decoration: none; transition: color 0.3s; }
.tour-carousel-content .tour-price-box { margin-bottom: 20px; }
.tour-carousel-content .tour-price { font-size: 20px; font-weight: 800; color: #4f46e5; }
.tour-btn-detail { display: block; text-align: center; background: #f1f5f9; color: #0f172a; padding: 12px; border-radius: 12px; text-decoration: none; font-weight: 600; transition: all 0.3s; margin-top: auto; }
.tour-btn-detail:hover { background: #4f46e5; color: #fff; }
.swiper-button-next, .swiper-button-prev { color: #4f46e5 !important; background: #fff !important; width: 44px !important; height: 44px !important; border-radius: 50% !important; box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; font-weight: bold !important; }
.swiper-pagination-bullet-active { background: #4f46e5 !important; }

/* Swiper Layout Fix */
.swiper { overflow: hidden; position: relative; }
.swiper-wrapper { display: flex; flex-direction: row; transition-property: transform; box-sizing: content-box; }
.swiper-slide { flex-shrink: 0; height: 100%; position: relative; }

/* Position Arrows Correctly */
.tour-carousel-wrapper .swiper { position: relative; padding: 0 50px; overflow: visible; }
.tour-carousel-wrapper .swiper-button-next { right: -22px !important; top: 50% !important; transform: translateY(-50%); }
.tour-carousel-wrapper .swiper-button-prev { left: -22px !important; top: 50% !important; transform: translateY(-50%); }
.tour-carousel-wrapper .swiper-pagination { bottom: -30px !important; }
