/* Viator WL Frontend - Main Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==========================================
   HEADER
   ========================================== */
.vwlf-header { 
    background: #fff; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.vwlf-header-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    height: 70px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
}
.vwlf-logo { display: flex; align-items: center; flex-shrink: 0; }
.vwlf-logo img { height: 38px; }
.vwlf-logo strong { font-size: 1.3rem; color: #111; }

.vwlf-nav { display: flex; gap: 4px; align-items: center; }
.vwlf-nav-link { 
    padding: 8px 16px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: #555; 
    border-radius: 8px; 
    transition: all 0.2s; 
}
.vwlf-nav-link:hover { background: #f5f5f5; color: var(--vwlf-primary); }

.vwlf-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.vwlf-lang-dropdown { position: relative; }
.vwlf-lang-current { background: #f0f0f0; border: none; padding: 6px 14px; border-radius: 6px; font-weight: 700; font-size: 0.82rem; cursor: pointer; color: #555; font-family: 'Open Sans', sans-serif; }
.vwlf-lang-current:hover { background: #e5e5e5; }
.vwlf-lang-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 6px; background: #fff; border: 1px solid #eee; border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.12); min-width: 160px; z-index: 1001; overflow: hidden; }
.vwlf-lang-menu.open { display: block; }
.vwlf-lang-option { display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 600; color: #555; transition: background 0.2s; }
.vwlf-lang-option:hover { background: #f5f5f5; color: var(--vwlf-primary); }
.vwlf-lang-option.active { color: var(--vwlf-primary); background: #f0f7ff; }

/* Hamburger */
.vwlf-mobile-toggle { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 8px; 
    width: 40px; 
    height: 40px;
    align-items: center;
    justify-content: center;
}
.vwlf-hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    position: relative;
    transition: background 0.3s;
}
.vwlf-hamburger::before,
.vwlf-hamburger::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}
.vwlf-hamburger::before { top: -7px; }
.vwlf-hamburger::after { top: 7px; }
.vwlf-mobile-toggle.active .vwlf-hamburger { background: transparent; }
.vwlf-mobile-toggle.active .vwlf-hamburger::before { transform: rotate(45deg); top: 0; }
.vwlf-mobile-toggle.active .vwlf-hamburger::after { transform: rotate(-45deg); top: 0; }

/* ==========================================
   HERO
   ========================================== */
.vwlf-hero { 
    position: relative; 
    height: 420px; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.vwlf-hero::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.65)); 
}
.vwlf-hero-overlay { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    max-width: 800px; 
    padding: 0 20px; 
}
.vwlf-hero-title { 
    color: #fff; 
    font-size: clamp(2rem, 5vw, 3.2rem); 
    font-weight: 800; 
    margin-bottom: 12px; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
    line-height: 1.15; 
}
.vwlf-hero-sub { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.1rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.4); 
}
.vwlf-hero-short { height: 260px; }
.vwlf-hero-short .vwlf-hero-title { font-size: clamp(1.6rem, 4vw, 2.4rem); }

/* ==========================================
   HEADINGS - Global Styles
   ========================================== */
h1, h2, h3, h4, h5, h6 { font-family: 'Open Sans', sans-serif; color: #111; line-height: 1.3; }

/* H2 - Primary heading with left accent bar */
.vwlf-main h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    padding-left: 16px;
    border-left: 4px solid var(--vwlf-primary);
    margin: 40px 0 20px;
}

/* H3 - Secondary heading with bottom line */
.vwlf-main h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin: 30px 0 16px;
    position: relative;
}
.vwlf-main h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--vwlf-primary);
}

/* H4 - Subtle with dot accent */
.vwlf-main h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 24px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vwlf-main h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--vwlf-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* H5 - Uppercase small */
.vwlf-main h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 10px;
}

/* Section title override (centered, with underline bar) */
.vwlf-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-left: 0;
    border-left: none;
}
.vwlf-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--vwlf-primary);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ==========================================
   CONTAINER & SECTION HEADERS
   ========================================== */
