/* ============================================================
   Video Reviews Page  —  Phu Tho DMC
   Brand color: #f1641e  |  Fonts: Poppins + Open Sans
   ============================================================ */
.video-review-page {
    --vr-primary: #f1641e;
    --vr-primary-dark: #e05210;
    --vr-ink: #222529;
    --vr-muted: #6b7177;
    --vr-line: #eef1f6;
    --vr-bg-soft: #f7f8fa;
    background: #ffffff;
    color: var(--vr-ink);
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

.video-review-page *,
.video-review-page *::before,
.video-review-page *::after {
    box-sizing: border-box;
}

/* Breadcrumb tweaks */
.video-review-page .breadcrumb-nav {
    border-bottom: 1px solid var(--vr-line);
}

/* ─── Hero ─────────────────────────────────────────────── */
.video-hero {
    align-items: center;
    background:
        linear-gradient(120deg, rgba(20, 22, 25, 0.82) 0%, rgba(34, 37, 41, 0.62) 100%),
        url('../images/about_banner_fashion.webp') no-repeat center/cover;
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 460px;
    padding: 90px 20px;
    position: relative;
    text-align: center;
}

.video-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 1;
}

.video-hero-label {
    align-items: center;
    background: rgba(241, 100, 30, 0.16);
    border: 1px solid rgba(241, 100, 30, 0.45);
    border-radius: 30px;
    color: #ffb98f;
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 1.5px;
    margin: 0 0 22px;
    padding: 7px 18px;
    text-transform: uppercase;
}

.video-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 22px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.video-hero-title span {
    color: var(--vr-primary);
}

.video-hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 660px;
}

