/**
 * ==========================================================================
 * TRANG CHỦ - TỔNG HỢP CÁC SECTION (HOME PAGE SECTIONS CSS)
 * ==========================================================================
 */

/* --------------------------------------------------------------------------
 * 1. HERO BANNER
 * -------------------------------------------------------------------------- */
#hero .heroBannerSwiper,
#hero .swiper-slide {
    width: 100%;
    height: 100%;
}

#hero .swiper-slide img {
    height: 100%;
}

#hero .hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

#hero .hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    opacity: 1;
    margin: 0;
    transition: width .25s ease, background .25s ease;
}

#hero .hero-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--brand-accent);
}

#hero .hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

#hero .hero-nav:hover {
    background: var(--brand-primary);
    transform: translateY(-50%) scale(1.06);
}

#hero .hero-nav-prev { left: 1rem; }
#hero .hero-nav-next { right: 1rem; }

@media (max-width: 640px) {
    #hero .hero-nav { display: none; }
}

/* --------------------------------------------------------------------------
 * 2. TUYẾN ĐƯỜNG PHỔ BIẾN (POPULAR ROUTES)
 * -------------------------------------------------------------------------- */
#tpbPrev, #tpbNext {
    top: 100px;
}

@media (min-width: 640px) {
    #tpbPrev, #tpbNext {
        top: 110px;
    }
}

#tpbDots .dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    display: inline-block;
    flex-shrink: 0;
}

#tpbDots .dot.active {
    background: var(--brand-primary);
    width: 24px;
}

/* --------------------------------------------------------------------------
 * 3. ĐỘI XE CAO CẤP (FLEET)
 * -------------------------------------------------------------------------- */
.fleet-reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fleet-reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (min-width: 640px) {
    .fleet-mobile-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        transform: none !important;
    }

    .fleet-mobile-swiper .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
        height: auto;
    }
}

@media (min-width: 1024px) {
    .fleet-mobile-swiper .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
 * 4. ĐIỂM ĐÓN TRẢ / TRUNG CHUYỂN (ZONES SECTION)
 * -------------------------------------------------------------------------- */
.pd-zone-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pd-badge {
    background: var(--brand-accent-light);
    color: var(--brand-accent-dark);
    border: 1px solid var(--brand-accent-border);
}

.pd-shuttle-banner {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 25px -5px var(--brand-primary-shadow);
}

@media (min-width: 640px) {
    .pd-shuttle-banner {
        padding: 20px 24px;
    }
}

.pd-shuttle-free {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--brand-accent);
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
}

.pd-hotline-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
}

.pd-hotline-btn:hover {
    background: var(--brand-accent);
    color: var(--text-main);
    border-color: var(--brand-accent);
}

.pd-mobile-select {
    width: 100%;
    appearance: none;
    background-color: #fff;
    border: 2px solid var(--brand-primary);
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 36px 10px 14px;
    border-radius: 12px;
    outline: none;
    box-shadow: 0 2px 8px var(--brand-primary-shadow);
}

@media (min-width: 768px) {
    .pd-zone-layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 20px;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .pd-zone-layout {
        grid-template-columns: 280px 1fr;
        gap: 24px;
    }
}

.pd-zone-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid transparent;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.pd-zone-nav-item:hover {
    background: #f1f5f9;
}

.pd-zone-nav-item.is-active {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    box-shadow: 0 4px 12px var(--brand-primary-shadow);
}

.pd-zone-nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-zone-nav-item.is-active .pd-zone-nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pd-zone-nav-item.is-active .pd-nav-title {
    color: #fff;
}

.pd-zone-nav-item.is-active .pd-nav-sub {
    color: rgba(255, 255, 255, 0.8);
}

.pd-zone-nav-item.is-active .pd-nav-chevron {
    color: #fff;
    transform: translateX(2px);
}

.pd-zone-panel {
    display: none;
}

.pd-zone-panel.is-active {
    display: block;
    animation: pdFadeIn 0.2s ease-out;
}

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

