.banner-xekhach {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.banner-xekhach__bg {
    position: absolute;
    inset: 0;
    background: url("/wp-content/uploads/2026/03/481675565_1095733042354130_3710550913245419893_n.jpg") center center / cover no-repeat;
    transform: scale(1);
    animation: bannerZoom 14s ease-in-out infinite alternate;
    z-index: -3;
}

.banner-xekhach__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(20, 144, 63, 0.88) 0%, rgba(20, 144, 63, 0.58) 45%, rgba(0, 0, 0, 0.42) 100%);
    z-index: -2;
}

.banner-xekhach::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 25%);
    z-index: -1;
    pointer-events: none;
}

.banner-xekhach__content {
    position: relative;
    text-align: center;
    max-width: 760px;
    color: #fff;
    animation: bannerFadeUp 1s ease both;
}

.banner-xekhach__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.banner-xekhach__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
	color: #FFF;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.banner-xekhach__desc {
    margin: 0 auto;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.banner-xekhach__actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.banner-xekhach__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 12px;
    background: #fff;
    color: #14903f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.banner-xekhach__btn:hover {
    transform: translateY(-2px);
    background: #f7fff9;
    color: #0f7a34;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

@keyframes bannerZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .banner-xekhach {
        min-height: 260px;
        padding: 24px 16px;
    }

    .banner-xekhach__badge {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .banner-xekhach__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .banner-xekhach__btn {
        width: 100%;
        max-width: 240px;
    }
}

.xe-container {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.xe-filter select{
    padding: 10px 14px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
    color: #333;
    outline: none;
	margin: 0;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.xe-filter select:hover{
    border-color: #14903f;
}

.xe-filter select:focus{
    border-color: #14903f;
    box-shadow: 0 0 0 4px rgba(20, 144, 63, 0.15);
    outline: none;
}

.xe-filter select:active{
    border-color: #14903f;
}
.title-h3 {
	font-size: 24px;
	text-transform: uppercase;
	color: var(--fs-color-primary);
}
/* bọc select để có mũi tên đẹp hơn */
.xe-filter{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
	margin-bottom: 30px;
}

.xe-filter-item{
    position: relative;
	width: 30%;
}

.xe-filter-item::after{
    content: "⌄";
    position: absolute;
    right: 12px;
    top: 43%;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
    color: #14903f;
    font-size: 14px;
}

/* =========================
CARD
========================= */

.xe-card{
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    height: 300px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    border: 1px solid rgba(20, 144, 63, 0.08);
}

.xe-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,144,63,0.00) 0%, rgba(20,144,63,0.03) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.xe-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.14);
    border-color: rgba(20, 144, 63, 0.18);
}

.xe-card:hover::after{
    opacity: 1;
}

/* =========================
IMAGE
========================= */

.xe-image{
    width: 40%;
    overflow: hidden;
}

.xe-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

/* =========================
INFO
========================= */

.xe-info{
    width: 60%;
    padding: 25px;
    transition: transform .3s ease;
}

.xe-card:hover .xe-info{
    transform: translateY(-2px);
}

.xe-title{
    font-size: 22px;
    color: #14903f;
    margin-bottom: 0;
    transition: color .3s ease;
}

.xe-card:hover .xe-title{
    color: #0f7a34;
}

/* =========================
TIMELINE
========================= */

.xe-timeline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:20px 0;
}

.xe-start,
.xe-end{
    width:15%;
    position: relative;
}

.xe-start{
    text-align:left;
}

.xe-end{
    text-align:right;
}

.time{
    font-size:18px;
    font-weight:700;
    display:block;
    color:#111;
}

.place{
    font-size:14px;
    color:#111;
}

