/**
 * Tour Layout Fix - Consistent Spacing & Alignment System
 * This file fixes all spacing and alignment issues on the tour page
 */

/* Import Montserrat and Open Sans font families */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables for Consistent Spacing */
:root {
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-xxl: 32px;
    --spacing-xxxl: 40px;

    --container-padding: 24px;
    --section-gap: 32px;
    --card-padding: 24px;
    --grid-gap: 20px;

    --border-radius: 8px;
    --border-color: transparent;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    --primary-color: var(--tt-blue-500);
    --theme-palette-color-9: var(--tt-skyblue-500);
    /* Theme color for subtitle, metas, icons */
    --text-primary: var(--tt-text-primary);
    --text-secondary: var(--tt-text-secondary);
    --text-muted: var(--tt-text-muted);
    --bg-light: var(--tt-bg);
}

/* MODERN TYPOGRAPHY SYSTEM */
body.single-tour {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--tt-bg);
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
}

/* CONSISTENT HEADING SYSTEM */
body.single-tour h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--spacing-lg) 0;
    color: var(--text-primary);
}

body.single-tour h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--text-primary);
}

body.single-tour h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-primary);
}

body.single-tour h4,
body.single-tour h5,
body.single-tour h6 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-primary);
}

body.single-tour p {
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.6;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Hide default WordPress elements */
.entry-header,
.entry-title {
    display: none !important;
}

/* Main Container Layout */
.tt-tour-container {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--spacing-xxl);
    width: var(--tt-tour-page-width);
    max-width: var(--tt-max-width);
    margin: 0 auto;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.tt-tour-content {
    flex: 1;
    min-width: 0;
}

.tt-tour-sidebar {
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: var(--spacing-lg);
}

/* Tour Header Section - Points 1 & 2: Remove blue line and increase header spacing */
.tt-tour-header {
    margin-bottom: var(--section-gap);
    padding: 60px 0 0 0;
    background: transparent;
    border-radius: 0;
    position: relative;
    border-top: none !important;
}

/* Remove blue line decoration */
.tt-tour-header::before {
    display: none;
}

.tour-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-transform: none;
}

.tour-location {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    color: var(--tt-skyblue-700);
    font-size: 14px;
    background: transparent;
    padding: 0;
    border: none;
}

.tour-location i {
    margin-right: var(--spacing-xs);
    color: var(--theme-palette-color-9);
    /* Use green theme color */
    width: 16px;
    text-align: center;
}

/* Tour Meta Wrapper - Left aligned with reduced spacing */
.tour-meta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    padding: 2px 0;
    border: none !important;
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    overflow: hidden;
    justify-content: flex-start;
    text-align: left;
}

.travel-flexibly,
.tour-rating,
.tour-meta-item,
.tour-category-badge {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #00a884;
    /* Use sea pickle green */
    white-space: nowrap;
    flex-shrink: 1;
    /* Allow shrinking on small screens */
    min-width: 0;
    /* Allow text truncation if needed */
    margin-right: 8px;
    padding: 2px 6px;
}

.travel-flexibly {
    background: #f0f8f0;
    padding: 2px 8px;
    border-radius: 4px;
    border: none !important;
}

.travel-flexibly i {
    color: #00a884;
    /* Use sea pickle green */
    margin-right: var(--spacing-xs);
}

.tour-rating-stars {
    color: #ffc107;
    margin-right: var(--spacing-xs);
}

.tour-rating-text {
    margin-right: var(--spacing-xs);
    font-weight: 500;
}

.tour-reviews-link {
    color: var(--text-muted);
    text-decoration: underline;
}

.tour-meta-item i {
    margin-right: var(--spacing-xs);
    color: #00a884;
    /* Use sea pickle green */
    width: 14px;
    text-align: center;
}

.tour-category-badge {
    background: transparent;
    color: var(--theme-palette-color-9);
    /* Use green theme color */
    border: none !important;
    /* Remove border */
    padding: 0;
    /* Remove padding since no border */
    text-decoration: none;
    font-weight: 600;
}

.tour-category-badge:hover {
    color: var(--theme-palette-color-9);
    /* Keep green color on hover */
    text-decoration: underline;
    /* Add underline on hover instead */
}

.tour-category-badge i {
    color: #00a884;
    /* Sea pickle green icon */
    margin-right: var(--spacing-xs);
}

.tour-category-badge:hover i {
    color: #00a884;
    /* Keep sea pickle green icon on hover */
}