/* --------------------------------------------------------------------------
 * 5. VIDEO GIỚI THIỆU (WATCH VIDEOS)
 * -------------------------------------------------------------------------- */
.sn-hero {
    height: clamp(480px, 80vh, 800px);
    background: #0B0E13;
    font-family: var(--font-body, system-ui, sans-serif);
    position: relative;
}

.sn-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(11, 14, 19, 0.15) 0%, rgba(11, 14, 19, 0.9) 100%);
}

.sn-vignette {
    background: radial-gradient(ellipse at center, transparent 30%, rgba(11, 14, 19, 0.85) 100%);
}

.sn-light-ray {
    background: radial-gradient(ellipse at 50% 40%, var(--brand-primary-shadow) 0%, transparent 55%);
}

.sn-cta {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 24px;
    transition: transform 0.25s ease;
}

.sn-play-container {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}

.sn-sound-waves {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.sn-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--brand-primary-border);
    animation: sn-wave-expand 2.4s ease-out infinite;
}

.sn-wave-2 {
    animation-delay: 1s;
}

@keyframes sn-wave-expand {
    0% {
        transform: scale(0.75);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.sn-play {
    position: relative;
    width: 5.75rem;
    height: 5.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.sn-cta:hover .sn-play {
    transform: scale(1.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), 0 0 30px var(--brand-primary-shadow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.sn-cta:active .sn-play {
    transform: scale(0.94);
}

.sn-play-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-primary-shadow) 0%, transparent 70%);
    filter: blur(12px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.sn-cta:hover .sn-play-glow {
    opacity: 0.85;
}

.sn-play-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 2px;
    background: conic-gradient(from 0deg, var(--brand-accent), transparent 45%, var(--brand-primary), transparent 85%, var(--brand-accent));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: sn-ring-spin 3s linear infinite;
}

@keyframes sn-ring-spin {
    to {
        transform: rotate(360deg);
    }
}

.sn-play-icon {
    color: #fff;
    font-size: 2.4rem;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sn-click-spark {
    position: absolute;
    background: radial-gradient(circle, var(--brand-accent) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    animation: spark-out 0.45s ease-out forwards;
}

@keyframes spark-out {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.sn-text-content {
    margin-top: 12px;
}

.sn-cta-title {
    display: block;
    margin-bottom: 6px;
}

.sn-title-line {
    color: #F3EEE4;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.sn-title-line-2 {
    color: var(--brand-accent);
}

.sn-cta-sub {
    display: block;
    color: rgba(243, 238, 228, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}

.sn-duration {
    color: var(--brand-primary);
    font-family: monospace;
}

#videoModal.active {
    pointer-events: auto;
}

#videoModal.active #modalOverlay {
    opacity: 1;
}

#videoModal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.sn-cinematic-frame {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 50px -10px rgba(0, 0, 0, 0.9);
}

.sn-modern-close {
    transition: all 0.25s ease;
}

.sn-modern-close:hover {
    transform: scale(1.05);
    color: var(--brand-accent);
    background: var(--brand-primary-light);
    border-color: var(--brand-primary-border);
}

.sn-modern-close:active {
    transform: scale(0.94);
}

@media (max-width: 640px) {
    .sn-cinematic-frame {
        border-radius: 8px;
    }
    .sn-title-line {
        font-size: 1.15rem;
    }
    .sn-sound-waves {
        display: none;
    }
}

/* --------------------------------------------------------------------------
 * 6. KHUYẾN MÃI / DỊCH VỤ (PROMOTION)
 * -------------------------------------------------------------------------- */
.pd-news-badge-icon {
    font-size: 1.5rem;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
}

.pd-news-section-title {
    color: var(--text-main);
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pd-news-section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pd-news-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.pd-news-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary-border);
}

.pd-news-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    width: 100%;
}

.pd-news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-news-card:hover .pd-news-card-media img {
    transform: scale(1.05);
}

.pd-news-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pd-news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pd-news-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    background-color: var(--brand-primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pd-news-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pd-news-card-title {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.975rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.pd-news-card:hover .pd-news-card-title {
    color: var(--brand-primary-dark);
}

.pd-news-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.pd-news-card-action {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    margin-top: auto;
}

.promotion-reveal-section .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #D4DADA;
    opacity: 1;
    border-radius: 999px;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.promotion-reveal-section .swiper-pagination-bullet-active {
    background-color: var(--brand-primary) !important;
    width: 18px;
}

.pd-news-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--brand-primary-dark);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.7rem 2rem;
    border-radius: 9999px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.pd-news-btn-all:hover {
    background-color: var(--text-main);
    transform: translateY(-1px);
}

.pd-news-btn-all i {
    transition: transform 0.25s ease;
}

.pd-news-btn-all:hover i {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
 * 7. THƯ VIỆN HÌNH ẢNH (GALLERIE)
 * -------------------------------------------------------------------------- */
.pd-gallery-section {
    background: var(--bg-page);
}

.pd-underline {
    background: var(--brand-primary);
}

.pd-tag {
    background: var(--brand-primary);
    color: #fff;
}

.pd-hover-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

.pd-zoom-icon {
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pd-phone-list {
    margin-top: 2px;
}

.pd-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 9999px;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pd-phone-link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateX(2px);
}

.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pd-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.pd-lightbox-stage {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-lightbox-stage img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: block;
}

.pd-lightbox-stage img.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.pd-lightbox-spinner {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--brand-primary);
    animation: pd-spin 0.8s linear infinite;
    display: none;
}

.pd-lightbox-spinner.is-active {
    display: block;
}

@keyframes pd-spin {
    to {
        transform: rotate(360deg);
    }
}

.pd-lightbox-caption {
    position: absolute;
    bottom: -44px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pd-lightbox-caption .pd-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pd-lightbox-counter {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pd-lightbox-close svg {
    width: 20px;
    height: 20px;
}

.pd-lightbox-close:hover {
    background: var(--brand-primary);
    transform: rotate(90deg);
}

.pd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pd-lightbox-nav svg {
    width: 22px;
    height: 22px;
}

.pd-lightbox-nav:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.pd-lightbox-prev {
    left: 24px;
}

.pd-lightbox-next {
    right: 24px;
}

/* --------------------------------------------------------------------------
 * 8. ĐÁNH GIÁ CỦA HÀNH KHÁCH (CUSTOMER REVIEW MASONRY)
 * -------------------------------------------------------------------------- */
.pd-review-section {
    background: var(--bg-page);
}

.pd-review-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 640px) {
    .pd-review-grid { column-count: 2; }
}

@media (min-width: 1024px) {
    .pd-review-grid { column-count: 3; }
}

@media (min-width: 1280px) {
    .pd-review-grid { column-count: 4; }
}

.pd-review-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pd-review-card:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.pd-review-shot-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.pd-review-image-wrap {
    position: relative;
    overflow: hidden;
}

.pd-review-image {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.pd-review-card:hover .pd-review-image {
    transform: scale(1.03);
}

.pd-review-zoom-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pd-review-card:hover .pd-review-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.pd-review-empty {
    column-span: all;
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

.pd-review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 24px;
}

.pd-review-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.pd-review-lightbox-stage {
    position: relative;
    max-width: min(90vw, 480px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-review-lightbox-stage img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: block;
}

.pd-review-lightbox-stage img.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.pd-review-lightbox-spinner {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--brand-primary);
    animation: pd-review-spin 0.8s linear infinite;
    display: none;
}

.pd-review-lightbox-spinner.is-active {
    display: block;
}

@keyframes pd-review-spin {
    to {
        transform: rotate(360deg);
    }
}

.pd-review-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.pd-review-lightbox-close svg {
    width: 20px;
    height: 20px;
}

.pd-review-lightbox-close:hover {
    background: var(--brand-primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .pd-review-lightbox-close {
        top: 12px;
        right: 12px;
    }
}

/* --------------------------------------------------------------------------
 * 9. TIN TỨC & DỊCH VỤ (NEWS / SERVICES)
 * -------------------------------------------------------------------------- */
.pd-transport-section {
    background: var(--bg-page);
}

.pd-road-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--brand-accent) 0 28px,
        transparent 28px 46px
    );
    opacity: .9;
}

.pd-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-primary-dark);
    padding-bottom: 6px;
    border-bottom: 3px solid var(--brand-accent);
}

.pd-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 18px -6px var(--brand-primary-shadow);
}

