.kili-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)), 
                url('https://images.unsplash.com/photo-1529689681953-b363b799b4f2?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center 50%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.kili-hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.kili-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.mountain-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
    position: relative;
    z-index: 10;
}

.fact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.fact-card i {
    font-size: 2rem;
    color: var(--savanna-gold);
    margin-bottom: 10px;
}

.fact-card h3 {
    color: var(--earth-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.fact-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.route-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    position: sticky;
    top: 0px;
    z-index: 50;
    background: var(--light-cream);
    padding: 15px 0;
}

.route-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--earth-green);
    color: var(--earth-green);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-family: inherit;
    font-size: 0.9rem;
}

.route-tab:hover,
.route-tab.active {
    background: var(--earth-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.route-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 120px;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.route-header h2 {
    font-size: 2rem;
    color: var(--earth-green);
}

.route-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.route-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-meta-item i {
    font-size: 1.3rem;
    color: var(--savanna-gold);
}

.route-meta-item strong {
    color: var(--deep-brown);
}

.route-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.route-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.route-detail-card {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 15px;
}

.route-detail-card h4 {
    color: var(--earth-green);
    margin-bottom: 10px;
}

.route-detail-card ul {
    list-style: none;
}

.route-detail-card li {
    padding: 5px 0;
    color: #555;
}

.route-detail-card li i {
    color: var(--savanna-gold);
    margin-right: 8px;
}

.itinerary-preview {
    margin-top: 25px;
}

.itinerary-preview h4 {
    color: var(--earth-green);
    margin-bottom: 15px;
}

.day-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.day-number {
    font-weight: 700;
    color: var(--savanna-gold);
    min-width: 50px;
}

.elevation-profile {
    background: linear-gradient(to right, #4a6741, #8b7355, #c4a882, #ddd, #fff);
    height: 8px;
    border-radius: 4px;
    margin: 15px 0;
}

.pricing-options {
    margin: 25px 0;
}

.pricing-options h4 {
    color: var(--earth-green);
    margin-bottom: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.price-card {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--savanna-gold);
    background: white;
}

.price-card-duration {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 4px;
}

.price-card-pax {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.price-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--savanna-gold);
    line-height: 1;
}

.price-card small {
    color: var(--gray-medium);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .kili-hero h1 {
    font-size: 2.2rem;
    }

    .route-section {
    padding: 25px 20px;
    }

    .route-header h2 {
    font-size: 1.6rem;
    }

    .route-tabs {
    gap: 8px;
    }

    .route-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
    }
}