/* Tour Excerpt */
.tt-tour-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--theme-palette-color-9) !important;
    margin-bottom: var(--spacing-lg);
}

/* Combined Content Section - Transparent background */
.tt-tour-combined-section {
    background: transparent;
    border-radius: var(--tt-radius);
    overflow: hidden;
    margin-bottom: var(--section-gap);
    position: relative;
    transition: all 0.3s ease;
}

/* Remove all gradient decorations from combined section */
.tt-tour-combined-section::before {
    display: none;
}

.tt-tour-combined-section:hover {
    transform: translateY(-1px);
}

/* Featured Image */
.tt-tour-image-section {
    margin: 0;
    padding: 0;
}

.tt-featured-image {
    width: 100%;
    margin: 0;
}

.tt-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    border-radius: 10px; /* Increase rounding */
}

/* UNIFIED SECTION STYLING - Points 4-6: All sections flat, transparent, no borders */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-overview-section,
.tt-tour-highlights,
.tt-tour-itinerary {
    padding: var(--card-padding);
    margin: 0;
    position: relative;
    box-sizing: border-box;
    background: transparent !important;
    border-radius: 0 !important;
    transition: none;
    border: none !important;
    box-shadow: none !important;
}

/* Remove all section decorations and hover effects */
.tt-tour-overview-section::before,
.tt-tour-highlights::before,
.tt-tour-itinerary::before {
    display: none;
}

.tt-tour-overview-section:hover,
.tt-tour-highlights:hover,
.tt-tour-itinerary:hover {
    transform: none;
}

/* Remove border from first section after image */
.tt-tour-info-section {
    border: none !important;
}

/* UNIFIED CONTAINER STRUCTURE - Every section gets identical nesting levels */

/* Level 1: Section Wrapper (all sections have this) - Structure defined above in UNIFIED SECTION STYLING */

/* Point 8: Darker headings for better contrast */
.tt-tour-section h2,
.tt-tour-info-section h2,
.tt-tour-overview-section h2,
.tt-tour-highlights h2,
.tt-tour-itinerary h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222 !important;
    margin: 0 0 var(--spacing-lg) 0;
    padding: 0 0 var(--spacing-sm) 0;
    line-height: 1.3;
    position: relative;
}

/* Remove all section separators and underlines */
.tt-tour-overview-section h2::after,
.tt-tour-highlights h2::after,
.tt-tour-itinerary h2::after {
    display: none;

    height: 3px;
    background: linear-gradient(90deg, var(--tt-green-500), var(--tt-green-300));
    border-radius: 2px;
}

.tt-tour-itinerary h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--tt-pink-500), var(--tt-pink-300));
    border-radius: 2px;
}

/* ALL CONTENT CONTAINERS - IDENTICAL CSS NO EXCEPTIONS */
.tt-tour-info-grid,
.tt-tour-description,
.tt-route-map,
.tt-tour-overview-content,
.tt-highlights-list {
    /* EXACT SAME CSS FOR ALL CONTENT */
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
}

/* Ensure includes/excludes section matches the same structure - defined below in separate section */

.tt-tour-includes h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-lg) 0;
    padding: 0;
    line-height: 1.3;
    display: block !important;
    /* Override the display: none */
}

.tt-tour-includes .tt-includes-grid {
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
}

/* Tour Info Section - No horizontal padding per specification */
.tt-tour-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    padding: 0;
    align-items: start; /* Ensure proper alignment */
}

/* Tour info items - Point 5: Flat design for info cards */
.tt-tour-info-item {
    display: flex;
    align-items: flex-start;
    background: transparent;
    padding: var(--spacing-lg);
    border-radius: 0;
    border: none !important;
    box-shadow: none;
}

/* Tour info icons - Point 9: Sea pickle green icons */
.tt-tour-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 0;
    border: none !important;
    background-color: #00a884;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    font-size: 18px;
    box-shadow: none;
}

.tt-tour-info-content h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    letter-spacing: 0.5px;
}

.tt-tour-info-content p {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Tour Description Section - Darker text with improved readability */
.tt-tour-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    border: none !important;
    /* No additional padding - parent container handles it */
    text-align: left; /* Ensure proper alignment */
}

.tt-tour-description h3 {
    font-size: 18px;
    font-weight: 600;
    border: none !important;
    color: var(--text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
}

/* Tour Itinerary - Route Map - Level 3 Content */
.tt-route-map {
    position: relative;
    /* No additional padding - parent container handles it */
}

.tt-destination-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border: none !important;
    padding-left: var(--spacing-xxl);
}