.hero-scroll-cue {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    margin-top: 32px;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-scroll-cue:hover {
    color: var(--vr-primary);
    text-decoration: none;
}

.hero-scroll-cue i {
    animation: vr-bounce 1.6s infinite;
}

@keyframes vr-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ─── Trust / Stats Strip ──────────────────────────────── */
/* (Section removed) */

/* ─── Section scaffolding ──────────────────────────────── */
.review-section {
    padding: 70px 20px;
}

.featured-section {
    padding-bottom: 40px;
}

.grid-section {
    padding-top: 50px;
}

.cta-section {
    background: var(--vr-bg-soft);
}

.review-container {
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
}

.section-head {
    margin-bottom: 36px;
}

.section-head.center {
    text-align: center;
}

.section-eyebrow {
    color: var(--vr-primary);
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.review-section-title {
    color: var(--vr-ink);
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.section-head.center .review-section-title {
    position: relative;
    padding-bottom: 18px;
}

.section-head.center .review-section-title::after {
    background: var(--vr-primary);
    border-radius: 2px;
    bottom: 0;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 56px;
}

.review-section-subtitle {
    color: var(--vr-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 18px auto 0;
    max-width: 620px;
}

/* ─── Featured Video Review ────────────────────────────── */
.featured-review-card {
    background: #ffffff;
    border: 1px solid var(--vr-line);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(20, 22, 25, 0.07);
    display: grid;
    gap: 0;
    grid-template-columns: 1.25fr 1fr;
    overflow: hidden;
}

.featured-video-wrapper {
    aspect-ratio: 16 / 10;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.featured-video-wrapper img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.featured-video-wrapper video {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #000;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-video-wrapper:hover img {
    transform: scale(1.05);
}

.play-overlay {
    align-items: center;
    background: linear-gradient(rgba(20, 22, 25, 0.1), rgba(20, 22, 25, 0.35));
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: background 0.3s;
    width: 100%;
    z-index: 2;
}

.featured-video-wrapper:hover .play-overlay {
    background: linear-gradient(rgba(20, 22, 25, 0.2), rgba(20, 22, 25, 0.45));
}

.play-btn-circle {
    align-items: center;
    background: var(--vr-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(241, 100, 30, 0.22), 0 8px 24px rgba(241, 100, 30, 0.45);
    color: #ffffff;
    display: flex;
    height: 74px;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    width: 74px;
}

.play-btn-circle i {
    font-size: 24px;
    margin-left: 5px;
}

.featured-video-wrapper:hover .play-btn-circle {
    background-color: var(--vr-primary-dark);
    box-shadow: 0 0 0 14px rgba(241, 100, 30, 0.25), 0 10px 30px rgba(241, 100, 30, 0.6);
    transform: scale(1.08);
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
}

.featured-badge {
    align-items: center;
    align-self: flex-start;
    background: #fff0ea;
    border-radius: 20px;
    color: var(--vr-primary);
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    margin-bottom: 16px;
    padding: 5px 15px;
    text-transform: uppercase;
}

.featured-rating {
    font-size: 16px;
    margin-bottom: 14px;
}

.featured-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
}

.featured-quote {
    border-left: 3px solid var(--vr-primary);
    color: #4a4f55;
    font-size: 16px;
    font-style: italic;
    line-height: 1.85;
    margin: 0 0 26px;
    padding-left: 20px;
    position: relative;
}

.featured-quote::before {
    color: rgba(241, 100, 30, 0.18);
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 60px;
    left: 14px;
    position: absolute;
    top: -18px;
}

.featured-meta {
    border-top: 1px solid var(--vr-line);
    margin-top: auto;
    padding-top: 22px;
}

.traveler-info {
    align-items: center;
    display: flex;
    gap: 14px;
}

.avatar-circle {
    align-items: center;
    background: linear-gradient(135deg, var(--vr-primary), #ff8a4c);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    text-transform: uppercase;
    width: 48px;
}

.avatar-circle.sm {
    font-size: 15px;
    height: 38px;
    width: 38px;
}

.traveler-name {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
}

.verified-badge {
    align-items: center;
    color: #2e9e5b;
    display: inline-flex;
    font-family: 'Open Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    gap: 4px;
}

.traveler-sub {
    color: var(--vr-muted);
    font-size: 13px;
    margin-top: 3px;
}

.rating-stars {
    color: #ffb300;
    font-size: 14px;
    white-space: nowrap;
}

/* ─── Filter Bar ───────────────────────────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #dcdde1;
    border-radius: 25px;
    color: var(--vr-muted);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    transition: all 0.22s ease;
}

.filter-btn:hover {
    border-color: var(--vr-primary);
    color: var(--vr-primary);
}

.filter-btn.active {
    background: var(--vr-primary);
    border-color: var(--vr-primary);
    box-shadow: 0 6px 16px rgba(241, 100, 30, 0.28);
    color: #ffffff;
}

/* ─── Grid Reviews ─────────────────────────────────────── */
.reviews-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--vr-line);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(20, 22, 25, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    border-color: #f7d6c5;
    box-shadow: 0 16px 36px rgba(20, 22, 25, 0.1);
    transform: translateY(-6px);
}

.review-thumb-wrapper {
    aspect-ratio: 16 / 10;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.review-thumb-wrapper img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.review-thumb-wrapper video {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover .review-thumb-wrapper video {
    transform: scale(1.07);
}

.review-card:hover .review-thumb-wrapper img {
    transform: scale(1.07);
}

.review-thumb-wrapper .play-btn-circle {
    box-shadow: 0 0 0 7px rgba(241, 100, 30, 0.2), 0 6px 16px rgba(241, 100, 30, 0.4);
    height: 56px;
    width: 56px;
}

.review-thumb-wrapper .play-btn-circle i {
    font-size: 18px;
    margin-left: 3px;
}

.card-tag,
.card-duration {
    align-items: center;
    background: rgba(20, 22, 25, 0.72);
    border-radius: 6px;
    bottom: 12px;
    color: #ffffff;
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    gap: 5px;
    left: 12px;
    padding: 4px 9px;
    position: absolute;
    z-index: 3;
}

.card-duration {
    left: auto;
    right: 12px;
}

.review-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 22px 22px 20px;
}

.review-card-tour {
    color: var(--vr-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.review-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.review-card-quote {
    color: #5f666d;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.review-card-footer {
    align-items: center;
    border-top: 1px solid var(--vr-line);
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.reviewer-info {
    align-items: center;
    display: flex;
    gap: 10px;
}

.reviewer-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.reviewer-country {
    align-items: center;
    color: #2e9e5b;
    display: flex;
    font-size: 11.5px;
    gap: 4px;
    margin-top: 2px;
}

/* Empty filter state */
.reviews-empty {
    color: var(--vr-muted);
    padding: 50px 20px;
    text-align: center;
}

.reviews-empty i {
    color: #c9ced4;
    display: block;
    font-size: 40px;
    margin-bottom: 14px;
}

.reviews-empty p {
    font-size: 15px;
    margin: 0;
}

/* ─── Call To Action ───────────────────────────────────── */
.video-cta {
    align-items: center;
    background:
        linear-gradient(120deg, rgba(20, 22, 25, 0.88) 0%, rgba(34, 37, 41, 0.78) 100%),
        url('../images/about_banner_fashion.webp') no-repeat center/cover;
    border-radius: 18px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 70px 24px;
    text-align: center;
}

.video-cta-eyebrow {
    align-items: center;
    background: rgba(241, 100, 30, 0.18);
    border: 1px solid rgba(241, 100, 30, 0.45);
    border-radius: 30px;
    color: #ffb98f;
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    gap: 7px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding: 6px 16px;
    text-transform: uppercase;
}

.video-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 14px;
}

.video-cta-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 30px;
    max-width: 620px;
}

.video-cta-text strong {
    color: #ffb98f;
}

.video-cta-btn {
    align-items: center;
    background: var(--vr-primary);
    border: 1px solid var(--vr-primary);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(241, 100, 30, 0.4);
    color: #ffffff;
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    min-height: 52px;
    padding: 0 38px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.video-cta-btn:hover {
    background: var(--vr-primary-dark);
    border-color: var(--vr-primary-dark);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ─── Video Modal ──────────────────────────────────────── */
.video-modal {
    align-items: center;
    background: rgba(15, 16, 18, 0.92);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.video-modal.show {
    animation: vr-fade 0.25s ease;
    display: flex;
}

@keyframes vr-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    max-width: 920px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 36px;
    line-height: 1;
    position: absolute;
    right: 0;
    top: -46px;
    transition: color 0.2s, transform 0.2s;
}

.video-modal-close:hover {
    color: var(--vr-primary);
    transform: scale(1.15);
}

.video-iframe {
    border: none;
    height: 100%;
    width: 100%;
}

/* ─── Appear Animations ────────────────────────────────── */
.appear-animate {
    opacity: 0;
    transition: none;
}

.appear-animate.fadeInUp {
    animation: vr-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vr-fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 991px) {
    .featured-review-card {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 32px 28px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .video-hero {
        min-height: 360px;
        padding: 64px 16px;
    }

    .video-hero-title {
        font-size: 30px;
    }

    .video-hero-subtitle {
        font-size: 15px;
    }

    .review-section {
        padding: 50px 16px;
    }

    .review-section-title {
        font-size: 26px;
    }

    .featured-content {
        padding: 26px 22px;
    }

    .featured-title {
        font-size: 22px;
    }

    .filter-btn {
        font-size: 12.5px;
        padding: 8px 16px;
    }

    .reviews-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .video-cta {
        padding: 54px 20px;
    }

    .video-cta-title {
        font-size: 26px;
    }

    .video-cta-btn {
        min-height: 48px;
        width: 100%;
    }

    .video-modal-close {
        right: 4px;
        top: -42px;
    }
}
