/* ==========================================================================
   Yala Leopard Tracks - Dedicated Tours & Transport Stylesheet (tours.css)
   Theme: Earth Olive Green (#606C38) & Warm Pastel Cream (#FAF6EE)
   ========================================================================== */

/* Tours Hero Header Section */
.tours-hero-section {
    background-color: var(--bg-pastel-cream);
    padding: 130px 20px 45px;
    text-align: center;
    border-bottom: 1px solid rgba(96, 108, 56, 0.12);
}

.tours-hero-section .hero-title {
    color: var(--text-primary);
    text-shadow: none;
    margin-top: 12px;
}

.tours-hero-section .hero-subtitle {
    color: var(--text-muted);
    text-shadow: none;
    max-width: 780px;
    margin: 0 auto;
}

/* Trust Bar */
.trust-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-chip {
    background: rgba(231, 235, 217, 0.4);
    color: #475128;
    font-family: var(--font-brand);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(96, 108, 56, 0.2);
}

/* Category Filter Tabs Bar */
.tours-filter-section {
    background-color: var(--bg-pastel-cream);
    padding: 28px 0 10px;
}

.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    font-family: var(--font-brand);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    background-color: #FFFFFF;
    color: #475128;
    border: 1px solid rgba(96, 108, 56, 0.25);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-tab:hover {
    background-color: #E7EBD9;
    color: #475128;
    border-color: #606C38;
}

.filter-tab.active {
    background-color: #606C38 !important;
    color: #FFFFFF !important;
    border-color: #606C38 !important;
    box-shadow: 0 4px 15px rgba(96, 108, 56, 0.3);
}

/* Tours Grid & Cards */
.tours-grid-section {
    background-color: var(--bg-pastel-cream);
    padding: 36px 0 70px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tour-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 32px 28px;
    border: 1px solid rgba(96, 108, 56, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(96, 108, 56, 0.18);
    border-color: #606C38;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 8px 0 6px;
    line-height: 1.35;
}

.tour-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.tour-pricing-box {
    background-color: #FAF6EE;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 20px;
    border: 1px dashed rgba(96, 108, 56, 0.25);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #606C38;
    line-height: 1;
}

.price-unit {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.tour-route-box {
    background-color: #E7EBD9;
    color: #475128;
    font-size: 0.82rem;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    line-height: 1.45;
}

.tour-details-list {
    margin-bottom: 20px;
}

.detail-item {
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions-title {
    font-family: var(--font-brand);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.inclusions-list {
    list-style: none;
    margin-bottom: 24px;
}

.inclusions-list li {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fleet Showcase Section */
.fleet-section {
    background-color: var(--bg-pastel-cream);
    padding: 60px 0;
    border-top: 1px solid rgba(96, 108, 56, 0.12);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.fleet-card {
    background: var(--bg-pastel-cream);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    /* border: 1px solid rgba(96, 108, 56, 0.15); */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.fleet-icon {
    font-size: 2.2rem;
    color: #606C38;
    margin-bottom: 12px;
}

.fleet-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.fleet-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.fleet-capacity {
    font-family: var(--font-brand);
    font-size: 0.76rem;
    font-weight: 700;
    color: #475128;
    background: #E7EBD9;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
}

/* Responsive Media Queries for Tours Page */
@media (max-width: 992px) {
    .tours-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .tours-grid,
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .tours-hero-section {
        padding: 100px 16px 30px !important;
    }

    .tours-hero-section .hero-title {
        font-size: 1.8rem !important;
    }

    .trust-bar-wrapper {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .trust-chip {
        font-size: 0.72rem !important;
        padding: 5px 12px !important;
    }

    .tour-card,
    .fleet-card {
        padding: 20px 16px !important;
    }
}

@media (max-width: 480px) {
    .tours-hero-section .hero-title {
        font-size: 1.5rem !important;
    }

    .btn-gold-pill,
    .btn-light-pill {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 18px !important;
    }
}