.tt-destination-item:last-child {
    border: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tt-destination-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.tt-destination-title i {
    position: absolute;
    left: calc(-1 * var(--spacing-xxl));
    top: 2px;
    color: var(--theme-palette-color-9);
    /* Use green theme color */
    background: transparent;
    /* Remove white background */
    padding: var(--spacing-xs);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    /* Slightly larger since no border */
    border: none;
    /* Remove border */
    z-index: 2;
}

.tt-destination-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Connecting line for route map - adjusted for consistent padding */
.tt-route-map::before {
    content: "";
    position: absolute;
    left: 10px;
    /* Relative to the route-map container which already has padding */
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--theme-palette-color-9) 0%, rgba(0, 168, 132, 0.3) 100%);
    z-index: 1;
}

/* Tour Overview - Darker text with improved readability */
.tt-tour-overview-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    /* No additional padding - parent container handles it */
    text-align: left; /* Ensure proper alignment */
}

.tt-tour-overview-content h3,
.tt-tour-overview-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

/* Tour Highlights - Level 3 Content */
.tt-highlights-list {
    list-style: none;
    margin: 0;
    /* No additional padding - parent container handles it */
}

.tt-highlights-list li {
    position: relative;
    padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-xl);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    border: none !important;
}

.tt-highlights-list li:last-child {
    border: none !important;
    margin-bottom: 0;
}

.tt-highlights-list li i {
    position: absolute;
    left: 0;
    top: calc(var(--spacing-sm) + 2px);
    color: #4CAF50;
    font-size: 14px;
    width: 18px;
    height: 18px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INCLUDES/EXCLUDES SECTION - Complete Rewrite */
.tt-tour-includes {
    background: transparent;
    border-radius: 0;
    margin-bottom: var(--section-gap);
    padding: 0;
    position: relative;
    box-sizing: border-box;
    transition: none;
    border: none !important;
    box-shadow: none !important;
}

/* Remove accent decoration */
.tt-tour-includes::before {
    display: none;
}

.tt-tour-includes:hover {
    transform: none;
}

/* HIDE THE MAIN INCLUDES TITLE - We only want the sub-titles */
.tt-tour-includes h2 {
    display: none !important;
}

/* INCLUDES CONTENT - Improved side by side layout */
.tt-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
}

/* Remove separator line */
.tt-includes-grid::before {
    display: none;
}

.tt-includes,
.tt-not-includes {
    padding: 0;
}

.tt-includes h3,
.tt-not-includes h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    line-height: 1.3;
    position: relative;
    border-bottom: 2px solid #00a884;
}

.tt-includes h3::before,
.tt-not-includes h3::before {
    display: none;
}

/* Improved list styling */
.tt-includes-list,
.tt-not-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-includes-list li,
.tt-not-includes-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.tt-includes-list li:last-child,
.tt-not-includes-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Improved icon styling */
.tt-includes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.tt-not-includes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #c10000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tt-includes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tt-includes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tt-includes h3,
    .tt-not-includes h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tt-includes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tt-includes-list li,
    .tt-not-includes-list li {
        padding: 10px 0 10px 28px;
        font-size: 14px;
    }
    
    .tt-includes-list li::before,
    .tt-not-includes-list li::before {
        width: 18px;
        height: 18px;
        top: 14px;
        background-size: 10px;
    }
}

/* Sidebar Styling */
.tt-booking-card {
    background: var(--tt-page-bg);
    border-radius: 0; /* Remove rounding */
    overflow: hidden;
    transition: all 0.3s ease;
}

.tt-booking-card:hover {
    transform: translateY(-1px);
}

.tt-tripadvisor {
    background: #f8f9fa;
    padding: var(--spacing-md);
    text-align: center;
    border: none !important;
}

.tt-rating-stars {
    color: #00af87;
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
}

.tt-rating-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.tt-sidebar-meta {
    padding: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    border: none !important;
}

.tt-sidebar-meta-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    background: #f8f9fa;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    border: none !important;
}

.tt-sidebar-meta-item i {
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
    width: 14px;
    text-align: center;
}

.tt-price-wrap {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border: none !important;
}

.tt-price-from {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.tt-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--tt-blue-500) !important;
    line-height: 1;
}

/* Ensure all price elements are blue */
.price-amount,
.tour-price,
.booking-price,
.total-price .summary-value,
#summary-total,
.price-display .price-amount,
.estimated-total #estimated-total,
.summary-value,
.tt-price-currency {
    color: var(--tt-blue-500) !important;
}

