/* ========== INNER PAGE SHARED STYLES ========== */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, #071830 0%, #0d2b5e 60%, #1a4a8a 100%);
    padding: 80px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/tempo_traveller_kanpur_hero.webp') center/cover no-repeat;
    opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; }
.page-hero h1 {
    font-size: 36px; font-weight: 800;
    color: #fff; line-height: 1.2;
    margin-bottom: 16px;
    max-width: 700px;
}
.page-hero p {
    font-size: 16px; color: rgba(255,255,255,0.80);
    max-width: 620px; line-height: 1.7;
    margin-bottom: 28px;
}
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-ctas .btn-primary { padding: 13px 28px; font-size: 15px; }
.page-hero-ctas .btn-wa { padding: 13px 28px; font-size: 15px; }

/* Inner page layout */
.inner-body { padding: 60px 0; background: #f4f7fb; }
.inner-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.inner-content { min-width: 0; }
.inner-content h2 {
    font-size: 24px; font-weight: 800; color: #0d2b5e;
    margin: 0 0 14px; line-height: 1.3;
}
.inner-content h3 {
    font-size: 18px; font-weight: 700; color: #0d2b5e;
    margin: 28px 0 10px;
}
.inner-content p {
    font-size: 15px; color: #444; line-height: 1.8;
    margin-bottom: 14px;
}
.inner-content ul {
    margin: 0 0 18px 0; padding: 0; list-style: none;
}
.inner-content ul li {
    font-size: 14.5px; color: #444; padding: 6px 0;
    display: flex; align-items: flex-start; gap: 10px;
    border-bottom: 1px solid #edf0f7;
}
.inner-content ul li i { color: #e8500a; margin-top: 3px; flex-shrink: 0; }

/* Vehicle image card */
.vehicle-img-card {
    background: #fff; border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,43,94,0.10);
    margin-bottom: 28px;
}
.vehicle-img-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.vehicle-img-caption {
    padding: 14px 18px;
    font-size: 13px; color: #666; text-align: center;
    border-top: 1px solid #f0f0f0;
}

/* Specs table */
.specs-table {
    width: 100%; border-collapse: collapse;
    margin-bottom: 28px; background: #fff;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 14px rgba(13,43,94,0.07);
}
.specs-table th {
    background: #0d2b5e; color: #fff;
    padding: 13px 18px; font-size: 13px;
    text-align: left; font-weight: 700;
}
.specs-table td {
    padding: 12px 18px; font-size: 14px; color: #333;
    border-bottom: 1px solid #edf0f7;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: #f8fafd; }
.specs-table td:first-child { font-weight: 600; color: #0d2b5e; width: 45%; }

/* Use case grid */
.usecase-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; margin-bottom: 28px;
}
.usecase-card {
    background: #fff; border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 12px rgba(13,43,94,0.07);
    display: flex; align-items: flex-start; gap: 14px;
}
.usecase-card i {
    width: 42px; height: 42px; flex-shrink: 0;
    background: #eef2fb; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #0d2b5e;
}
.usecase-card h4 { font-size: 14px; font-weight: 700; color: #0d2b5e; margin-bottom: 4px; }
.usecase-card p { font-size: 13px; color: #555; line-height: 1.55; margin: 0; }

/* Sidebar */
.inner-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-card {
    background: #fff; border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(13,43,94,0.09);
}
.sidebar-card h3 {
    font-size: 16px; font-weight: 700; color: #0d2b5e;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid #eef2fb;
}
.sidebar-card .btn-primary,
.sidebar-card .btn-wa {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; margin-bottom: 12px;
    padding: 13px; font-size: 14px;
}
.sidebar-card .btn-wa { margin-bottom: 0; }
.sidebar-fleet-links { list-style: none; padding: 0; margin: 0; }
.sidebar-fleet-links li { border-bottom: 1px solid #f0f3fa; }
.sidebar-fleet-links li:last-child { border-bottom: none; }
.sidebar-fleet-links a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 4px; font-size: 14px; color: #333;
    text-decoration: none; transition: color 0.2s;
}
.sidebar-fleet-links a:hover { color: #e8500a; }
.sidebar-fleet-links a i { color: #0d2b5e; font-size: 12px; }
.sidebar-fleet-links a.active { color: #e8500a; font-weight: 700; }
.sidebar-fleet-links a.active i { color: #e8500a; }

/* FAQ on inner pages */
.inner-faq { margin-top: 40px; }
.inner-faq h2 { font-size: 22px; font-weight: 800; color: #0d2b5e; margin-bottom: 20px; }

/* Related routes strip */
.related-routes {
    background: #0d2b5e; padding: 40px 0;
}
.related-routes h2 {
    font-size: 22px; font-weight: 800; color: #fff;
    margin-bottom: 20px; text-align: center;
}
.related-routes-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.related-route-btn {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 12px 16px;
    color: #fff; text-decoration: none; font-size: 13.5px; font-weight: 600;
    transition: background 0.2s;
}
.related-route-btn:hover { background: rgba(232,80,10,0.30); border-color: #e8500a; }
.related-route-btn i { font-size: 11px; opacity: 0.7; }

/* Responsive */
@media (max-width: 1024px) {
    .inner-grid { grid-template-columns: 1fr; }
    .inner-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .related-routes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 26px; }
    .page-hero { padding: 60px 0 44px; }
    .usecase-grid { grid-template-columns: 1fr; }
    .inner-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .page-hero h1 { font-size: 22px; }
    .page-hero p { font-size: 14px; }
    .related-routes-grid { grid-template-columns: 1fr; }
    .inner-body { padding: 40px 0; }
}

/* ========== FLEET HERO (Image-style: white bg) ========== */
.fleet-hero {
    background: #fff;
    padding: 50px 0 0;
    border-bottom: none;
}
.fleet-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
}
.fleet-hero-text .hero-label {
    font-size: 13px; color: #e8500a;
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.fleet-hero-text h1 {
    font-size: 36px; font-weight: 800;
    color: #0d2b5e; line-height: 1.2;
    margin-bottom: 14px;
}
.fleet-hero-text > p {
    font-size: 15px; color: #555;
    line-height: 1.75; margin-bottom: 20px;
    max-width: 520px;
}
/* Feature checklist */
.fleet-hero-features {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 8px;
}
.fleet-hero-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #333; font-weight: 500;
}
.fleet-hero-features li i { color: #e8500a; font-size: 14px; flex-shrink: 0; }
.fleet-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 28px;
}
.fleet-hero-badges span {
    display: flex; align-items: center; gap: 7px;
    background: #f0f4ff;
    border: 1px solid #d0daea;
    color: #0d2b5e; font-size: 13px; font-weight: 500;
    padding: 7px 14px; border-radius: 30px;
}
.fleet-hero-badges span i { color: #e8500a; font-size: 12px; }
.fleet-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero CTA Buttons */
.btn-call-lg, .btn-wa-lg, .btn-quote-lg {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 26px; border-radius: 9px;
    font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.22s;
    white-space: nowrap;
}
.btn-call-lg {
    background: linear-gradient(135deg, #e8500a 0%, #c94208 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(232,80,10,0.38);
    border: none;
}
.btn-call-lg:hover {
    background: linear-gradient(135deg, #c94208 0%, #a83200 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,80,10,0.50);
}
.btn-wa-lg {
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.38);
    border: none;
}
.btn-wa-lg:hover {
    background: linear-gradient(135deg, #1ebe5d 0%, #17a84f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.50);
}
.btn-quote-lg {
    background: linear-gradient(135deg, #0d2b5e 0%, #1a4a8a 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(13,43,94,0.35);
    border: none;
}
.btn-quote-lg:hover {
    background: linear-gradient(135deg, #071830 0%, #0d2b5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,43,94,0.50);
}

/* Fleet Hero Image */
.fleet-hero-img {
    position: relative;
}
.fleet-hero-img .img-vehicle {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.fleet-hero-img .img-vehicle img {
    width: 100%;
    height: auto;
    max-height: 340px;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}
.fleet-hero-img-badge {
    position: absolute; top: 16px; right: 16px;
    display: flex; gap: 8px; flex-direction: column; align-items: flex-end;
}
.badge-seats {
    background: #0d2b5e; color: #fff;
    font-size: 20px; font-weight: 800;
    padding: 8px 16px; border-radius: 10px;
    line-height: 1; display: flex; align-items: baseline; gap: 4px;
    box-shadow: 0 4px 14px rgba(13,43,94,0.35);
}
.badge-seats small { font-size: 11px; font-weight: 600; opacity: 0.9; }
.badge-ac {
    background: #f5c842;
    color: #0d2b5e; font-size: 12px; font-weight: 700;
    padding: 6px 12px; border-radius: 8px;
    display: flex; align-items: center;
    box-shadow: 0 2px 8px rgba(245,200,66,0.40);
}

/* ========== BLOG / PAGE CTA BOX ========== */
.blog-cta-box {
    background: linear-gradient(135deg, #0d2b5e 0%, #1a4a8a 100%);
    border-radius: 14px;
    padding: 32px 28px;
    margin: 32px 0;
    text-align: center;
}
.blog-cta-box h3 {
    font-size: 22px; font-weight: 800;
    color: #fff; margin-bottom: 10px;
}
.blog-cta-box p {
    font-size: 14px; color: rgba(255,255,255,0.80);
    margin-bottom: 20px;
}
.blog-cta-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
}
.blog-cta-btns .btn-primary,
.blog-cta-btns .btn-wa {
    padding: 13px 28px; font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(13,43,94,0.06);
}
.trust-strip-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.trust-strip-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600; color: #0d2b5e;
}
.trust-strip-item i { color: #e8500a; font-size: 15px; }

/* ========== VEHICLE FEATURES STRIP ========== */
.vehicle-features-strip {
    background: #f8fafc;
    border-top: 1px solid #e8edf5;
    border-bottom: 3px solid #0d2b5e;
    padding: 20px 0;
}
.vehicle-features-inner {
    display: flex; align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; gap: 16px;
}
.vf-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; color: #0d2b5e;
    text-align: center;
}
.vf-item i {
    width: 48px; height: 48px;
    background: #fff;
    border: 2px solid #e8edf5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #0d2b5e;
    box-shadow: 0 2px 8px rgba(13,43,94,0.08);
}

/* Fleet Hero Responsive */
@media (max-width: 1024px) {
    .fleet-hero-inner { grid-template-columns: 1fr; gap: 28px; }
    .fleet-hero-img { max-width: 600px; margin: 0 auto; width: 100%; }
    .fleet-hero-img .img-vehicle img { max-height: 300px; min-height: 200px; }
    .fleet-hero-text h1 { font-size: 30px; }
}
@media (max-width: 768px) {
    .fleet-hero { padding: 40px 0 0; }
    .fleet-hero-text h1 { font-size: 26px; }
    .fleet-hero-img .img-vehicle img { max-height: 260px; min-height: 180px; }
    .trust-strip-inner { justify-content: center; }
    .vehicle-features-inner { justify-content: center; gap: 20px; }
}
@media (max-width: 480px) {
    .fleet-hero-text h1 { font-size: 22px; }
    .fleet-hero-ctas { flex-direction: column; }
    .btn-call-lg, .btn-wa-lg, .btn-quote-lg { justify-content: center; width: 100%; padding: 14px 20px; }
    .fleet-hero-img .img-vehicle img { max-height: 220px; min-height: 160px; }
}
