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

.mountains-hero-content {
    position: relative;
    z-index: 1;
}

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

.mountains-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.8;
}

.mountain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mountain-card-large {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.mountain-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mountain-card-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mountain-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.mountain-card-overlay h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mountain-card-overlay .elevation {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mountain-card-body {
    padding: 30px;
}

.mountain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.mountain-stat {
    padding: 15px;
    background: var(--gray-light);
    border-radius: 15px;
}

.mountain-stat i {
    font-size: 1.5rem;
    color: var(--savanna-gold);
    margin-bottom: 8px;
    display: block;
}

.mountain-stat strong {
    display: block;
    color: var(--deep-brown);
    font-size: 1.1rem;
}

.mountain-stat span {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.route-list {
    margin: 20px 0;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: var(--transition-fast);
}

.route-item:hover {
    background: var(--gray-light);
    border-radius: 10px;
}

.route-item:last-child {
    border-bottom: none;
}

.route-info h4 {
    color: var(--deep-brown);
    margin-bottom: 3px;
}

.route-info span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.route-difficulty {
    text-align: right;
}

.route-difficulty .price {
    font-weight: 700;
    color: var(--savanna-gold);
    font-size: 1.1rem;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 40px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--earth-green);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:hover td {
    background: var(--gray-light);
}

.comparison-table .check {
    color: var(--earth-green);
}

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

    .mountain-cards {
    grid-template-columns: 1fr;
    }

    .mountain-card-image {
    height: 250px;
    }

    .mountain-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    }

    .comparison-table {
    overflow-x: auto;
    }
}