/* Page Specific Visual Polish */
.hero-banner-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 124, 70, 0.82) 100%), url('images/banner/bnr1.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 60px 0 40px 0;
    position: relative;
}

.hero-title-main {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-subtitle-sub {
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 780px;
}

.hero-trust-bar {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
    align-items: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.trust-badge-item i {
    font-size: 20px;
    color: #FFC107;
}

.quick-scan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.quick-scan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-scan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(15, 124, 70, 0.1);
    border-color: #0f7c46;
}

.quick-scan-icon {
    width: 52px;
    height: 52px;
    background: rgba(15, 124, 70, 0.1);
    color: #0f7c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
    font-size: 22px;
}

.quick-scan-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.quick-scan-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.service-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0f7c46;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.service-detail-title {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-title i {
    color: #0f7c46;
}

.cities-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.city-link-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.city-link-pill:hover {
    background: #0f7c46;
    color: #ffffff;
    border-color: #0f7c46;
    transform: translateY(-2px);
}

.step-book-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-number-badge {
    width: 36px;
    height: 36px;
    background: #0f7c46;
    color: #ffffff;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 15px;
}

.fare-table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.fare-table-custom th {
    background: #0f7c46;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
}

.fare-table-custom td {
    padding: 14px 16px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
}

.fare-table-custom tr:last-child td {
    border-bottom: none;
}

.fare-table-custom tr:nth-child(even) td {
    background: #f8fafc;
}

.desktop-fare-table,
.desktop-comparison-table {
    display: block;
}

.mobile-fare-cards,
.mobile-comparison-cards {
    display: none;
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 28px;
    }

    .hero-subtitle-sub {
        font-size: 15px;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .desktop-fare-table,
    .desktop-comparison-table {
        display: none !important;
    }

    .mobile-fare-cards,
    .mobile-comparison-cards {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }
}