/* Tour container base styles */
.tt-tour-container,
.tt-tour-content,
.tt-tour-combined-section {
    padding: var(--tt-space-8);
}

/* Tour section padding */
.tt-tour-section,
.tt-tour-info-section,
.tt-tour-highlights,
.tt-tour-includes {
    padding: 0 var(--tt-space-4);
}

/* Tour Highlights - Clean layout */
.tt-tour-combined-section .tt-tour-highlights,
.tt-tour-highlights {
    margin: var(--tt-space-7) 0;
    background: transparent; /* Make flat */
    display: block;
    clear: both;
    overflow: hidden;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
}

.tt-tour-combined-section .tt-tour-highlights h2,
.tt-tour-highlights h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--tt-text-primary);
    margin-bottom: var(--tt-space-4);
    display: block;
    clear: both;
}

.tt-tour-combined-section .tt-highlights-list,
.tt-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    clear: both;
}

.tt-tour-combined-section .tt-highlights-list li,
.tt-highlights-list li {
    display: block !important;
    margin-bottom: 15px !important;
    padding-left: 35px !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    font-weight: 400 !important;
    background: transparent; /* Make flat */
}

.tt-tour-combined-section .tt-highlights-list li i.fas.fa-check-circle,
.tt-highlights-list li i.fas.fa-check-circle,
.tt-tour-combined-section .tt-highlights-list li i,
.tt-highlights-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #00a884; /* Sea pickle green */
    color: var(--tt-white);
    border-radius: 0; /* Remove rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* What's Included Section - Same approach */
.tt-includes-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tt-includes-list li {
    display: block !important;
    margin-bottom: 15px !important;
    padding-left: 35px !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    font-weight: 400 !important;
    background: transparent; /* Make flat */
}

.tt-includes-list li i.fas.fa-check {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #00a884; /* Sea pickle green */
    color: var(--tt-white);
    border-radius: 0; /* Remove rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* What's Not Included Section - Red background */
.tt-not-includes-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tt-not-includes-list li {
    display: block !important;
    margin-bottom: 15px !important;
    padding-left: 35px !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    font-weight: 400 !important;
    background: transparent; /* Make flat */
}

.tt-not-includes-list li i.fas.fa-times {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #00a884; /* Sea pickle green - same for both */
    color: var(--tt-white);
    border-radius: 0; /* Remove rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Section headers - Darker and larger to match other sections */
.tt-tour-includes h2,
.tt-includes h3,
.tt-not-includes h3 {
    font-size: 22px !important; /* Match other section headings */
    font-weight: 600 !important;
    color: #222 !important; /* Darker color */
    margin-bottom: 15px !important;
}

/* Point 7: Make includes/excludes full width, use the same logo */
.tt-includes-grid {
    display: block !important; /* Full width instead of grid */
    width: 100% !important;
    margin-top: var(--tt-space-4);
    background: transparent; /* Make flat */
}

.tt-includes,
.tt-not-includes {
    min-height: auto;
    padding: 0 0 0 20px; /* Point 9: Add left padding for content */
    margin: 20px 0;
    width: 100% !important; /* Full width */
    background: transparent; /* Make flat */
}

/* Point 7: Use same logo/icon for both includes and excludes */
.tt-includes-list li i.fas.fa-check,
.tt-not-includes-list li i.fas.fa-times {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #00a884 !important; /* Sea pickle green - same for both */
    color: var(--tt-white);
    border-radius: 0; /* Remove rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Make sure both use the same check icon */
.tt-includes-list li i.fas.fa-check::before,
.tt-not-includes-list li i.fas.fa-times::before {
    content: "✓" !important; /* Same check mark for both */
}

/* Parent container */
.tt-tour-includes {
    margin: var(--tt-space-7) 0;
    background: transparent; /* Make flat */
    padding: 0;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
}

/* Tour Itinerary Section - Match "Main Tour Activity" style */
.tt-tour-detailed-itinerary {
    margin: 40px 0;
    padding: 0;
    border: none;
    background: white !important;
}

.tt-tour-detailed-itinerary h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    text-align: left;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.tt-tour-detailed-itinerary h2::before {
    content: "📍";
    margin-right: 10px;
    font-size: 20px;
}

.tt-tour-itinerary-list {
    margin-top: 0;
}

/* Style to match "Main Tour Activity" paragraph format */
.tt-itinerary-stop {
    display: block;
    margin-bottom: 20px;
    position: relative;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.tt-itinerary-stop-number {
    display: none;
}

.tt-itinerary-stop-content {
    flex: 1;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.tt-itinerary-stop-content h3 {
    display: none;
}

.tt-itinerary-stop-meta {
    display: none;
}

.tt-itinerary-description {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.tt-itinerary-description p {
    margin-bottom: 20px;
    text-align: justify;
}

.tt-itinerary-description p:last-child {
    margin-bottom: 0;
}

/* No itinerary message */
.tt-no-itinerary {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tt-tour-detailed-itinerary h2 {
        font-size: 24px;
    }
    
    .tt-itinerary-stop {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tt-itinerary-stop-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .tt-itinerary-stop:not(:last-child)::after {
        display: none;
    }
    
    .tt-itinerary-stop-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Stack includes/excludes vertically on mobile */
    .tt-includes-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}