/* Override any red price colors */
body .tt-price-amount,
body .price-amount,
body .tour-price,
body .booking-price {
    color: var(--tt-blue-500) !important;
}

.tt-price-currency {
    font-size: 24px;
    margin-right: var(--spacing-xs);
}

.tt-book-now {
    display: block;
    background: #00a884; /* Sea pickle green */
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    margin: var(--spacing-md);
    text-decoration: none;
    border: none !important;
    border-radius: 0; /* Flat design */
    text-transform: uppercase;
    transition: none; /* Remove animations */
    letter-spacing: 0.5px;
    box-shadow: none; /* Remove shadow */
}

.tt-book-now:hover {
    background: #008f72; /* Darker sea pickle green */
    color: white;
    text-decoration: none;
    transform: none; /* Remove animations */
    box-shadow: none; /* Remove shadow */
}

.tt-book-now:focus,
.tt-book-now:active {
    outline: none;
    box-shadow: none;
}

.tt-additional-info {
    padding: var(--spacing-md);
    font-size: 13px;
    color: var(--text-muted);
}

.tt-additional-info p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.tt-additional-info i {
    color: #4CAF50;
    margin-right: var(--spacing-xs);
    width: 16px;
    text-align: center;
}

/* Reviews Section */
.tt-reviews-section {
    background: var(--tt-page-bg);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    margin-top: var(--section-gap);
}

.tt-reviews-container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.tt-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
}

.tt-reviews-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.tt-reviews-count-text {
    font-size: 14px;
    color: var(--text-muted);
}

.tt-leave-review-btn {
    background: var(--primary-color);
    color: white;
    border: none !important;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tt-leave-review-btn:hover {
    background: #a50000;
}

/* Review Form */
.tt-review-form {
    background: #f8f9fa;
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    border: none !important;
}

.tt-review-form h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.tt-form-group {
    margin-bottom: var(--spacing-md);
}

.tt-form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.tt-form-group input,
.tt-form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none !important;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.tt-form-group input:focus,
.tt-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border: none !important;
    box-shadow: 0 0 0 2px rgba(193, 0, 0, 0.1);
}

.tt-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.tt-submit-review-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tt-submit-review-btn:hover {
    background: #a50000;
}

