
/* ===== Popular Routes Section ===== */
.popular-routes-section { background: #f8faff; }

.popular-route-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.popular-route-inner {
    background: #fff;
    border-radius: 12px;
    padding: 22px 18px 16px;
    border: 1px solid #e8edf5;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.popular-route-inner:hover {
    border-color: var(--main-color);
    box-shadow: 0 8px 28px rgba(14,158,77,0.15);
    transform: translateY(-4px);
}

.popular-route-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--main-color);
    border-radius: 12px 0 0 12px;
}

.popular-route-card .route-icon {
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 12px;
}

.popular-route-card .route-details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.popular-route-card .route-from,
.popular-route-card .route-to {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.popular-route-card .route-label-sm {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.popular-route-card .route-city {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.popular-route-card .route-arrow {
    font-size: 20px;
    color: var(--main-color);
    flex-shrink: 0;
}

.popular-route-card .route-badge {
    display: inline-block;
    background: #e8f8ef;
    color: var(--main-color);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.popular-route-card .route-cta {
    font-size: 13px;
    color: var(--main-color);
    font-weight: 600;
    border-top: 1px solid #f0f4f8;
    padding-top: 10px;
    margin-top: 4px;
}

.popular-route-card .route-cta i {
    transition: transform 0.2s;
}

.popular-route-inner:hover .route-cta i {
    transform: translateX(4px);
}
/* ===== End Popular Routes ===== */
