/* ============================================
   SINGLE TOUR - FOREVER VACATION DESIGN
   Premium Silicon Valley Standard
============================================ */

/* Reset parent containers */
body.single-tour #page,
body.single-tour .site,
body.single-tour .site-content,
body.single-tour #content,
body.single-tour .content-area,
body.single-tour #primary,
body.single-tour #main,
body.single-tour .site-main,
body.single-tour article,
body.single-tour .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

.fv-tour-page {
    background: #fff;
    padding-top: 100px; /* Space for the fixed/transparent header */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
}

@media (max-width: 768px) {
    .fv-tour-page {
        padding-top: 80px;
    }
}

.fv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MOSAIC GALLERY (1 LARGE + 4 SMALL 2x2)
============================================ */
.fv-gallery-mosaic {
    display: flex;
    gap: 12px;
    height: 520px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.fv-gallery-left {
    flex: 1.6;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fv-gallery-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fv-gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 5;
}

.fv-gallery-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.fv-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
}

.fv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fv-gallery-left:hover img,
.fv-gallery-item:hover img {
    transform: scale(1.05);
}

.fv-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.fv-gallery-overlay span::before {
    content: '+';
}

@media (max-width: 991px) {
    .fv-gallery-mosaic {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .fv-gallery-mosaic {
        flex-direction: column;
        height: auto;
    }
    .fv-gallery-left {
        height: 250px;
    }
    .fv-gallery-right {
        height: 200px;
    }
}

/* ============================================
   BREADCRUMB
============================================ */
.fv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.fv-breadcrumb a {
    color: #888;
    text-decoration: none;
}
.fv-breadcrumb a:hover {
    color: #111;
}

/* ============================================
   TOUR HEADER & PILLS
============================================ */
.fv-tour-header {
    margin-bottom: 25px;
}
.fv-tour-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}
.fv-tour-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.fv-stars {
    color: #f5b026;
    font-size: 14px;
}
.fv-review-count {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.fv-detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}
.fv-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef9e7;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}
.fv-mosaic-sub-header {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.fv-social-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fv-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.fv-social-icon:hover {
    border-color: #111;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .fv-mosaic-sub-header {
        grid-template-columns: 1fr;
    }
    .fv-social-side {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* ============================================
   TWO COLUMN LAYOUT
============================================ */
.fv-tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.fv-tour-content {
    min-width: 0;
}

/* ============================================
   QUICK INFO BADGES
============================================ */
.fv-quick-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}
.fv-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}
.fv-badge i {
    color: #16a085;
    font-size: 16px;
}

/* ============================================
   OVERVIEW SECTION
============================================ */
.fv-section {
    margin-bottom: 40px;
}
.fv-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
}
.fv-overview-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.fv-overview-text p {
    margin-bottom: 15px;
}

/* Video Thumbnail */
.fv-video-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 25px;
    cursor: pointer;
}
.fv-video-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.fv-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.fv-video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.fv-video-play i {
    font-size: 28px;
    color: #111;
    margin-left: 4px;
}

/* ============================================
   INCLUDED PERKS GRID
============================================ */
.fv-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.fv-perk-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s;
}
.fv-perk-card:hover {
    border-color: #16a085;
}
.fv-perk-icon {
    width: 42px;
    height: 42px;
    background: #e8f5f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fv-perk-icon i {
    font-size: 18px;
    color: #16a085;
}
.fv-perk-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* ============================================
   MOSAIC GALLERY (FOREVER VACATION STYLE)
============================================ */
.fv-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 500px;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
}

.fv-gallery-main {
    height: 100%;
}

.fv-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fv-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.fv-gallery-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fv-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fv-gallery-thumb:hover img,
.fv-gallery-main:hover img {
    transform: scale(1.05);
}

.fv-gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.fv-gallery-more span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================
   ITINERARY TIMELINE
============================================ */
.fv-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}

.fv-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #f0f0f0;
}

.fv-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.fv-timeline-item:last-child {
    margin-bottom: 0;
}

.fv-timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #fbc02d;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #fbc02d;
    z-index: 2;
}

.fv-timeline-time {
    font-size: 13px;
    font-weight: 800;
    color: #fbc02d;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.fv-timeline-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px 0;
}

.fv-timeline-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ============================================
   SIDEBAR & BOOKING BOX
============================================ */
.fv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fv-booking-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.fv-booking-price {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.fv-price-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.fv-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.fv-price-amount small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.fv-price-original {
    font-size: 16px;
    text-decoration: line-through;
    color: #bbb;
    margin-left: 5px;
}

.fv-form-group {
    margin-bottom: 20px;
}

.fv-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.fv-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s;
}

.fv-form-input:focus {
    border-color: #fbc02d;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.1);
}

.fv-guests-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
}

.fv-guests-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.fv-guests-label small {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 400;
}

.fv-qty-control {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 30px;
}