.pd-title {
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

.pd-title span {
    color: var(--brand-primary-dark);
}

.pd-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.pd-carousel { position: relative; }
.pd-services-swiper { padding: 12px 4px 24px; overflow: visible; }

@media (min-width: 1024px) {
    .pd-services-swiper { overflow: hidden; }
}

.pd-services-swiper .swiper-slide {
    height: auto;
}

.pd-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 14px -8px rgba(0, 0, 0, .08);
    transition: box-shadow .3s ease, transform .3s ease;
}

.pd-card:hover {
    box-shadow: 0 18px 34px -14px var(--brand-primary-shadow);
    transform: translateY(-5px);
}

.pd-card-media {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.pd-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-card-media-dash {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--brand-accent) 0 16px,
        var(--brand-primary-dark) 16px 32px
    );
}

.pd-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pd-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.pd-card-desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.65;
    flex: 1;
    text-align: justify;
}

.pd-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-weight: 600;
    font-size: .875rem;
    color: var(--brand-primary-dark);
}

.pd-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.pd-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pd-nav-btn:hover { background: var(--brand-primary); color: #fff; }
.pd-nav-btn:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 2px; }
.pd-nav-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }

.pd-pagination { display: flex; align-items: center; gap: 6px; width: auto !important; }

.pd-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #C9D6D5;
    opacity: 1;
    border-radius: 999px;
    margin: 0 !important;
    transition: background .2s ease, width .2s ease;
    cursor: pointer;
}