.vwlf-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px 60px; }

.vwlf-section-header { text-align: center; margin-bottom: 35px; }
.vwlf-section-title { 
    font-size: 2.2rem; 
    font-weight: 800; 
    color: #111; 
    margin-bottom: 10px; 
    position: relative; 
    display: inline-block;
}
.vwlf-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--vwlf-primary);
    border-radius: 2px;
    margin: 12px auto 0;
}
.vwlf-section-sub { font-size: 1.05rem; color: #888; max-width: 550px; margin: 0 auto; }

/* ==========================================
   SEARCH
   ========================================== */
.vwlf-search-wrapper { 
    display: flex; 
    gap: 10px; 
    max-width: 600px; 
    margin: 0 auto 24px; 
}
.vwlf-search-input { 
    flex: 1; 
    padding: 14px 20px; 
    border: 2px solid #e0e0e0; 
    border-radius: 50px; 
    font-size: 0.95rem; 
    font-family: 'Open Sans', sans-serif; 
    outline: none; 
    transition: border-color 0.3s; 
}
.vwlf-search-input:focus { border-color: var(--vwlf-primary); }
.vwlf-search-input::placeholder { color: #bbb; }
.vwlf-search-btn { 
    padding: 14px 28px; 
    background: var(--vwlf-primary); 
    color: #fff; 
    border: none; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    font-size: 0.9rem; 
    font-family: 'Open Sans', sans-serif; 
    transition: background 0.3s; 
    flex-shrink: 0; 
}
.vwlf-search-btn:hover { background: var(--vwlf-primary-dark); }
.vwlf-search-clear { 
    padding: 14px 18px; 
    background: #f0f0f0; 
    color: #666; 
    border: none; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    font-size: 0.9rem; 
    flex-shrink: 0; 
}
.vwlf-search-info { text-align: center; color: #666; font-size: 0.9rem; margin-bottom: 16px; }

/* ==========================================
   PILLS
   ========================================== */
.vwlf-pills { 
    display: flex; 
    gap: 10px; 
    overflow-x: auto; 
    padding: 5px 0 20px; 
    margin-bottom: 20px; 
    scrollbar-width: none; 
    justify-content: center;
    flex-wrap: wrap;
}
.vwlf-pills::-webkit-scrollbar { display: none; }
.vwlf-pill { 
    flex: 0 0 auto; 
    padding: 10px 22px; 
    background: #f8f9fa; 
    border: 1px solid #dee2e6; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s; 
    color: #555; 
}
.vwlf-pill:hover { border-color: var(--vwlf-primary); color: var(--vwlf-primary); }
.vwlf-pill.active { background: var(--vwlf-primary); color: #fff; border-color: var(--vwlf-primary); }

/* ==========================================
   GRID & CARDS
   ========================================== */
.vwlf-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}
.vwlf-empty { grid-column: 1 / -1; text-align: center; padding: 40px; color: #999; }

.vwlf-card { 
    background: #fff; 
    border-radius: 14px; 
    border: 1px solid #eee; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    transition: box-shadow 0.3s, transform 0.3s; 
}
.vwlf-card:hover { 
    box-shadow: 0 12px 35px rgba(0,0,0,0.12); 
    transform: translateY(-4px); 
}
.vwlf-card-badge-urgent { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: #d9534f; 
    color: #fff; 
    font-size: 0.65rem; 
    padding: 5px 10px; 
    border-radius: 6px; 
    font-weight: 800; 
    z-index: 2; 
    animation: vwlf-pulse 2s infinite; 
}
@keyframes vwlf-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.vwlf-card-img { height: 200px; overflow: hidden; }
.vwlf-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.vwlf-card:hover .vwlf-card-img img { transform: scale(1.06); }

.vwlf-card-body { padding: 18px; flex-grow: 1; display: flex; flex-direction: column; }
.vwlf-card-rating { color: #00a680; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.vwlf-card-title { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #111; 
    height: 2.6em; 
    overflow: hidden; 
    margin: 0 0 8px 0; 
    line-height: 1.3; 
}
.vwlf-card-cancel { font-weight: 700; font-size: 0.8rem; margin-bottom: 12px; }
.vwlf-card-cancel.free { color: #00a680; }
.vwlf-card-cancel.no { color: #d9534f; }

.vwlf-card-price { border-top: 1px solid #f0f0f0; padding-top: 12px; margin-bottom: 12px; }
.vwlf-card-price-label { font-size: 0.8rem; color: #888; }
.vwlf-card-price-value { font-size: 1.15rem; font-weight: 800; color: #111; }

.vwlf-card-cta {
    display: block !important;
    margin-top: auto;
    padding: 10px !important;
    background: var(--vwlf-primary) !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
    transition: background 0.3s;
    text-decoration: none !important;
}
.vwlf-card:hover .vwlf-card-cta { background: var(--vwlf-primary-dark) !important; }

/* ==========================================
   PAGINATION
   ========================================== */
.vwlf-pagination { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    margin-top: 40px; 
}
.vwlf-page-btn { 
    padding: 12px 28px; 
    border-radius: 8px; 
    border: 2px solid var(--vwlf-primary); 
    cursor: pointer; 
    font-weight: 700; 
    font-size: 0.9rem; 
    background: #fff; 
    color: var(--vwlf-primary); 
    transition: all 0.3s; 
    font-family: 'Open Sans', sans-serif;
}
.vwlf-page-btn:hover:not(:disabled) { background: var(--vwlf-primary); color: #fff; }
.vwlf-page-btn:disabled { opacity: 0.35; cursor: default; }
.vwlf-page-info { font-weight: 700; color: #555; font-size: 0.95rem; }

/* ==========================================
   DESTINATION CARDS (multi-dest homepage)
   ========================================== */
.vwlf-dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.vwlf-dest-card { border-radius: 14px; overflow: hidden; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.vwlf-dest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.vwlf-dest-card-img { position: relative; height: 240px; }
.vwlf-dest-card-img img { width: 100%; height: 100%; object-fit: cover; }
.vwlf-dest-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 18px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.vwlf-dest-card-name { color: #fff; font-size: 1.3rem; font-weight: 800; margin: 0 0 4px; padding: 0; border: none; }
.vwlf-dest-card-name::before, .vwlf-dest-card-name::after { display: none; }
.vwlf-dest-card-count { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; }

@media (max-width: 1024px) { .vwlf-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vwlf-dest-grid { grid-template-columns: 1fr; } .vwlf-dest-card-img { height: 200px; } }

/* ==========================================
   CONTENT IMAGES (horizontal banners after h3)
   ========================================== */
.vwlf-content-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee; font-size: 1.05rem; line-height: 1.8; color: #555; }
.vwlf-content-section h2 { font-size: 1.5rem; }
.vwlf-content-section h3 { font-size: 1.2rem; }
.vwlf-content-section ul { margin: 10px 0 10px 20px; }
.vwlf-content-section li { margin-bottom: 6px; }
.vwlf-content-section strong { color: #222; }
.vwlf-content-image { 
    margin: 30px 0 40px; 
    border-radius: 14px; 
    overflow: hidden; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.1); 
}
.vwlf-content-image img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    display: block; 
}

/* ==========================================
   PRACTICAL INFORMATION BOX
   ========================================== */
.vwlf-practical-section { margin-top: 50px; }
.vwlf-practical-container { display: flex; gap: 30px; align-items: stretch; }
.vwlf-practical-grid { flex: 6; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; align-content: start; }
.vwlf-practical-card { background: #f8f9fa; border: 1px solid #eee; border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.vwlf-practical-card:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.06); border-color: var(--vwlf-primary); }
.vwlf-practical-icon { font-size: 1.5rem; background: #fff; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); flex-shrink: 0; }
.vwlf-practical-label { display: block; font-size: 0.65rem; font-weight: 800; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.vwlf-practical-value { display: block; font-size: 0.88rem; font-weight: 700; color: #333; line-height: 1.3; }
.vwlf-practical-full { grid-column: 1 / -1; }
.vwlf-practical-image { flex: 4; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 25px rgba(0,0,0,0.08); }
.vwlf-practical-image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 260px; }

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.vwlf-faq-section { margin-top: 50px; }
.vwlf-faq-container { border-top: 1px solid #eee; }
.vwlf-faq-item { border-bottom: 1px solid #eee; }
.vwlf-faq-question { width: 100%; padding: 18px 10px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-size: 1.05rem; font-weight: 700; color: #333; transition: color 0.3s; outline: none; font-family: 'Open Sans', sans-serif; }
.vwlf-faq-question:hover { color: var(--vwlf-primary); }
.vwlf-faq-question::after { content: '+'; font-size: 1.4rem; color: var(--vwlf-primary); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.vwlf-faq-item.active .vwlf-faq-question::after { transform: rotate(45deg); }
.vwlf-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; padding: 0 15px; }
.vwlf-faq-item.active .vwlf-faq-answer { max-height: 800px; padding: 15px 15px 25px; }
.vwlf-faq-answer p { margin: 0; line-height: 1.7; color: #555; font-size: 0.95rem; }
.vwlf-faq-answer-content { line-height: 1.7; color: #555; font-size: 0.95rem; }
.vwlf-faq-answer-content strong { color: #333; }
.vwlf-faq-answer-content ul { margin: 8px 0 8px 20px; }
.vwlf-faq-answer-content li { margin-bottom: 4px; }
.vwlf-faq-answer-content h4 { font-size: 0.95rem; margin: 10px 0 6px; }

/* ==========================================
   AUTHOR E-E-A-T BOX
   ========================================== */
.vwlf-author-section { margin-top: 50px; }
.vwlf-author-box { display: flex; gap: 24px; align-items: center; background: #f8f9fa; border: 1px solid #eee; border-radius: 16px; padding: 30px; }
.vwlf-author-photo { flex-shrink: 0; }
.vwlf-author-photo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.vwlf-author-info { flex: 1; }
.vwlf-author-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--vwlf-primary); display: block; margin-bottom: 4px; }
.vwlf-author-name { font-size: 1.25rem !important; font-weight: 800; color: #111; margin: 0 0 8px 0 !important; padding: 0 !important; border: none !important; }
.vwlf-author-name::before, .vwlf-author-name::after { display: none !important; }
.vwlf-author-bio { font-size: 0.9rem; line-height: 1.6; color: #666; margin-bottom: 12px; }
.vwlf-author-socials { display: flex; gap: 10px; }
.vwlf-author-social { font-size: 0.8rem; font-weight: 700; color: var(--vwlf-primary); padding: 5px 14px; background: #fff; border: 1px solid #e0e0e0; border-radius: 20px; transition: all 0.2s; }
.vwlf-author-social:hover { background: var(--vwlf-primary); color: #fff; border-color: var(--vwlf-primary); }

/* ==========================================
   ACTIVITY DETAIL PAGE
   ========================================== */
.vwlf-activity-hero { max-width: 1200px; margin: 0 auto; padding: 20px 20px 0; }
.vwlf-activity-hero-img { border-radius: 14px; overflow: hidden; height: 420px; position: relative; }
.vwlf-activity-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.vwlf-activity-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 30px 28px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.vwlf-activity-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.vwlf-activity-thumbs::-webkit-scrollbar { display: none; }
.vwlf-thumb { width: 80px; height: 56px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; border: 2px solid transparent; flex-shrink: 0; }
.vwlf-thumb.active, .vwlf-thumb:hover { opacity: 1; border-color: var(--vwlf-primary); }

.vwlf-activity-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-top: 30px; }
.vwlf-activity-main { min-width: 0; }

.vwlf-activity-title { font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 10px 0; line-height: 1.2; padding: 0; border: none; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.vwlf-activity-title::before, .vwlf-activity-title::after { display: none; }

.vwlf-activity-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.vwlf-activity-rating { color: #fff; font-weight: 700; font-size: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.vwlf-activity-reviews { color: rgba(255,255,255,0.8); font-weight: 400; font-size: 0.88rem; }
.vwlf-activity-badge-green { background: rgba(255,255,255,0.2); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px); }
.vwlf-activity-badge-blue { background: rgba(255,255,255,0.2); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px); }

/* Quick Facts */
.vwlf-quick-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 30px; padding: 20px; background: #f8f9fa; border-radius: 12px; border: 1px solid #eee; }
.vwlf-fact { display: flex; gap: 10px; align-items: center; }
.vwlf-fact-icon { font-size: 1.3rem; }
.vwlf-fact-label { display: block; font-size: 0.65rem; font-weight: 800; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.vwlf-fact-value { display: block; font-size: 0.88rem; font-weight: 700; color: #333; }

/* Sections */
.vwlf-activity-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #f0f0f0; }
.vwlf-activity-section:last-child { border-bottom: none; }
.vwlf-activity-section h2 { font-size: 1.3rem; margin-bottom: 16px; }
.vwlf-activity-description { font-size: 1.05rem; line-height: 1.85; color: #555; }

/* Itinerary timeline */
.vwlf-itinerary { position: relative; padding-left: 40px; }
.vwlf-itin-item { position: relative; padding-bottom: 24px; border-left: 2px solid #e0e0e0; padding-left: 20px; }
.vwlf-itin-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.vwlf-itin-dot { position: absolute; left: -14px; top: 0; width: 26px; height: 26px; background: var(--vwlf-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; }
.vwlf-itin-content strong { font-size: 1rem; color: #222; display: block; margin-bottom: 4px; }
.vwlf-itin-content p { font-size: 0.95rem; color: #666; line-height: 1.7; margin: 6px 0 0; }
.vwlf-itin-dur { font-size: 0.75rem; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; margin-left: 8px; }
.vwlf-itin-badge { font-size: 0.7rem; color: #0a6e0a; background: #e6f6e6; padding: 2px 8px; border-radius: 10px; margin-left: 8px; }

/* Inclusions */
.vwlf-included-list { list-style: none; padding: 0; display: grid; gap: 8px; }
.vwlf-included-list li { font-size: 0.95rem; line-height: 1.5; padding: 8px 12px; border-radius: 8px; }
.vwlf-included-list li.included { background: #f0faf0; color: #333; }
.vwlf-included-list li.excluded { background: #fef2f2; color: #333; }

/* Additional info */
.vwlf-additional-list { list-style: none; padding: 0; display: grid; gap: 6px; }
.vwlf-additional-list li { font-size: 0.95rem; color: #555; padding: 6px 0; border-bottom: 1px solid #f5f5f5; line-height: 1.6; }

/* SIDEBAR */
.vwlf-activity-sidebar { position: sticky; top: 90px; align-self: start; }
.vwlf-sidebar-card { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.vwlf-sidebar-price { text-align: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.vwlf-sidebar-price-label { display: block; font-size: 0.8rem; color: #888; }
.vwlf-sidebar-price-value { display: block; font-size: 2.2rem; font-weight: 800; color: #111; line-height: 1.2; }
.vwlf-sidebar-price-person { display: block; font-size: 0.75rem; color: #999; }
.vwlf-sidebar-perk { font-size: 0.82rem; font-weight: 600; color: #555; padding: 6px 0; }
.vwlf-sidebar-cta { display: block; margin-top: 16px; padding: 14px; background: var(--vwlf-primary) !important; color: #fff !important; text-align: center; font-weight: 800; font-size: 1rem; border-radius: 10px; transition: background 0.3s; text-decoration: none !important; }
.vwlf-sidebar-cta:hover { background: var(--vwlf-primary-dark) !important; }
.vwlf-sidebar-redirect { font-size: 0.72rem; color: #999; text-align: center; margin-top: 10px; line-height: 1.4; }

.vwlf-sidebar-facts { margin-top: 16px; background: #f8f9fa; border-radius: 12px; padding: 16px; border: 1px solid #eee; }
.vwlf-sfact { font-size: 0.82rem; color: #555; padding: 5px 0; }

/* Related */
.vwlf-related-section { margin-top: 50px; padding-top: 40px; border-top: 1px solid #eee; }
.vwlf-related-section h2 { font-size: 1.4rem; margin-bottom: 24px; }

/* ==========================================
   RESPONSIVE - Activity Page
   ========================================== */
@media (max-width: 1024px) {
    .vwlf-activity-layout { grid-template-columns: 1fr; }
    .vwlf-activity-sidebar { position: static; }
    .vwlf-related-section .vwlf-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .vwlf-activity-hero-img { height: 280px; }
    .vwlf-activity-title { font-size: 1.4rem; }
    .vwlf-related-section .vwlf-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================
   RESPONSIVE - New Sections
   ========================================== */
@media (max-width: 992px) {
    .vwlf-practical-container { flex-direction: column; }
    .vwlf-practical-image { order: -1; }
    .vwlf-practical-image img { min-height: 200px; max-height: 300px; }
    .vwlf-content-image img { height: 220px; }
}
@media (max-width: 600px) {
    .vwlf-practical-grid { grid-template-columns: 1fr; }
    .vwlf-author-box { flex-direction: column; text-align: center; padding: 24px; }
    .vwlf-author-socials { justify-content: center; }
    .vwlf-faq-question { font-size: 0.95rem; }
}

/* ==========================================
   BLOG
   ========================================== */
.vwlf-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vwlf-blog-card { background: #fff; border-radius: 14px; border: 1px solid #eee; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.vwlf-blog-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.1); transform: translateY(-4px); }
.vwlf-blog-card-img { height: 200px; overflow: hidden; }
.vwlf-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.vwlf-blog-card:hover .vwlf-blog-card-img img { transform: scale(1.06); }
.vwlf-blog-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.vwlf-blog-card-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.vwlf-blog-card-cat { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--vwlf-primary); background: #f0f4ff; padding: 3px 10px; border-radius: 12px; }
.vwlf-blog-card-date { font-size: 0.78rem; color: #999; }
.vwlf-blog-card-title { font-size: 1.05rem !important; font-weight: 700; color: #111; margin: 0 0 10px 0 !important; line-height: 1.35; padding: 0 !important; border: none !important; }
.vwlf-blog-card-title::before, .vwlf-blog-card-title::after { display: none !important; }
.vwlf-blog-card-excerpt { font-size: 0.88rem; color: #777; line-height: 1.5; flex-grow: 1; }
.vwlf-blog-card-link { font-size: 0.85rem; font-weight: 700; color: var(--vwlf-primary); margin-top: 12px; }

/* Blog article */
.vwlf-blog-article { max-width: 800px; margin: 0 auto; }
.vwlf-blog-content { font-size: 1.1rem; line-height: 1.9; color: #444; }
.vwlf-blog-content p { margin-bottom: 1.2em; }
.vwlf-blog-content h2 { font-size: 1.5rem; margin-top: 35px; }
.vwlf-blog-content h3 { font-size: 1.25rem; margin-top: 28px; }
.vwlf-blog-content img { border-radius: 12px; margin: 20px 0; max-width: 100%; height: auto; }
.vwlf-blog-content blockquote { border-left: 4px solid var(--vwlf-primary); margin: 20px 0; padding: 12px 20px; background: #f8f9fa; border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.vwlf-blog-content ul, .vwlf-blog-content ol { margin: 12px 0 12px 24px; }
.vwlf-blog-content li { margin-bottom: 6px; }
.vwlf-blog-content a { color: var(--vwlf-primary); text-decoration: underline; }

@media (max-width: 1024px) { .vwlf-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vwlf-blog-grid { grid-template-columns: 1fr; } }

/* ==========================================
   BREADCRUMB
   ========================================== */
.vwlf-breadcrumb { font-size: 0.85rem; color: #999; margin-bottom: 24px; }
.vwlf-breadcrumb a { color: var(--vwlf-primary); }
.vwlf-breadcrumb a:hover { text-decoration: underline; }
.vwlf-breadcrumb-sep { margin: 0 8px; color: #ccc; }

/* ==========================================
   INSTITUTIONAL PAGES
   ========================================== */
.vwlf-institutional { max-width: 800px; margin: 0 auto; }
.vwlf-inst-content { font-size: 1.05rem; line-height: 1.85; color: #555; }
.vwlf-inst-content h2 { font-size: 1.4rem; margin-top: 35px; }
.vwlf-inst-content h3 { font-size: 1.15rem; margin-top: 28px; }
.vwlf-inst-content ul { margin: 12px 0 12px 20px; }
.vwlf-inst-content li { margin-bottom: 6px; }
.vwlf-inst-content strong { color: #222; }

/* Contact cards */
.vwlf-contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 40px; }
.vwlf-contact-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 20px; background: #f8f9fa; border: 1px solid #eee; border-radius: 14px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.vwlf-contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: var(--vwlf-primary); }
.vwlf-contact-icon { font-size: 2rem; }
.vwlf-contact-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #999; }
.vwlf-contact-value { font-size: 0.9rem; font-weight: 700; color: var(--vwlf-primary); word-break: break-all; }

/* ==========================================
   FOOTER
   ========================================== */
.vwlf-footer { background: #1a1a1a; color: #999; padding: 50px 0 0; margin-top: 60px; }
.vwlf-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.vwlf-footer-grid { display: grid; grid-template-columns: 2fr repeat(auto-fit, minmax(140px, 1fr)); gap: 40px; padding-bottom: 40px; }
.vwlf-footer-logo { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.vwlf-footer-brand { font-size: 1.2rem; color: #fff; display: block; margin-bottom: 16px; }
.vwlf-footer-about { font-size: 0.9rem; line-height: 1.6; }
.vwlf-footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.vwlf-footer-link { display: block; font-size: 0.85rem; color: #999; margin-bottom: 10px; transition: color 0.2s; }
.vwlf-footer-link:hover { color: #fff; }
.vwlf-footer-bottom { border-top: 1px solid #333; padding: 20px 0; text-align: center; font-size: 0.8rem; }
.vwlf-footer-disclaimer { color: #777; font-size: 0.75rem; margin-bottom: 8px; line-height: 1.5; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .vwlf-grid { grid-template-columns: repeat(2, 1fr); }
    .vwlf-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .vwlf-nav { 
        display: none; 
        position: fixed; 
        top: 70px; 
        left: 0; 
        right: 0; 
        background: #fff; 
        flex-direction: column; 
        padding: 16px 20px 24px; 
        border-bottom: 1px solid #eee; 
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .vwlf-nav.open { display: flex; }
    .vwlf-nav-link { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
    .vwlf-nav-link:hover { background: #f5f5f5; }
    .vwlf-mobile-toggle { display: flex; }
    .vwlf-hero { height: 320px; }
    .vwlf-hero-short { height: 200px; }
    .vwlf-hero-title { font-size: 1.8rem !important; }
    .vwlf-logo img { height: 30px; }
    .vwlf-logo strong { font-size: 1rem; }
    .vwlf-section-title { font-size: 1.6rem; }
    .vwlf-search-wrapper { flex-wrap: wrap; }
    .vwlf-search-input { min-width: 0; }
    .vwlf-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .vwlf-pills { justify-content: flex-start; flex-wrap: nowrap; }
}

@media (max-width: 600px) {
    .vwlf-grid { grid-template-columns: 1fr; gap: 16px; }
    .vwlf-card-img { height: 200px; }
    .vwlf-section-title { font-size: 1.4rem; }
    .vwlf-pagination { gap: 12px; }
    .vwlf-page-btn { padding: 10px 20px; font-size: 0.85rem; }
}