.fv-qty-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #333;
}
.fv-qty-btn:hover {
    background: #16a085;
    border-color: #16a085;
    color: #fff;
}
.fv-qty-val {
    font-size: 17px;
    font-weight: 600;
    width: 28px;
    text-align: center;
}
.fv-book-btn {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
}
.fv-book-btn:hover {
    background: #333;
    color: #fff;
}
.fv-wa-btn {
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s;
    box-sizing: border-box;
}
.fv-wa-btn:hover {
    background: #1da851;
    color: #fff;
}
.fv-wa-btn i {
    font-size: 20px;
}
.fv-booking-guarantee {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #f0f0f0;
}
.fv-booking-guarantee i {
    color: #16a085;
    margin-right: 5px;
}

/* ============================================
   REVIEWS SECTION
============================================ */
.fv-reviews {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}
.fv-reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    background: #fafafa;
    padding: 25px;
    border-radius: 16px;
}
.fv-rating-big {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}
.fv-rating-stars-row i {
    color: #f5b026;
    font-size: 18px;
    margin-right: 2px;
}
.fv-rating-count {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}
.fv-review-card {
    display: flex;
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}
.fv-review-card:last-child {
    border-bottom: none;
}
.fv-review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #16a085, #1abc9c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.fv-review-author {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
}
.fv-review-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.fv-review-meta i {
    color: #f5b026;
    font-size: 12px;
}
.fv-review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   WHY DIFFERENT BANNER
============================================ */
.fv-why-us {
    background: #fff9c4; /* Softer yellow */
    padding: 60px 40px;
    border-radius: 30px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    border: 1px solid #f9e79f;
}

.fv-why-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fv-why-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.fv-why-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.fv-why-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.fv-why-badge:hover {
    transform: translateY(-5px);
}

.fv-why-badge i {
    font-size: 32px;
}

/* ============================================
   RELATED TOURS
============================================ */
.fv-related {
    padding: 80px 0;
}

.fv-related-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px;
    text-align: left;
}

.fv-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s;
}

.fv-related-card:hover img {
    transform: scale(1.05);
}

.fv-related-info {
    padding: 20px;
    flex-grow: 1;
}

.fv-related-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.fv-rel-price {
    font-weight: 800;
    color: #222;
    font-size: 16px;
}

.fv-rel-duration {
    font-size: 14px;
    color: #777;
}

/* ============================================
   ADDITIONAL INFO ACCORDION (REFINED)
============================================ */
.fv-accordion-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.fv-accordion-label {
    background: #fff8e1;
    color: #333;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fv-accordion-label i {
    color: #ffa000;
    font-size: 16px;
}

.fv-expand-all {
    color: #888;
    text-decoration: underline;
    font-size: 13px;
    text-transform: capitalize;
}

.fv-accordion {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 10px 20px;
}

.fv-accordion-item {
    border-bottom: 1px dashed #ddd; /* Dashed separator */
}

.fv-accordion-item:last-child {
    border-bottom: none;
}

.fv-accordion-header {
    padding: 22px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fv-accordion-header:hover {
    background: #fafafa;
}

.fv-accordion-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fv-accordion-brand-icon {
    width: 32px;
    height: 32px;
    background: #fbc02d; /* Yellow Circle like Design */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.fv-accordion-brand-icon i {
    color: #fff;
    font-size: 14px;
}

/* 
   To replace the Love icon with Best Bali Travel Logo:
   1. Upload your logo to the theme's assets/images folder.
   2. Uncomment the lines below and update the URL.
*/
/*
.fv-accordion-brand-icon i {
    display: none; 
}
.fv-accordion-brand-icon {
    background-image: url('../images/logo-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
*/

.fv-accordion-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

.fv-chevron {
    color: #333;
    font-size: 14px;
    transition: transform 0.4s ease;
}

.fv-accordion-item.active .fv-chevron {
    transform: rotate(180deg);
}

.fv-accordion-content {
    padding: 0 52px; /* Offset for circle + gap */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.fv-accordion-item.active .fv-accordion-content {
    max-height: 2000px;
    padding: 0 52px 30px;
}

/* Lists within accordion */
.fv-highlights-list, .fv-check-list, .fv-dot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fv-highlights-list li, .fv-check-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    line-height: 1.6;
    color: #444;
}

.fv-highlights-list li i, .fv-check-list li i {
    color: #fbc02d;
    margin-top: 4px;
}

.fv-dot-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.fv-dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #888;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .fv-gallery {
        height: auto;
        grid-template-columns: 1fr;
    }
    .fv-gallery-main {
        height: 250px;
    }
    .fv-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        height: 80px;
    }
    .fv-gallery-more span {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* ==========================================================================
   PREMIUM LIGHTBOX (FOREVER VACATION STYLE)
   ========================================================================== */
.fv-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fv-lightbox.active {
    display: flex;
    opacity: 1;
}

.fv-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fv-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 100005;
    line-height: 1;
}

.fv-lightbox-content {
    width: 95%;
    max-width: 1400px;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 100002;
}

.fv-lightbox-main-swiper {
    flex: 1;
    width: 100%;
}

.fv-lightbox-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv-lightbox-main-swiper img {
    max-height: 80vh;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.fv-lightbox-thumbs-swiper {
    height: 100px;
    width: 100%;
    padding: 10px 0;
}

.fv-lightbox-thumbs-swiper .swiper-slide {
    width: 120px !important;
    height: 80px;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.fv-lightbox-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-lightbox-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid #ffcc00;
}