.pd-pagination .swiper-pagination-bullet-active {
    background: var(--brand-primary);
    width: 22px;
    border-radius: 999px;
}

.pd-empty {
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    background: #fff;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    text-align: center;
    padding: 44px 24px;
}

/* --------------------------------------------------------------------------
 * 10. ĐÁNH GIÁ SWIPER TRANG CHỦ (CONTACT / REVIEWS SLIDER)
 * -------------------------------------------------------------------------- */
.swiperDanhGia .swiper-pagination-bullet-active {
    background: var(--brand-primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
}

.swiperDanhGia .swiper-pagination-bullet {
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
 * 11. GIỚI THIỆU / VÌ SAO CHỌN CHÚNG TÔI (INTRODUCTION)
 * -------------------------------------------------------------------------- */
.text-brand-dark {
    color: var(--text-main);
}

.text-brand-teal {
    color: var(--brand-primary);
}

.bg-brand-light {
    background-color: var(--brand-primary-light);
}

.swiperTaiSao .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiperTaiSao .swiper-pagination-bullet-active {
    background: var(--brand-primary) !important;
    width: 20px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
}

.reason-card {
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s cubic-bezier(.22,1,.36,1), border-color .35s ease;
}

.reason-card:hover {
    transform: translateY(-6px);
}

.reason-icon {
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.reason-card:hover .reason-icon {
    transform: scale(1.08) rotate(-4deg);
}

.btn-pd-submit {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%) !important;
    border-color: var(--brand-primary-hover);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px var(--brand-primary-shadow);
    transition: transform .14s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn-pd-submit:hover {
    background: linear-gradient(135deg, var(--brand-primary-hover) 0%, var(--brand-primary-dark) 100%) !important;
    border-color: var(--brand-primary-dark);
    box-shadow: 0 8px 20px var(--brand-primary-shadow);
    transform: translateY(-2px);
}

.btn-pd-submit:active {
    transform: translateY(1px) scale(0.98);
}
