/* =============================================
   ROUTES & LOCATION PAGES - VipTime Design
   ============================================= */

/* Hero Section - inherited from custom.sss.css */
.vt-page-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.vt-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}

.vt-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
}

.vt-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.vt-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, .6);
}

.vt-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.vt-page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0 .5rem;
    line-height: 1.2;
}

.vt-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* Section Title */
.vt-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

/* Route Cards */
.vt-route-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.vt-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.vt-route-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8,145,178,.1), rgba(6,182,212,.15));
    color: var(--primary, #0891b2);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vt-route-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vt-route-title .bi-arrow-right {
    color: var(--primary, #0891b2);
    font-size: 1rem;
}

.vt-route-feature {
    font-size: .9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.vt-route-feature .bi-star-fill {
    color: #f59e0b;
}

.vt-route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.vt-route-label {
    display: block;
    font-size: .75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .25rem;
}

.vt-route-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0891b2);
}

.vt-route-vehicle {
    font-size: .95rem;
    color: #1e293b;
}

.vt-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .85rem 1.5rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary, #0891b2), var(--secondary, #0e7490));
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .25s;
}

.vt-route-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, .3);
}

.vt-route-btn i {
    transition: transform .2s;
}

.vt-route-btn:hover i {
    transform: translateX(3px);
}

/* CTA Box */
.vt-cta-box {
    background: linear-gradient(135deg, var(--primary, #0891b2), var(--secondary, #0e7490));
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.vt-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.vt-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
}

.vt-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: #fff;
    color: var(--primary, #0891b2);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .25s;
}

.vt-cta-btn:hover {
    color: var(--primary, #0891b2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .3);
}

/* Responsive */
@media (max-width: 767.98px) {
    .vt-page-hero-title {
        font-size: 2rem;
    }

    .vt-section-title {
        font-size: 1.5rem;
    }

    .vt-route-card {
        padding: 1.5rem;
    }

    .vt-cta-box {
        padding: 2rem 1.5rem;
    }

    .vt-cta-title {
        font-size: 1.5rem;
    }

    .vt-cta-text {
        font-size: 1rem;
    }
}