/* Responsive Design - Maintaining alignment across all breakpoints */
@media (max-width: 1024px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }

    .tt-tour-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .tt-includes-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .tt-includes-grid::before {
        display: none;
    }

    .tt-includes,
    .tt-not-includes {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --card-padding: 16px;
        --section-gap: 24px;
        --grid-gap: 16px;
    }

    .tt-tour-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .tour-title {
        font-size: 28px;
    }

    .tour-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    /* Maintain EXACT same container structure on mobile */

    /* Level 2: All section headers maintain identical padding and alignment */
    .tt-tour-section h2,
    .tt-tour-info-section h2,
    .tt-tour-overview-section h2,
    .tt-tour-highlights h2,
    .tt-tour-itinerary h2,
    .tt-tour-includes h2 {
        padding: 0 var(--card-padding) 0 var(--card-padding);
        position: relative;
        left: 0;
        text-indent: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Level 3: All content containers maintain identical padding */
    .tt-tour-info-section .tt-tour-info-grid,
    .tt-tour-section .tt-tour-description,
    .tt-tour-itinerary .tt-route-map,
    .tt-tour-overview-section .tt-tour-overview-content,
    .tt-tour-highlights .tt-highlights-list,
    .tt-tour-includes .tt-includes-grid {
        padding: 0 var(--card-padding);
    }

    .tt-tour-info-item {
        padding: var(--spacing-md);
    }

    .tt-tour-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .tt-destination-item {
        padding-left: var(--spacing-lg);
    }

    .tt-destination-title i {
        left: calc(-1 * var(--spacing-lg));
    }

    .tt-route-map::before {
        left: calc(var(--card-padding) + 8px);
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
        --card-padding: 12px;
        --section-gap: 20px;
        --grid-gap: 12px;
    }

    .tt-tour-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .tour-title {
        font-size: 24px;
    }

    /* Maintain EXACT same container structure even on smallest screens */

    /* Level 2: All section headers maintain identical structure and alignment */
    .tt-tour-section h2,
    .tt-tour-info-section h2,
    .tt-tour-overview-section h2,
    .tt-tour-highlights h2,
    .tt-tour-itinerary h2,
    .tt-tour-includes h2 {
        padding: 0 var(--card-padding) 0 var(--card-padding);
        font-size: 18px;
        position: relative;
        left: 0;
        text-indent: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Level 3: All content containers maintain identical structure */
    .tt-tour-info-section .tt-tour-info-grid,
    .tt-tour-section .tt-tour-description,
    .tt-tour-itinerary .tt-route-map,
    .tt-tour-overview-section .tt-tour-overview-content,
    .tt-tour-highlights .tt-highlights-list,
    .tt-tour-includes .tt-includes-grid {
        padding: 0 var(--card-padding);
    }

    /* Stack includes/excludes on very small screens */
    .tt-includes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .tt-price-amount {
        font-size: 28px;
    }

    .tt-book-now {
        font-size: 14px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Animation and Transitions */
.tt-tour-info-item,
.tt-booking-card,
.tt-tour-combined-section,
.tt-tour-includes {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tt-tour-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Focus States for Accessibility */
.tt-book-now:focus,
.tt-leave-review-btn:focus,
.tt-submit-review-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .tt-tour-sidebar,
    .tt-reviews-section {
        display: none;
    }

    .tt-tour-container {
        flex-direction: column;
        max-width: none;
        padding: 0;
    }

    .tt-tour-combined-section {
        box-shadow: none;
        border: none !important;
    }
}

/* Pe
rfect Section Alignment - Visual Consistency */

/* Ensure all sections have consistent visual weight */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-overview-section,
.tt-tour-highlights,
.tt-tour-itinerary {
    min-height: 60px;
    /* Minimum height for visual consistency */
}

/* Remove all section separators */
.tt-tour-section::after,
.tt-tour-info-section::after,
.tt-tour-overview-section::after,
.tt-tour-highlights::after {
    display: none;
}

/* Ensure includes/excludes section aligns with the combined section */
.tt-tour-includes {
    /* Match the exact styling of the combined section */
    border: none !important;
}

/* Perfect text alignment within sections */
.tt-tour-description p,
.tt-tour-overview-content p {
    text-align: justify;
    text-justify: inter-word;
}

/* Consistent list item spacing */
.tt-highlights-list li,
.tt-includes-list li,
.tt-not-includes-list li {
    min-height: 24px;
    /* Ensures consistent line height */
    display: flex;
    align-items: flex-start;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

/* Icon alignment fix for lists */
.tt-highlights-list li i,
.tt-includes-list li i,
.tt-not-includes-list li i {
    margin-top: 2px;
    /* Fine-tune icon alignment with text */
}

/* Ensure route map items are perfectly aligned */
.tt-destination-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tt-destination-title {
    display: flex;
    align-items: flex-start;
    min-height: 24px;
}

/* Perfect grid alignment for tour info */
.tt-tour-info-grid {
    align-items: stretch;
    /* Ensure all grid items have same height */
}

.tt-tour-info-item {
    height: 100%;
    /* Fill grid cell completely */
    box-sizing: border-box;
}

/* Includes/excludes grid alignment */
.tt-includes-grid {
    align-items: flex-start;
}

.tt-includes,
.tt-not-includes {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tt-includes-list,
.tt-not-includes-list {
    flex: 1;
}

/* Fine-tune section spacing for perfect alignment */
.tt-tour-section:first-of-type,
.tt-tour-info-section:first-of-type {
    padding-top: var(--card-padding);
}

/* Ensure consistent bottom spacing */
.tt-tour-section:last-of-type,
.tt-tour-overview-section:last-of-type,
.tt-tour-highlights:last-of-type,
.tt-tour-itinerary:last-of-type {
    padding-bottom: var(--card-padding);
}

/* Perfect mobile alignment */
@media (max-width: 768px) {

    .tt-tour-section::after,
    .tt-tour-info-section::after,
    .tt-tour-overview-section::after,
    .tt-tour-highlights::after {
        margin: 0 var(--card-padding);
    }
}

/* Accessibility improvements while maintaining alignment */
.tt-tour-info-item:focus-within,
.tt-highlights-list li:focus-within,
.tt-includes-list li:focus-within,
.tt-not-includes-list li:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
    border: none !important;
}

/* Smooth transitions for better UX while maintaining alignment */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-overview-section,
.tt-tour-highlights,
.tt-tour-itinerary,
.tt-tour-includes {
    transition: all 0.3s ease;
}

/* Print styles - maintain alignment in print */
@media print {

    .tt-tour-section,
    .tt-tour-info-section,
    .tt-tour-overview-section,
    .tt-tour-highlights,
    .tt-tour-itinerary {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .tt-tour-section::after,
    .tt-tour-info-section::after,
    .tt-tour-overview-section::after,
    .tt-tour-highlights::after {
        display: none;
    }
}

/* CRIT
ICAL: Perfect Title Alignment Override - Ensures all titles line up exactly */
.tt-tour-section h2,
.tt-tour-info-section h2,
.tt-tour-overview-section h2,
.tt-tour-highlights h2,
.tt-tour-itinerary h2,
.tt-tour-includes h2 {
    /* Force identical positioning - highest specificity */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: var(--card-padding) !important;
    padding-right: var(--card-padding) !important;
    text-indent: 0 !important;
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    /* Ensure consistent text flow */
    text-align: left !important;
    direction: ltr !important;
    /* Reset any inherited spacing */
    border-left: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    outline-offset: 0 !important;
}

/* Ensure parent containers don't interfere with title alignment */
.tt-tour-combined-section,
.tt-tour-includes {
    /* Reset any container transforms or positioning */
    transform: none;
    position: relative;
    left: 0;
    right: 0;
}

/* Additional alignment insurance for all section containers */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-overview-section,
.tt-tour-highlights,
.tt-tour-itinerary {
    /* Ensure section containers don't offset titles */
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: 0;
    right: 0;
}

/* Visual alignment guide (remove in production) - uncomment to see alignment */
/*
.tt-tour-section h2::before,
.tt-tour-info-section h2::before,
.tt-tour-overview-section h2::before,
.tt-tour-highlights h2::before,
.tt-tour-itinerary h2::before,
.tt-tour-includes h2::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tt-pink-500);
    font-weight: normal;
    z-index: 9999;
}
*/

/* FINAL OVERRIDE - MAKE ALL CONTAINERS IDENTICAL */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-overview-section,
.tt-tour-highlights,
.tt-tour-itinerary,
.tt-tour-includes {
    /* FORCE IDENTICAL CSS FOR ALL CONTAINERS */
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    border: none !important;
}

/* Remove border from first section */
.tt-tour-info-section {
    border-top: none !important;
}

/* FORCE IDENTICAL HEADERS */
.tt-tour-section h2,
.tt-tour-info-section h2,
.tt-tour-overview-section h2,
.tt-tour-highlights h2,
.tt-tour-itinerary h2 {
    /* FORCE IDENTICAL CSS FOR ALL HEADERS */
    padding: 0 !important;
    margin: 0 0 var(--spacing-lg) 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--text-primary) !important;
}

/* HIDE THE MAIN INCLUDES TITLE - FORCE OVERRIDE */
.tt-tour-includes h2 {
    display: none !important;
}

/* FORCE INCLUDES SUB-TITLES TO ALIGN WITH OTHER SECTION TITLES */
.tt-includes h3,
.tt-not-includes h3 {
    /* MAKE THESE ALIGN EXACTLY LIKE SECTION TITLES */
    padding: 0 !important;
    margin: 0 0 var(--spacing-lg) 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--text-primary) !important;
}

/* FORCE IDENTICAL CONTENT */
.tt-tour-info-grid,
.tt-tour-description,
.tt-route-map,
.tt-tour-overview-content,
.tt-highlights-list,
.tt-includes-grid {
    /* Identical CSS for all content */
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

/* CSS LOAD
ING TEST - If you see this in browser dev tools, the CSS is loading */
body.single-tour::before {
    content: "TOUR-LAYOUT-FIX-LOADED";
    display: none;
}

/* RES
PONSIVE DESIGN - PERCENTAGE-BASED ALIGNMENT WITH HEADER */

/* Tablet Layout - Proper Centering */
@media (max-width: 1024px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 95%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }

    .tt-tour-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .tt-includes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .tt-includes-grid::before {
        display: none;
    }

    .tt-includes,
    .tt-not-includes {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Mobile Layout - Perfect Centering */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --card-padding: 16px;
        --section-gap: 24px;
        --grid-gap: 16px;
    }

    body.single-tour {
        text-align: center;
    }

    .tt-tour-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        text-align: center;
    }

    .tt-tour-content {
        text-align: center;
    }

    .tt-tour-sidebar {
        text-align: center;
    }

    .tour-title {
        font-size: 28px;
        text-align: center;
    }

    .tour-meta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .tour-location {
        text-align: center;
    }

    /* Maintain section structure on mobile */
    .tt-tour-section h2,
    .tt-tour-info-section h2,
    .tt-tour-overview-section h2,
    .tt-tour-highlights h2,
    .tt-tour-itinerary h2,
    .tt-tour-includes h2 {
        padding: 0 0 0 0;
        position: relative;
        left: 0;
        text-indent: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .tt-tour-info-item {
        padding: var(--spacing-md);
    }

    .tt-tour-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .tt-destination-item {
        padding-left: var(--spacing-lg);
    }

    .tt-destination-title i {
        left: calc(-1 * var(--spacing-lg));
    }

    .tt-route-map::before {
        left: calc(var(--card-padding) + 8px);
    }
}

/* Small Mobile Layout - Maintain header alignment */
@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
        --card-padding: 12px;
        --section-gap: 20px;
        --grid-gap: 12px;
    }

    .tt-tour-container {
        width: 98%;
        /* Almost full width on small phones */
        margin-left: 1%;
        /* Minimal margins for small screens */
        margin-right: 1%;
        padding: var(--spacing-sm);
    }

    .tour-title {
        font-size: 24px;
    }

    /* Maintain section structure on small screens */
    .tt-tour-section h2,
    .tt-tour-info-section h2,
    .tt-tour-overview-section h2,
    .tt-tour-highlights h2,
    .tt-tour-itinerary h2,
    .tt-tour-includes h2 {
        padding: 0 0 0 0;
        font-size: 18px;
        position: relative;
        left: 0;
        text-indent: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .tt-price-amount {
        font-size: 28px;
    }

    .tt-book-now {
        font-size: 14px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Large Desktop - Maintain perfect alignment with header */
@media (min-width: 1400px) {
    .tt-tour-container {
        width: 80%;
        /* Slightly narrower on large screens */
        margin-left: 10%;
        /* Centered with larger margins */
        margin-right: 10%;
    }
}

/* RE
SPONSIVE DESIGN - LOGO-ALIGNED LAYOUT */

/* Tablet Layout - Maintain logo alignment */
@media (max-width: 1024px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 90%;
        margin-left: 8%;
        /* Adjust for tablet logo alignment */
        margin-right: 2%;
    }

    .tt-tour-content {
        min-width: 68.5%;
        /* Reduced padding for tablets */
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }
}

/* Mobile Layout - Maintain logo alignment */
@media (max-width: 768px) {
    .tt-tour-container {
        width: 95%;
        margin-left: 4%;
        /* Mobile logo alignment */
        margin-right: 1%;
    }

    .tt-tour-content {
        padding-left: 0.5%;
        /* Minimal padding for mobile */
    }

    .tour-title {
        font-size: 28px;
    }
}

/* Small Mobile Layout - Maintain logo alignment */
@media (max-width: 480px) {
    .tt-tour-container {
        width: 98%;
        margin-left: 2%;
        /* Small mobile logo alignment */
        margin-right: 0%;
        padding: var(--spacing-sm);
    }

    .tt-tour-content {
        padding-left: 0;
        /* No extra padding on small screens */
    }

    .tour-title {
        font-size: 24px;
    }
}

/* Large Desktop - Perfect logo alignment */
@media (min-width: 1400px) {
    .tt-tour-container {
        width: 80%;
        margin-left: 15%;
        /* Larger screens logo alignment */
        margin-right: 5%;
    }

    .tt-tour-content {
        padding-left: 3%;
        /* More padding for large screens */
    }
}

/* RESPONSIV
E DESIGN - WIDE SPAN LAYOUT */

/* Large Tablets and Small Laptops - Maintain wide span */
@media (max-width: 1024px) and (min-width: 769px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 92%;
        /* Wide span on tablets */
        max-width: 1200px;
        margin-left: 6%;
        /* Maintain logo alignment */
        margin-right: 2%;
    }

    .tt-tour-content {
        padding-left: 1%;
        /* Reduced padding for tablets */
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }
}

/* Standard Tablets - Wide span but responsive */
@media (max-width: 768px) and (min-width: 481px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 90%;
        /* Still wide on tablets */
        margin-left: 5%;
        /* Maintain alignment */
        margin-right: 5%;
    }

    .tt-tour-content {
        padding-left: 0.5%;
        /* Minimal padding for tablets */
    }

    .tour-title {
        font-size: 28px;
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }
}

/* Mobile Only - Narrower for usability */
@media (max-width: 480px) {
    .tt-tour-container {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 95%;
        /* Mobile width */
        margin-left: 2.5%;
        margin-right: 2.5%;
        padding: var(--spacing-sm);
    }

    .tt-tour-content {
        padding-left: 0;
        /* No extra padding on mobile */
    }

    .tour-title {
        font-size: 24px;
    }

    .tt-tour-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }
}