.xe-line{
    width:70%;
    position:relative;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.line{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:2px;
    background: linear-gradient(90deg, #14903f 0%, #89d19f 50%, #14903f 100%);
    transform:translateY(-50%);
    opacity: .35;
    transition: opacity .3s ease;
}

.xe-card:hover .line{
    opacity: .7;
}

.bus{
    position:relative;
    background:#fff;
    padding:4px 10px;
    font-size:18px;
    z-index:2;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
    transition: transform .45s ease, box-shadow .45s ease;
}

.xe-card:hover .bus{
    transform: translateX(12px);
    box-shadow: 0 10px 20px rgba(20,144,63,.18);
}

.xe-line:before,
.xe-line:after{
    content:"";
    width:10px;
    height:10px;
    background:#14903f;
    border-radius:50%;
    display:inline-block;
    position:absolute;
    z-index:2;
    box-shadow: 0 0 0 4px rgba(20,144,63,.12);
}

.xe-line:before{
    left:-2px;
}

.xe-line:after{
    right:-8px;
}

/* =========================
BOTTOM
========================= */

.xe-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 16px;
    flex-wrap: wrap;
}

.xe-price{
    background: linear-gradient(135deg, #ff6a3d 0%, #ff5722 100%);
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow: 0 8px 18px rgba(255, 87, 34, 0.22);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.xe-card:hover .xe-price{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff5a26 0%, #ff3d00 100%);
    box-shadow: 0 12px 24px rgba(255, 61, 0, 0.28);
}

/* =========================
BUTTONS
========================= */

.xe-buttons{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap: wrap;
}

.btn-call,
.btn-zalo,
.btn-book{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
    overflow: hidden;
}

/* Gọi nổi bật */
.btn-call{
    background: linear-gradient(135deg, #14903f 0%, #0f7a34 100%);
    color: #fff;
    border: 1px solid #14903f;
    box-shadow: 0 10px 18px rgba(20, 144, 63, 0.22);
}

.btn-call:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(20, 144, 63, 0.28);
    color: #fff;
}

/* Zalo nổi bật */
.btn-zalo{
    background: linear-gradient(135deg, #1a8cff 0%, #007bff 100%);
    color: #fff;
    border: 1px solid #007bff;
    box-shadow: 0 10px 18px rgba(0, 123, 255, 0.22);
}

.btn-zalo:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 123, 255, 0.28);
    color: #fff;
}

/* Đặt vé nổi bật nhất */
.btn-book{
    background: linear-gradient(135deg, #ffb11b 0%, #ff8c00 100%);
    color: #fff;
    border: 1px solid #ff9800;
    box-shadow: 0 12px 22px rgba(255, 152, 0, 0.25);
}

.btn-book:hover{
    background: linear-gradient(135deg, #ff9d00 0%, #ff7600 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 28px rgba(255, 118, 0, 0.30);
    color: #fff;
}

/* ánh sáng quét nhẹ */
.btn-call::before,
.btn-zalo::before,
.btn-book::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
}

.btn-call:hover::before,
.btn-zalo:hover::before,
.btn-book:hover::before{
    left: 140%;
}

/* =========================
EXCERPT
========================= */

.excerpt p{
    font-size:14px;
    margin-bottom:10px;
    color:#111;
    line-height:1.6;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px){
    .xe-card{
        flex-direction: column;
        height: auto;
    }

    .xe-image{
        width: 100%;
        height: 250px;
    }

    .xe-info{
        width: 100%;
    }
}

@media (max-width: 600px){
    .xe-title{
        font-size: 18px;
    }

    .xe-timeline{
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .xe-start,
    .xe-end,
    .xe-line{
        width: 100%;
    }

    .xe-end{
        text-align: left;
    }

    .xe-line:after{
        right: 0;
    }

    .xe-buttons{
        width: 100%;
    }

    .btn-call,
    .btn-zalo,
    .btn-book{
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
    }
	.xe-filter-item {
		width: 100%;
	}
}
/* =========================
LOADING
========================= */

.xe-loading-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.xe-loading-card{
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.xe-loading-thumb{
    width: 40%;
    min-height: 220px;
    border-radius: 14px;
    background: #f1f1f1;
}

.xe-loading-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.xe-loading-line{
    height: 16px;
    border-radius: 999px;
    background: #f1f1f1;
}

.w-100{ width: 100%; }
.w-85{ width: 85%; }
.w-70{ width: 70%; }
.w-60{ width: 60%; }

.shimmer{
    position: relative;
    overflow: hidden;
}

.shimmer::after{
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.65),
        rgba(255,255,255,0)
    );
    animation: xeShimmer 1.2s infinite;
}

@keyframes xeShimmer{
    100%{
        left: 160%;
    }
}

.xe-error,
.xe-empty{
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff5f5;
    color: #c62828;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.xe-empty{
    background: #f8fff9;
    color: #14903f;
}

/* =========================
PAGINATION
========================= */

.xe-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.xe-pagination a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.xe-pagination a:hover{
    border-color: #14903f;
    color: #14903f;
    transform: translateY(-2px);
}

.xe-pagination a.is-active{
    background: #14903f;
    border-color: #14903f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(20,144,63,.22);
}

.xe-pagination a.is-disabled{
    opacity: .45;
    pointer-events: none;
}

/* =========================
RESPONSIVE LOADING
========================= */

@media (max-width: 992px){
    .xe-loading-card{
        flex-direction: column;
    }

    .xe-loading-thumb,
    .xe-loading-content{
        width: 100%;
    }

    .xe-loading-thumb{
        min-height: 220px;
    }
}