/* route-pages.css — additive, scoped styles for car-transport route pages.
   Does not override or modify main.css. Uses site theme color #ff5e14. */

/* Header nav fit — with the added "ROUTES" menu item, tighten spacing at
   the xl breakpoint (1200-1399px) so all top-level items stay on one line
   instead of wrapping. Only kicks in where the inline nav is shown
   (d-xl-block); below 1200px the off-canvas menu is used instead. */
@media (min-width: 1200px) and (max-width: 1599px) {
    .route-nav-fit ul li:not(:last-child) {
        margin-right: 16px !important;
    }
    .route-nav-fit ul li > a {
        font-size: 13px !important;
    }
}

/* Get Quote button — guarantee the label never wraps/clips regardless of
   how tight the column gets. */
.header__btn .v-btn {
    white-space: nowrap;
}

.route-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0 35px;
    padding: 0;
    list-style: none;
}

.route-facts li {
    background: #f8f8f8;
    border-left: 3px solid #ff5e14;
    padding: 14px 20px;
    flex: 1 1 200px;
    border-radius: 4px;
}

.route-facts li strong {
    display: block;
    color: #1a1a2b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.route-facts li span {
    color: #454545;
    font-size: 15px;
}

.route-section {
    margin-bottom: 45px;
}

.route-section h2 {
    margin-bottom: 15px;
}

.route-section h3 {
    margin: 22px 0 10px;
    font-size: 20px;
}

.route-section h4 {
    margin: 16px 0 8px;
    font-size: 17px;
    color: #1a1a2b;
}

.route-section p {
    text-align: justify;
    margin-bottom: 14px;
}

.route-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .route-why-grid {
        grid-template-columns: 1fr;
    }
}

.route-why-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.route-why-card h4 {
    color: #ff5e14;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
}

.route-why-card p {
    margin: 0;
    font-size: 14.5px;
    text-align: left;
}

.carrier-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .carrier-options {
        grid-template-columns: 1fr;
    }
}

.carrier-card {
    background: #1a1a2b;
    color: #dfdfdf;
    padding: 24px 20px;
    border-radius: 6px;
    text-align: center;
}

.carrier-card i {
    font-size: 30px;
    color: #ff5e14;
    margin-bottom: 12px;
    display: block;
}

.carrier-card h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 17px;
}

.carrier-card p {
    font-size: 13.5px;
    margin: 0;
    text-align: center;
}

.process-steps {
    counter-reset: step;
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.process-steps li {
    position: relative;
    padding: 0 0 22px 50px;
    border-left: 2px solid #ff5e14;
    margin-left: 18px;
}

.process-steps li:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.process-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -19px;
    top: 0;
    width: 36px;
    height: 36px;
    background: #ff5e14;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.process-steps li h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.process-steps li p {
    margin: 0;
    font-size: 14.5px;
}

.doc-checklist {
    padding: 0;
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

@media (max-width: 575px) {
    .doc-checklist {
        grid-template-columns: 1fr;
    }
}

.doc-checklist li {
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14.5px;
}

.doc-checklist li i {
    color: #ff5e14;
    margin-right: 8px;
}

.route-hero-img {
    border-radius: 6px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.route-cta-box {
    background: linear-gradient(135deg, #1a1a2b, #2a2a45);
    border-radius: 8px;
    padding: 35px 30px;
    text-align: center;
    margin: 40px 0;
    color: #fff;
}

.route-cta-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.route-cta-box p {
    color: #dfdfdf;
    margin-bottom: 20px;
}

.route-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.route-cta-btns a {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.route-cta-btns .btn-call {
    background: #ff5e14;
    color: #fff;
}

.route-cta-btns .btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.route-cta-btns .btn-quote {
    background: transparent;
    border: 1px solid #ff5e14;
    color: #fff;
}

.route-breadcrumb-list {
    font-size: 13.5px;
    color: #888;
    margin-bottom: 10px;
}

.route-breadcrumb-list a {
    color: #ff5e14;
}

.related-routes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .related-routes {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.related-routes a {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13.5px;
    text-align: center;
    color: #1a1a2b;
    display: block;
    transition: .25s;
}

.related-routes a:hover {
    background: #ff5e14;
    color: #fff;
}

/* Popular routes grid used on vehicle-transportation.html */
.popular-routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .popular-routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.popular-route-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 18px 16px;
    text-align: center;
    transition: .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

.popular-route-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

.popular-route-card i {
    color: #ff5e14;
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.popular-route-card h4 {
    font-size: 14.5px;
    margin: 0 0 6px;
}

.popular-route-card p {
    font-size: 12.5px;
    color: #777;
    margin: 0 0 10px;
    text-align: center;
}

.popular-route-card a.pr-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #ff5e14;
    text-decoration: none;
}

.popular-routes-viewall {
    text-align: center;
    margin-top: 25px;
}