/* Large Desktop - Maximum span */
@media (min-width: 1400px) {
    .tt-tour-container {
        width: 96%;
        /* Even wider on large screens */
        max-width: 1600px;
        /* Larger max-width */
        margin-left: 6%;
        /* Maintain logo alignment */
        margin-right: -2%;
        /* Extend right edge */
    }

    .tt-tour-content {
        padding-left: 2%;
        /* More padding for large screens */
    }
}

/* Extra Large Desktop - Full span */
@media (min-width: 1600px) {
    .tt-tour-container {
        width: 97%;
        /* Maximum span */
        max-width: 1800px;
        margin-left: 5%;
        margin-right: -2%;
    }

    .tt-tour-content {
        padding-left: 2.5%;
    }
}

/* R
ESPONSIVE META WRAPPER - 2 ROWS ON SMALL SCREENS */

/* Medium screens - start wrapping to 2 rows */
@media (max-width: 900px) {
    .tour-meta-wrapper {
        gap: var(--spacing-xs);
        justify-content: flex-start;
    }

    .travel-flexibly,
    .tour-rating,
    .tour-meta-item,
    .tour-category-badge {
        font-size: 12px;
        /* Slightly smaller text */
        flex-basis: auto;
        max-width: 48%;
        /* Allow 2 items per row */
    }
}

