.routes-section {
    width: 90%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.route-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.route-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.18);
}

.route-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#18c76f,#0d8f4e);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.route-info h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 6px;
}

.route-info p {
    color: #d5d5d5;
    font-size: 14px;
    margin-bottom: 5px;
}

.route-info span {
    color: #9be8b4;
    font-size: 13px;
}

.route-arrow {
    margin-left: auto;
    font-size: 28px;
    color: #18c76f;
    font-weight: bold;
}

@media(max-width:1200px){
    .routes-section{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .routes-section{
        grid-template-columns:1fr;
    }
}