.popular-routes-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.route-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.route-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.route-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.price-info {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: none;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: white;
    margin-bottom: 2px;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.cents {
    font-size: 1.2rem;
    margin-left: 2px;
    font-weight: 600;
    color: var(--primary-color);
}

.route-info {
    padding: 15px;
    background: white;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-color);
    padding: 4px 0;
}

.route-point i {
    color: var(--primary-color);
    font-size: 0.6rem;
}

.route-line {
    width: 2px;
    height: 20px;
    background-color: var(--primary-color);
    margin: 2px 0 2px 4px;
}

@media (max-width: 768px) {
    .route-card {
        margin: 10px;
    }
    
    .route-image {
        height: 180px;
    }

    .price-info {
        top: 10px;
        left: 10px;
    }

    .price-label {
        font-size: 0.9rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .cents {
        font-size: 1.1rem;
    }
} 