/* Small screens - force 2 rows layout */
@media (max-width: 768px) {
    .tour-meta-wrapper {
        gap: var(--spacing-xs);
        align-items: flex-start;
    }

    .travel-flexibly,
    .tour-rating,
    .tour-meta-item,
    .tour-category-badge {
        font-size: 11px;
        /* Smaller text for mobile */
        flex-basis: calc(50% - var(--spacing-xs));
        /* 2 items per row */
        max-width: calc(50% - var(--spacing-xs));
        margin-bottom: var(--spacing-xs);
    }
}

/* Very small screens - stack vertically if needed */
@media (max-width: 480px) {
    .tour-meta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
    }

    .travel-flexibly,
    .tour-rating,
    .tour-meta-item,
    .tour-category-badge {
        font-size: 12px;
        flex-basis: auto;
        max-width: 100%;
        margin-bottom: 0;
        justify-content: center;
        /* Center align on mobile */
    }
}

/* F
ORCE GREEN COLORS FOR ALL SUBTITLE AND DESCRIPTION ELEMENTS */

/* Tour subtitle/description - force green */
.single-tour .tt-tour-excerpt,
.single-tour .tour-excerpt,
.single-tour .tour-description,
.single-tour .tour-subtitle {
    color: var(--theme-palette-color-9) !important;
}

/* Tour location icon - force green */
.single-tour .tour-location i {
    color: var(--theme-palette-color-9) !important;
}

/* Category badges - force green by default */
.single-tour .tour-category-badge {
    color: var(--theme-palette-color-9) !important;
}

/* Any red text should use vibrant colors */
.single-tour [style*="color: red"],
.single-tour [style*="color: var(--tt-green-500)"],
.single-tour .text-red {
    color: var(--tt-green-500) !important;
}

/* FORC
E ALL RED ICONS TO GREEN - HIGHEST PRIORITY */

/* Route map location icons - force green */
.single-tour .tt-destination-title i,
.single-tour .tt-route-map i,
.single-tour .route-map i {
    color: var(--theme-palette-color-9) !important;
    border-color: var(--theme-palette-color-9) !important;
    border: none !important;
}

/* Tour location icon in header - force green */
.single-tour .tour-location i,
.single-tour .tt-tour-location i {
    color: var(--theme-palette-color-9) !important;
}

/* Tour category meta icon - force green */
.single-tour .tour-category-badge i,
.single-tour .tour-meta-item i {
    color: var(--theme-palette-color-9) !important;
}

/* Any map marker or location icons - force green */
.single-tour .fa-map-marker,
.single-tour .fa-map-marker-alt,
.single-tour .fa-location-dot,
.single-tour i[class*="map"],
.single-tour i[class*="location"] {
    color: var(--theme-palette-color-9) !important;
}

/* Override any inline styles or other CSS that makes icons red */
.single-tour i[style*="color: red"],
.single-tour i[style*="color: var(--tt-green-500)"],
.single-tour i[style*="color: var(--tt-pink-500)"] {
    color: var(--theme-palette-color-9) !important;
}