/*
 * tour-v4.css
 * Tour Detail V4 — Editorial Premium Redesign
 * Loaded when TOURS_V4=true in .env
 *
 * Design tokens follow destinations V4 design language:
 * - Warm off-white backgrounds
 * - Playfair Display headings
 * - IVS green accent (#00a652 primary / #007a3e dark / #fcb913 gold)
 * - Dark navy text (#1a1a2e)
 * - Clean card-based sections
 *
 * All selectors scoped under .tour-v4-page to prevent leakage.
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */

.tour-v4-page {
    --tv4-bg:          #fafaf8;
    --tv4-bg-alt:      #f5f4f0;
    --tv4-dark:        #1a1a2e;
    --tv4-green:       #00a652;
    --tv4-green-dark:  #007a3e;
    --tv4-gold:        #fcb913;
    --tv4-text:        #3d3d3d;
    --tv4-subtext:     #666666;
    --tv4-border:      #e4e2db;
    --tv4-white:       #ffffff;
    --tv4-shadow:      0 2px 16px rgba(0,0,0,0.08);
    --tv4-shadow-hover:0 8px 32px rgba(0,0,0,0.14);
    --tv4-radius:      8px;
    --tv4-radius-lg:   14px;
    --tv4-font-serif:  'Playfair Display', Georgia, serif;
    --tv4-font-sans:   inherit;
    --tv4-transition:  0.25s ease;
}

/* ==========================================================================
   2. PAGE BASE
   ========================================================================== */

.tour-v4-page {
    background-color: var(--tv4-bg);
    color: var(--tv4-text);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

/* ── Video hero CSS (shared from tourdetail.css — required when TOURS_V4=true) ──
   slider2-tour renders .dest-city-video-hero when $tour->hero_video is set.
   tourdetail.css is NOT loaded in V4, so these styles must live here.
   NOT scoped under .tour-v4-page to match slider2-tour's output. */

.dest-city-video-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    background: #111;
}

.dest-city-video-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.45) 100%);
}

.dest-city-video-hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dest-city-video-hero__poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (prefers-reduced-motion: reduce) {
    .dest-city-video-hero__video { display: none; }
    .dest-city-video-hero__poster { z-index: 1; }
}

@media (max-width: 767.98px) {
    .dest-city-video-hero { height: clamp(280px, 55vh, 400px); }
}

/* When video hero sits inside tour-v4-hero-wrap, always fill the wrapper height.
   Higher specificity (0,2,0) overrides the standalone .dest-city-video-hero rules. */
.tour-v4-hero-wrap .dest-city-video-hero {
    height: 100%;
}

/* ── V4 Hero Wrapper ── */
.tour-v4-hero-wrap {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    height: 82vh;
    max-height: 880px;
}

/* ── Force Bootstrap carousel to fill hero wrapper (cinematic cover) ── */
.tour-v4-hero-wrap .bannerSlider,
.tour-v4-hero-wrap .carousel.slide,
.tour-v4-hero-wrap .carousel-inner {
    height: 100%;
    width: 100%;
}

.tour-v4-hero-wrap .carousel-item {
    height: 100%;
}

.tour-v4-hero-wrap .carousel-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center 30%;
    max-width: none;
    display: block;
}

/* ── Cinematic gradient overlay ── */
/* Vertical fade + directional left-bottom vignette for text readability */
.tour-v4-hero-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Directional vignette: soft darkness in lower-left where title lives */
        radial-gradient(
            ellipse 75% 65% at 0% 100%,
            rgba(5, 5, 15, 0.42) 0%,
            transparent 68%
        ),
        /* Vertical cinematic fade: vivid top, dark base for text */
        linear-gradient(
            180deg,
            rgba(5, 5, 15, 0.12) 0%,
            transparent 30%,
            transparent 44%,
            rgba(5, 5, 15, 0.48) 80%,
            rgba(5, 5, 15, 0.72) 100%
        );
    pointer-events: none;
    z-index: 2;
}

/* ── Text overlay — left-anchored composition, generous bottom breathing room ── */
.tour-v4-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 80px 80px;
    pointer-events: none;
}

/* Wider text wrap — was 720px (root cause of over-wrapping) */
.tour-v4-hero-text-wrap {
    max-width: 900px;
    pointer-events: auto;
}

/* Eyebrow: understated, refined, not competing with H1 */
.tour-v4-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 16px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.tour-v4-hero-eyebrow-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

/* H1: base style — cinematic, composed, premium serif */
.tour-v4-hero-title {
    font-family: var(--tv4-font-serif);
    font-weight: 500;
    color: var(--tv4-white);
    margin: 0 0 20px;
    line-height: 1.13;
    letter-spacing: -0.02em;
    text-wrap: balance;
    /* Layered cinematic shadow: glyph emerges from image, natural not outlined */
    text-shadow:
        0 1px 3px  rgba(0, 0, 0, 0.30),
        0 3px 14px rgba(0, 0, 0, 0.55),
        0 8px 32px rgba(0, 0, 0, 0.40),
        0 0  100px rgba(0, 0, 0, 0.55);
}

/* ── Dynamic title composition system — intentional editorial layout per title length ── */
/* Thresholds: short ≤28 chars, medium ≤52 chars, long >52 chars */

/* Short titles (≤28 chars): commanding single-line statement */
.tour-v4-hero-title.tv4-title--short {
    font-size: clamp(2.6rem, 4.0vw, 4.0rem);
    max-width: 680px;
    letter-spacing: -0.025em;
    line-height: 1.10;
}

/* Medium titles (≤52 chars): balanced 1-2 elegant lines */
.tour-v4-hero-title.tv4-title--medium {
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    max-width: 820px;
}

/* Long titles (>52 chars): spans wider zone for max 2-line composition */
/* max-width controlled by parent .tour-v4-hero-text-wrap (900px) */
.tour-v4-hero-title.tv4-title--long {
    font-size: clamp(2rem, 3.0vw, 3.0rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

/* Intro: optional short support text */
.tour-v4-hero-intro {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.87);
    max-width: 520px;
    margin: 0 0 28px;
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.45),
        0 4px 18px rgba(0, 0, 0, 0.32);
}

/* ── Carousel controls — quiet editorial, scoped to V4 hero only ── */
/* Override Bootstrap 4 defaults without touching slider2-tour.blade.php */
.tour-v4-hero-wrap .carousel-control-prev,
.tour-v4-hero-wrap .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 38%;
    bottom: auto;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0.72;
    transition: background-color 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.tour-v4-hero-wrap .carousel-control-prev { left: 28px; }
.tour-v4-hero-wrap .carousel-control-next { right: 28px; }

.tour-v4-hero-wrap .carousel-control-prev:hover,
.tour-v4-hero-wrap .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.42);
    opacity: 1;
}

/* Replace Bootstrap SVG icons with minimal CSS chevrons */
.tour-v4-hero-wrap .carousel-control-prev-icon,
.tour-v4-hero-wrap .carousel-control-next-icon {
    background-image: none;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.88);
    border-left: 1.5px solid rgba(255, 255, 255, 0.88);
    background-color: transparent;
    display: block;
    flex-shrink: 0;
}

/* Prev: < chevron */
.tour-v4-hero-wrap .carousel-control-prev-icon {
    transform: rotate(-45deg) translate(1px, 0);
}

/* Next: > chevron */
.tour-v4-hero-wrap .carousel-control-next-icon {
    border-top: none;
    border-left: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.88);
    border-right: 1.5px solid rgba(255, 255, 255, 0.88);
    transform: rotate(-45deg) translate(-1px, 0);
}

/* ==========================================================================
   4. FACTS BAR + CONCIERGE CTA
   ========================================================================== */

.tour-v4-facts-bar-v5 {
    background-color: var(--tv4-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* Concierge information strip — organic flow, editorial rhythm */
.tour-v4-facts-grid-v5 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;  /* vertical center — premium alignment */
    padding: 0;
    margin: 0;
    gap: 0;
}

.tour-v4-fact-v5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 40px 22px 0;
    margin-right: 40px;
    position: relative;
    /* Micro hover: warm ambient tint — felt, not noticed */
    transition: background-color 0.45s ease;
}

/* Very subtle warm green wash on hover */
.tour-v4-fact-v5:hover {
    background-color: rgba(0, 166, 82, 0.025);
}

/* Feather-light vertical tick — whisper of separation, not a table line */
/* Separator gains slight visibility on sibling hover */
.tour-v4-fact-v5:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: rgba(0, 0, 0, 0.08);
    transition: background-color 0.45s ease;
}

.tour-v4-fact-v5:hover:not(:last-child)::after {
    background: rgba(0, 0, 0, 0.14);
}

.tour-v4-fact-v5:last-child {
    margin-right: 0;
}

.tour-v4-fact-label-v5 {
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 5px;
    line-height: 1;
    transition: color 0.35s ease;
}

/* Label warms slightly on fact hover */
.tour-v4-fact-v5:hover .tour-v4-fact-label-v5 {
    color: #888;
}

.tour-v4-fact-value-v5 {
    font-size: 0.92rem;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.25;
    letter-spacing: 0.005em;
    position: relative;  /* anchor for animated underline */
    transition: color 0.35s ease;
}

/* Value deepens on hover */
.tour-v4-fact-v5:hover .tour-v4-fact-value-v5 {
    color: #1c1c1c;
}

/* Animated thin olive accent line under value — slides in on hover */
.tour-v4-fact-value-v5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 166, 82, 0.45);
    transition: width 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tour-v4-fact-v5:hover .tour-v4-fact-value-v5::after {
    width: 100%;
}

/* ── Concierge CTA row — private invitation quality, luxury editorial ── */
.tour-v4-facts-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: 2px;
}

.tour-v4-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    /* Silkier cubic-bezier — slower = more luxurious, not snappy SaaS */
    transition:
        color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        background-color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    line-height: 1;
    padding: 10px 22px;
    border: 1px solid;
    border-radius: 0;  /* zero radius — pure editorial, not pill */
}

/* Primary: IVS brand green — consistent with header navigation green */
.tour-v4-cta-primary {
    color: #004d24;
    background-color: rgba(0, 166, 82, 0.12);
    border-color: rgba(0, 166, 82, 0.60);
}

.tour-v4-cta-primary:hover {
    color: #003d1c;
    background-color: rgba(0, 166, 82, 0.20);
    border-color: rgba(0, 166, 82, 0.90);
    box-shadow: 0 2px 16px rgba(0, 166, 82, 0.12);
}

/* Secondary: IVS gold — mirrors header CUSTOMIZABLE TOUR brand accent */
.tour-v4-cta-secondary {
    color: #9a6b00;
    background-color: transparent;
    border-color: rgba(252, 185, 19, 0.65);
}

.tour-v4-cta-secondary:hover {
    color: #7a5300;
    border-color: rgba(252, 185, 19, 0.90);
    background-color: rgba(252, 185, 19, 0.08);
}

.tour-v4-cta-arrow {
    font-style: normal;
    font-size: 0.85rem;
    transition: transform 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: inline-block;
    letter-spacing: 0;  /* reset — arrow should not be letter-spaced */
}

.tour-v4-cta-link:hover .tour-v4-cta-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.tour-v4-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 40px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--tv4-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.tour-v4-btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--tv4-white);
    background: transparent;
}

.tour-v4-btn-outline:hover {
    border-color: var(--tv4-green);
    background-color: var(--tv4-green);
    color: var(--tv4-white);
}

/* ==========================================================================
   6. AVAILABILITY DATES STRIP
   ========================================================================== */

.tour-v4-availability-strip {
    background-color: var(--tv4-bg-alt);
    padding: 30px 0;
    border-bottom: 1px solid var(--tv4-border);
}

.tour-v4-avail-heading {
    font-family: var(--tv4-font-serif);
    font-size: 1.35rem;
    color: var(--tv4-dark);
    margin: 0 0 20px;
    text-align: center;
}

.tour-v4-date-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tv4-date-chip {
    position: relative;
    background: var(--tv4-white);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: var(--tv4-shadow);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--tv4-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--tv4-transition);
    border-left: 4px solid var(--tv4-green);
    min-width: 200px;
}

.tv4-date-open {
    cursor: pointer;
}

.tv4-date-open:hover {
    box-shadow: var(--tv4-shadow-hover);
    transform: translateY(-2px);
}

.tv4-date-full {
    opacity: 0.6;
    cursor: not-allowed;
    border-left-color: #ccc;
}

.tv4-book-early {
    position: absolute;
    top: -10px;
    right: 8px;
    background: #e84118;
    color: var(--tv4-white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: tv4-badge-pulse 1.6s ease-in-out infinite;
}

@keyframes tv4-badge-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.1); }
}

.tv4-date-badge {
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid currentColor;
}

.tv4-badge-full {
    color: #c0392b;
}

.tv4-badge-spots {
    color: var(--tv4-green);
}

/* ==========================================================================
   7. MAIN BODY LAYOUT
   ========================================================================== */

.tour-v4-body {
    padding: 48px 0 60px;
}

/* Custom container — matches old design's .itly_group_tour_lr { padding: 0 100px } */
.tour-v4-container {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   7b. SIDEBAR — Concierge quality
   ========================================================================== */

/* ── Sidebar wrapper — small left gap from main content col ── */
.tour-v4-sidebar-wrap {
    padding-left: 16px;
}

/* ── Widget cards — warm white, feather border, no shadow ── */
.tour-v4-sidebar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 24px 22px;
    margin-bottom: 22px;
}

.tour-v4-sidebar-card-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--tv4-dark);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* ── Price card ── IVS brand green, quiet luxury concierge card ── */
.tour-v4-price-card {
    background: #007a3e;
    border: none;
    padding: 28px 22px 26px;
}

.tour-v4-price-from {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 10px;
    line-height: 1;
}

.tour-v4-price-amount {
    font-family: var(--tv4-font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1;
}

.tour-v4-price-note {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 5px;
    line-height: 1.55;
}

.tour-v4-price-var-note {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.46);
    margin: 0 0 20px;
    font-style: italic;
    line-height: 1.5;
}

/* Quiet concierge invitation — text link only, never a button */
.tour-v4-price-contact {
    display: inline-block;
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.tour-v4-price-contact:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
}

/* ── Form structure ── */
.tour-v4-field {
    margin-bottom: 10px;
}

.tour-v4-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
    line-height: 1;
}

/* Two-column flex row for Adults + Kids inline pair */
.tour-v4-field-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.tour-v4-field-row .tour-v4-field {
    flex: 1;
    margin-bottom: 0;
}

/* ── Inputs — editorial simplicity, warm focus ── */
.tour-v4-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 0;
    outline: none;
    transition: border-color 0.35s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
}

.tour-v4-input::placeholder {
    color: #bbb;
    font-style: normal;
}

.tour-v4-input:focus {
    border-color: rgba(0, 166, 82, 0.60);
    background-color: #fff;
    outline: none;
    /* Soft brand green halo */
    box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.06);
}

.tour-v4-textarea {
    resize: vertical;
    min-height: 92px;
    line-height: 1.55;
}

/* ── Select — custom chevron, no browser chrome ── */
.tour-v4-select {
    display: block;
    width: 100%;
    padding: 10px 34px 10px 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.35s ease, background-color 0.3s ease;
}

.tour-v4-select:focus {
    border-color: rgba(0, 166, 82, 0.60);
    background-color: #fff;
    outline: none;
}

/* ── Submit button — private concierge invitation ── */
.tour-v4-submit-btn {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--tv4-green);
    border: 1px solid var(--tv4-green);
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    text-align: center;
    margin-top: 14px;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.tour-v4-submit-btn:hover {
    background-color: var(--tv4-green-dark);
    border-color: var(--tv4-green-dark);
    box-shadow: 0 2px 16px rgba(0, 166, 82, 0.16);
}

/* Secondary outline variant (Search Tours button) */
.tour-v4-submit-btn.tour-v4-submit-btn-outline {
    background-color: transparent;
    color: var(--tv4-green-dark);
    border-color: rgba(0, 166, 82, 0.45);
    margin-top: 4px;
}

.tour-v4-submit-btn.tour-v4-submit-btn-outline:hover {
    background-color: rgba(0, 166, 82, 0.06);
    border-color: rgba(0, 166, 82, 0.72);
    box-shadow: none;
}

/* ── Private Tours Card — Property style with image + dark panel ── */
.tour-v4-private-card {
    padding: 0;
    overflow: hidden;
    border-radius: 0; /* Sharp corners — editorial */
}

.tour-v4-private-link {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

/* Image wrapper: cinematic aspect ratio */
.tour-v4-private-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.tour-v4-private-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tour-v4-private-link:hover .tour-v4-private-img {
    transform: scale(1.04); /* Subtle zoom on hover */
}

/* Dark overlay panel at bottom — property card style */
.tour-v4-private-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 22, 12, 0.88); /* Warm dark olive — matches V4 palette */
    padding: 24px 20px;
    z-index: 2;
}

.tour-v4-private-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.tour-v4-private-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.tour-v4-private-highlight {
    color: #fcb913; /* Gold accent */
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ── Testimonials ── */
.tour-v4-testimonial-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-v4-testimonial-text {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.72;
    font-style: italic;
    margin: 0 0 10px;
}

.tour-v4-read-more {
    color: var(--tv4-green-dark);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    font-style: normal;
    transition: color 0.3s ease;
}

.tour-v4-read-more:hover {
    color: #005a2a;
}

.tour-v4-testimonial-name {
    display: block;
    font-size: 0.76rem;
    color: #999;
    letter-spacing: 0.05em;
    font-style: normal;
}

/* ── Resource links — curated editorial, cinematic thumbnail + label ── */

/* Short editorial intro text below section heading */
.tour-v4-resources-intro {
    font-size: 0.78rem;
    color: #888;
    font-style: italic;
    line-height: 1.55;
    margin: -6px 0 18px;
    letter-spacing: 0.01em;
}

.tour-v4-resource-links {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.tour-v4-resource-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
}

/* Image wrapper: larger thumbnail, sharp corners, cinematic aspect */
.tour-v4-resource-img-wrap {
    width: 120px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0; /* Sharp corners — quiet luxury editorial */
}

.tour-v4-resource-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Micro zoom on hover — felt, not noticed */
.tour-v4-resource-link:hover .tour-v4-resource-img-wrap img {
    transform: scale(1.05);
}

/* Text container: title + description stacked */
.tour-v4-resource-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

/* Title: editorial serif, olive shift on hover */
.tour-v4-resource-title {
    font-family: var(--tv4-font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tour-v4-resource-link:hover .tour-v4-resource-title {
    color: rgba(107, 128, 81, 0.92); /* Olive accent — quiet luxury */
}

/* Description: cinematic, warm gray, breathable */
.tour-v4-resource-desc {
    font-size: 0.72rem;
    color: #7a7a7a; /* Warm muted gray */
    line-height: 1.6;
    letter-spacing: 0.005em;
    margin: 0;
    font-style: normal;
    transition: color 0.35s ease;
}

.tour-v4-resource-link:hover .tour-v4-resource-desc {
    color: #6a6a6a; /* Slightly darker on hover */
}

/* ==========================================================================
   8. SECTION COMMON STYLES
   ========================================================================== */

.tour-v4-section {
    margin-bottom: 44px;
}

.tour-v4-section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tv4-border);
}

.tour-v4-section-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--tv4-dark);
    margin: 0;
}

.tour-v4-section-body {
    color: var(--tv4-text);
}

/* ==========================================================================
   9. GALLERY — Cinematic editorial presentation
   ========================================================================== */

.tour-v4-gallery-section {
    margin-bottom: 40px;
}

.tour-v4-gallery-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Main slider frame ── */
.tour-v4-gallery-section .lSSlideOuter {
    position: relative;
    margin-bottom: 0 !important;
}

.tour-v4-gallery-section .lSSlideWrapper {
    overflow: hidden !important;
    cursor: pointer;
}

/* Main slide images — fixed cinematic height, full-bleed cover crop */
.tour-v4-gallery-list .lslide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-select: none;
}

/* Clickable gallery image — pointer cursor + micro zoom on wrapper hover */
.tour-v4-gallery-section .lSSlideWrapper .tour-v4-gallery-img {
    cursor: pointer;
}

.tour-v4-gallery-section .lSSlideWrapper:hover .lslide.active .tour-v4-gallery-img {
    transform: scale(1.02);
}

/* Video slides — contained on dark stage */
.tour-v4-gallery-list .lslide > div {
    height: 520px;
    overflow: hidden;
}

.tour-v4-gallery-list .lslide video {
    width: 100%;
    height: 520px;
    object-fit: contain;
    background: #000;
    display: block;
    cursor: default;
}

/* ── Thumbnail strip — editorial consistency ── */
.tour-v4-gallery-section .lSPager.lSGallery {
    display: flex !important;
    flex-wrap: nowrap !important;
    padding: 10px 0 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.tour-v4-gallery-section .lSPager.lSGallery li {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    flex: 0 0 82px !important;
    width: 82px !important;
    height: 56px !important;
    overflow: hidden !important;
    position: relative;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.50s ease, box-shadow 0.50s ease, filter 0.50s ease;
}

.tour-v4-gallery-section .lSPager.lSGallery li:hover {
    opacity: 0.80;
    filter: brightness(1.06);
}

.tour-v4-gallery-section .lSPager.lSGallery li.active {
    opacity: 1;
    filter: none;
    box-shadow: inset 0 0 0 2px rgba(68, 82, 38, 0.62);
}

.tour-v4-gallery-section .lSPager.lSGallery li img {
    width: 82px !important;
    height: 56px !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
}

/* ── Video thumbnail indicator — whispered play mark ── */
.tour-v4-gallery-section .lSPager.lSGallery li.tv4-thumb-is-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
    pointer-events: none;
}

.tour-v4-gallery-section .lSPager.lSGallery li.tv4-thumb-is-video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.72);
    transform: translate(-38%, -50%);
    z-index: 2;
    pointer-events: none;
}

/* ── Navigation arrows — quiet editorial circles ── */
.tour-v4-gallery-section .lSSlideOuter .lSPrev,
.tour-v4-gallery-section .lSSlideOuter .lSNext {
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(252, 252, 250, 0.62) !important;
    background-image: none !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50% !important;
    top: 260px !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09) !important;
    overflow: visible !important;
    opacity: 0.70 !important;
    transition: background-color 0.50s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.50s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.50s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Pure CSS chevron via ::before — no sprite, no icon font */
.tour-v4-gallery-section .lSSlideOuter .lSPrev:before,
.tour-v4-gallery-section .lSSlideOuter .lSNext:before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 9px !important;
    height: 9px !important;
    border-top: 2px solid rgba(28, 28, 24, 0.72) !important;
    border-right: 2px solid rgba(28, 28, 24, 0.72) !important;
    border-bottom: none !important;
    border-left: none !important;
    font-size: 0 !important;
}

.tour-v4-gallery-section .lSSlideOuter .lSPrev:before {
    transform: translate(-40%, -50%) rotate(-135deg) !important;
}

.tour-v4-gallery-section .lSSlideOuter .lSNext:before {
    transform: translate(-60%, -50%) rotate(45deg) !important;
}

.tour-v4-gallery-section .lSSlideOuter .lSPrev:hover,
.tour-v4-gallery-section .lSSlideOuter .lSNext:hover {
    background-color: rgba(252, 252, 250, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.60) !important;
    opacity: 1 !important;
}

/* ── Fancybox caption — editorial serif ── */
.fancybox-caption {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    padding: 14px 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

/* Fancybox backdrop — deeper, more immersive */
.fancybox-bg {
    background: #0c0c0a;
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.97 !important;
}

/* ==========================================================================
   10. OVERVIEW — Tour Description
   ========================================================================== */

.tour-v4-description {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--tv4-text);
}

.tour-v4-description p {
    margin-bottom: 1.1rem;
}

.tour-v4-description h3,
.tour-v4-description h4 {
    font-family: var(--tv4-font-serif);
    color: var(--tv4-dark);
    margin-top: 1.5rem;
}

/* Restore list styling overridden by style.css `ul li { list-style: none; }`
   Must target <li> directly with higher specificity (0,1,2) > (0,0,2)
   Use `outside` so bullet stays inline-left of text (not above it).
   TinyMCE wraps <li> content in <p> — strip those <p> margins to fix spacing. */
.tour-v4-description ul,
.tour-v4-description ol {
    padding-left: 1.6em;
    margin-bottom: 1.1rem;
}

.tour-v4-description ul li {
    list-style: disc;
    list-style-position: outside;
}

.tour-v4-description ol li {
    list-style: decimal;
    list-style-position: outside;
}

.tour-v4-description li {
    margin-bottom: 0;
    line-height: 1.75;
}

/* TinyMCE wraps each <li> in a <p> — remove its margins so spacing matches paragraphs */
.tour-v4-description li > p {
    margin: 0;
    line-height: 1.75;
}

/* Nested lists */
.tour-v4-description ul ul,
.tour-v4-description ol ol,
.tour-v4-description ul ol,
.tour-v4-description ol ul {
    margin-bottom: 0;
    margin-top: 0;
}

/* ==========================================================================
   11. ITINERARY ACCORDION — Editorial journey chapters
   ========================================================================== */

/* Open layout — no outer box, no rounding — chapters breathe freely */
.tour-v4-accordion {
    /* intentionally bare — chapters flow freely */
}

/* Each day: top-ruled chapter divider only */
.tour-v4-accord-item {
    border-top: 1px solid rgba(210, 205, 195, 0.55);
}

.tour-v4-accord-item:first-child {
    border-top: none;
}

/* Header: generous breathing room, fully transparent */
.tour-v4-accord-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: none;
}

/* Typography-only state — no background change on hover */
.tour-v4-accord-header:hover .tour-v4-day-title,
.tour-v4-accord-item.active .tour-v4-accord-header .tour-v4-day-title {
    color: rgba(107, 128, 81, 0.88);
}

/* Day row: badge + title aligned */
.tour-v4-accord-day {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

/* Day badge: muted olive chapter marker — not a pill */
.tour-v4-day-number {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(74, 94, 47, 1);
    background: rgba(107, 128, 81, 0.13);
    padding: 3px 10px;
    border-radius: 2px;
    min-width: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Day title: Playfair serif — editorial chapter heading */
.tour-v4-day-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.06rem;
    font-weight: 500;
    color: rgba(26, 26, 46, 0.88);
    line-height: 1.35;
    transition: color 0.40s ease;
}

/* Toggle icon: pure CSS thin cross/minus — editorial minimalism */
.tour-v4-accord-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
}

.tour-v4-accord-toggle::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: rgba(107, 128, 81, 0.60);
    transition: background 0.35s ease;
}

.tour-v4-accord-toggle::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    background: rgba(107, 128, 81, 0.60);
    transition: opacity 0.40s ease, transform 0.40s ease, background 0.35s ease;
}

/* Active: vertical arm collapses — plus becomes a quiet minus */
.tour-v4-accord-item.active .tour-v4-accord-toggle::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
}

.tour-v4-accord-header:hover .tour-v4-accord-toggle::before,
.tour-v4-accord-header:hover .tour-v4-accord-toggle::after {
    background: rgba(107, 128, 81, 0.90);
}

/* Body: open, generous vertical rhythm */
.tour-v4-accord-body {
    padding: 0 0 36px 0;
    background: transparent;
}

/* Cinematic location image — full bleed, sharp editorial framing */
.tour-v4-itin-img {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 0;
}

.tour-v4-itin-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* Location metadata: inline strip — no box, no left border */
.tour-v4-itin-locations {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 4px;
    font-size: 0.83rem;
    color: rgba(80, 75, 65, 0.65);
    margin-bottom: 20px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    line-height: 1.65;
}

/* "WHERE WE VISIT:" micro-label */
.tour-v4-itin-loc-label {
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(74, 94, 47, 1);
    margin-right: 6px;
    flex-shrink: 0;
}

/* Location names */
.tour-v4-location-tag {
    display: inline;
    font-weight: 600;
    color: rgba(30, 28, 22, 0.88);
    font-size: 0.88rem;
}

/* Middle-dot separator between consecutive location tags */
.tour-v4-location-tag + .tour-v4-location-tag::before {
    content: '\00B7';
    margin: 0 5px;
    color: rgba(107, 128, 81, 0.40);
    font-weight: 400;
}

/* Pipe separator before meeting point */
.tour-v4-meeting-sep {
    color: rgba(160, 155, 140, 1);
    margin: 0 8px;
}

/* Meeting location italic value */
.tour-v4-itin-locations em {
    font-style: italic;
    color: rgba(30, 28, 22, 0.80);
}

/* Description prose */
.tour-v4-itin-desc {
    font-size: 0.96rem;
    line-height: 1.80;
    color: var(--tv4-text);
}

.tour-v4-itin-desc p {
    margin-bottom: 1em;
}

.tour-v4-itin-desc p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   12. INCLUSIONS / EXCLUSIONS — Editorial briefing cards
   ========================================================================== */

.tour-v4-incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tour-v4-incl-card {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(210, 205, 195, 0.60);
    transition: border-color 0.40s ease;
}

.tour-v4-incl-card:hover {
    border-color: rgba(180, 175, 165, 0.75);
}

/* Included card — soft olive wash */
.tour-v4-incl-included {
    background: rgba(107, 128, 81, 0.038);
}

/* Excluded card — warm stone/terracotta tint */
.tour-v4-incl-excluded {
    background: rgba(158, 108, 82, 0.042);
}

.tour-v4-incl-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tv4-font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 24px 16px;
    margin: 0;
    color: var(--tv4-dark);
    background: transparent;
    letter-spacing: -0.01em;
}

/* Editorial left accent — included */
.tour-v4-incl-included .tour-v4-incl-heading {
    border-left: 3px solid rgba(107, 128, 81, 0.68);
}

/* Editorial left accent — excluded */
.tour-v4-incl-excluded .tour-v4-incl-heading {
    border-left: 3px solid rgba(158, 108, 82, 0.68);
}

.tour-v4-incl-heading i {
    font-size: 1.1rem;
}

.tour-v4-incl-included .tour-v4-incl-heading i {
    color: rgba(107, 128, 81, 0.78);
}

.tour-v4-incl-excluded .tour-v4-incl-heading i {
    color: rgba(158, 108, 82, 0.78);
}

.tour-v4-incl-body {
    padding: 6px 24px 22px;
    font-size: 0.94rem;
    line-height: 1.72;
    color: var(--tv4-text);
}

.tour-v4-incl-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-v4-incl-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    line-height: 1.68;
}

.tour-v4-incl-body ul li:last-child {
    margin-bottom: 0;
}

.tour-v4-incl-body ul li span {
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-v4-incl-body ul li img {
    width: 16px;
    height: 16px;
    opacity: 0.68;
}

/* ==========================================================================
   13. PRICING — Concierge assistance panel
   ========================================================================== */

.tour-v4-pricing-box {
    background: rgba(252, 248, 240, 0.52);
    border-radius: 0;
    padding: 28px 30px;
    border: 1px solid rgba(210, 205, 195, 0.60);
    transition: border-color 0.40s ease, background 0.40s ease;
}

.tour-v4-pricing-box:hover {
    background: rgba(252, 248, 240, 0.72);
    border-color: rgba(180, 175, 165, 0.75);
}

.tour-v4-pricing-text {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--tv4-text);
    letter-spacing: -0.01em;
}

.tour-v4-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-v4-contact-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.60;
}

.tour-v4-contact-list li:last-child {
    margin-bottom: 0;
}

.tour-v4-contact-list li i {
    color: rgba(107, 128, 81, 0.82);
    width: 17px;
    font-size: 0.98rem;
    flex-shrink: 0;
}

.tour-v4-contact-list li strong {
    font-weight: 600;
    color: var(--tv4-dark);
}

.tour-v4-contact-list li a {
    color: rgba(107, 128, 81, 0.88);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.35s ease;
}

.tour-v4-contact-list li a:hover {
    color: rgba(68, 82, 38, 1);
    text-decoration: none;
}

/* ==========================================================================
   14. LOCATION — Full-width Jacada-style 3-column editorial map
   ========================================================================== */

/* Three-column layout: info (24%) | map (46%) | destinations (30%) */
.tour-v4-location-grid {
    display: grid;
    grid-template-columns: 24fr 46fr 30fr;
    grid-template-rows: 620px; /* Explicit row height — ensures all 3 columns are 620px */
    gap: 0;
    border: 1px solid rgba(210, 205, 195, 0.60);
    background: var(--tv4-bg);
}

/* ── Left: Editorial location info ─────────────────────────────────────── */
.tour-v4-location-info {
    padding: 40px 32px;
    background: rgba(252, 248, 240, 0.52);    /* warm ivory */
    border-right: 1px solid rgba(210, 205, 195, 0.60);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Country · Region metadata */
.tour-v4-location-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-v4-location-country,
.tour-v4-location-region {
    font-size: 0.80rem;
    font-weight: 600;
    color: rgba(107, 128, 81, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tour-v4-location-separator {
    color: rgba(107, 128, 81, 0.40);
    font-weight: 300;
}

/* Section intro heading */
.tour-v4-location-intro-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tv4-dark);
    letter-spacing: -0.01em;
    line-height: 1.30;
    margin: 0 0 14px;
}

/* Intro description text */
.tour-v4-location-intro-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--tv4-text);
    margin: 0 0 28px;
}

/* Detail rows */
.tour-v4-location-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(210, 205, 195, 0.38);
}

.tour-v4-location-detail:first-of-type {
    border-top: 1px solid rgba(210, 205, 195, 0.38);
}

.tour-v4-location-detail-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(107, 128, 81, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tour-v4-location-detail-value {
    font-size: 0.94rem;
    color: var(--tv4-text);
    line-height: 1.50;
}

/* ── Center: Mapbox canvas ─────────────────────────────────────────────── */
.tour-v4-location-map-wrap {
    position: relative;
    width: 100%;
    /* Explicit height (not min-height) — Mapbox GL JS needs real computed height
       at container.clientHeight. min-height alone does not work for WebGL canvas
       sizing when child uses height: 100%. */
    height: 620px;
    background: rgba(245, 244, 240, 0.60);
    border-right: 1px solid rgba(210, 205, 195, 0.60);
    /* overflow: hidden removed — can clip WebGL tile rendering in some layouts */
}

.tour-v4-location-map {
    /* No position: absolute — block element fills the 620px parent correctly.
       Mapbox GL JS creates its own canvas filling this element. */
    width: 100%;
    height: 100%;
}

/* Mapbox controls — minimal editorial */
.tour-v4-location-map .mapboxgl-ctrl-group {
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tour-v4-location-map .mapboxgl-ctrl-group button {
    border-radius: 0;
}

.tour-v4-location-map .mapboxgl-ctrl-compass {
    display: none; /* No rotation */
}

.tour-v4-location-map .mapboxgl-ctrl-logo {
    opacity: 0.4;
}

/* Custom marker — muted olive teardrop */
.tour-v4-map-pin {
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    background: rgba(107, 128, 81, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transform: rotate(-45deg);
    cursor: pointer;
    transition: transform 0.30s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.30s ease,
                background 0.30s ease;
}

.tour-v4-map-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 50%;
}

.tour-v4-map-pin:hover,
.tour-v4-map-pin.is-active {
    transform: rotate(-45deg) scale(1.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
    background: rgba(68, 82, 38, 1); /* Darker olive on active */
}

/* Main tour pins dimmed while a nearby tour is being previewed */
.tour-v4-map-pin.is-dimmed {
    opacity: 0.28;
    transition: opacity 0.50s ease,
                transform 0.30s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.30s ease,
                background 0.30s ease;
}

/* Preview pin — terracotta accent, visually distinct from main pins */
.tour-v4-map-pin--preview {
    background: rgba(158, 108, 82, 0.92); /* warm terracotta — nearby tour accent */
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(158, 108, 82, 0.35);
    transform: rotate(-45deg) scale(1.10); /* slightly elevated from rest */
    transition: transform 0.40s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.40s ease,
                background 0.40s ease;
}

.tour-v4-map-pin--preview::before {
    background: rgba(255, 255, 255, 0.90);
}

/* ── Right: Curated nearby destinations ────────────────────────────────── */
.tour-v4-location-destinations {
    padding: 40px 28px;
    background: var(--tv4-white);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Luxury scrollbar — Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(107, 128, 81, 0.22) transparent;
}

/* Luxury scrollbar — WebKit (Chrome, Safari, Edge) */
.tour-v4-location-destinations::-webkit-scrollbar {
    width: 4px;
}

.tour-v4-location-destinations::-webkit-scrollbar-track {
    background: transparent;
}

.tour-v4-location-destinations::-webkit-scrollbar-thumb {
    background: rgba(107, 128, 81, 0.22);
    border-radius: 2px;
    transition: background 0.30s ease;
}

.tour-v4-location-destinations::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 128, 81, 0.44);
}

.tour-v4-location-dest-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.10rem;
    font-weight: 600;
    color: var(--tv4-dark);
    letter-spacing: -0.01em;
    line-height: 1.35;
    margin: 0 0 22px;
}

/* Destination cards list */
.tour-v4-location-dest-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* Cards separated by border-top, not gap */
}

/* Single destination card — editorial vertical layout (image → title → duration) */
.tour-v4-dest-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;  /* Needed for ::before accent line */
    overflow: hidden;    /* Clip the accent pseudo-element at card edges */
    border-top: 1px solid rgba(210, 205, 195, 0.28);
    border-radius: 0;
    transition: background 0.40s ease,
                opacity 0.40s ease;
}

/* No top border on first card — avoids double-line with title margin-bottom */
.tour-v4-dest-card:first-child {
    border-top: none;
}

/* Left accent line — appears on hover/active via background transition */
.tour-v4-dest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(107, 128, 81, 0);
    transition: background 0.42s ease;
    z-index: 2; /* Above image */
}

.tour-v4-dest-card:hover {
    background: rgba(252, 248, 240, 0.45);
    text-decoration: none;
}

/* Active/hovered state — muted olive, editorial restraint */
.tour-v4-dest-card.is-hovered {
    background: rgba(107, 128, 81, 0.05);
    text-decoration: none;
}

.tour-v4-dest-card:hover::before,
.tour-v4-dest-card.is-hovered::before {
    background: rgba(107, 128, 81, 0.52);
}

/* Non-active cards: recede softly when one card is being previewed */
.tour-v4-location-dest-list:has(.tour-v4-dest-card.is-hovered) .tour-v4-dest-card:not(.is-hovered) {
    opacity: 0.50;
}

/* Legacy class — kept for compatibility */
.tour-v4-dest-card.is-active {
    background: rgba(107, 128, 81, 0.06);
}

/* Destination banner image — full card width, cinematic letterbox crop */
.tour-v4-dest-img-wrap {
    width: 100%;
    height: 108px; /* ~2.8:1 ratio at 300px card width — cinematic editorial */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0; /* Sharp editorial corners */
}

.tour-v4-dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tour-v4-dest-card:hover .tour-v4-dest-img,
.tour-v4-dest-card.is-hovered .tour-v4-dest-img {
    transform: scale(1.04);
}

/* Destination text content */
.tour-v4-dest-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0; /* Single child (title only) — no gap needed */
    padding: 12px 14px 16px;
}

.tour-v4-dest-name {
    font-family: var(--tv4-font-serif);
    font-size: 0.925rem;  /* +0.045rem (~0.7px at 16px base) — more authoritative, still compact */
    font-weight: 500;     /* Medium — editorial, not a navigation link */
    color: rgba(44, 41, 33, 0.82); /* Richer warm dark ink — readable hierarchy, not pure black */
    line-height: 1.50;
    letter-spacing: -0.005em;
    margin: 0;
    /* Full title — natural multi-line wrapping, no truncation */
    transition: color 0.32s ease;
}

.tour-v4-dest-card:hover .tour-v4-dest-name,
.tour-v4-dest-card.is-hovered .tour-v4-dest-name {
    color: rgba(107, 128, 81, 0.84); /* Olive, slightly richer on interaction — still restrained */
}

/* Empty state fallback */
.tour-v4-location-dest-empty {
    padding: 20px 0;
}

.tour-v4-location-empty-text {
    font-size: 0.88rem;
    line-height: 1.62;
    color: rgba(61, 61, 61, 0.72);
    font-style: italic;
    margin: 0;
}

/* ==========================================================================
   15. FULL-WIDTH SECTIONS (recommended, properties, blog, cta)
   ========================================================================== */

.tour-v4-full-section {
    padding: 60px 0;
}

.tour-v4-full-section:nth-child(even) {
    background: var(--tv4-bg-alt);
}

.tour-v4-full-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.tour-v4-full-section-title {
    font-family: var(--tv4-font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--tv4-dark);
    margin: 0;
}

/* Recommended tours — Jacada-style full-width portrait carousel */

/* Section wrapper — full viewport width, no container */
.tour-v4-rec-section {
    position: relative;                /* anchor for absolute .owl-nav */
    padding: 64px 0 52px;
    background: var(--tv4-bg-alt);
    overflow: hidden;                  /* clip stagePadding peek at page edges */
}

/* Centred heading with thin olive rule */
.tour-v4-rec-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.tour-v4-rec-title {
    font-family: var(--tv4-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--tv4-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.tour-v4-rec-title::after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background: rgba(107, 128, 81, 0.55);
    margin: 14px auto 0;
}

/* ── Portrait card ─────────────────────────────────────────────────────── */

.tour-v4-rec-card {
    padding: 0 8px;
}

.tour-v4-rec-card-link {
    display: block;
    text-decoration: none;
}

/* Portrait image container */
.tour-v4-rec-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 460px;
    border-radius: 0;                  /* sharp corners — V4 design language */
}

.tour-v4-rec-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.80s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-v4-rec-card-link:hover .tour-v4-rec-card-img {
    transform: scale(1.04);
}

/* Inset white frame — Jacada editorial signature */
.tour-v4-rec-card-frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.40s ease;
}

.tour-v4-rec-card-link:hover .tour-v4-rec-card-frame {
    border-color: rgba(255, 255, 255, 0.82);
}

/* Bottom gradient — title lives here */
.tour-v4-rec-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14, 16, 10, 0.84) 0%,
        rgba(14, 16, 10, 0.28) 42%,
        transparent 68%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 22px 22px;
    z-index: 3;
}

.tour-v4-rec-card-name {
    font-family: var(--tv4-font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px;
    line-height: 1.38;
    letter-spacing: -0.01em;
}

.tour-v4-rec-card-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.30s ease;
}

.tour-v4-rec-card-link:hover .tour-v4-rec-card-cta {
    color: rgba(255, 255, 255, 1);
}

/* ── Owl Carousel dots ────────────────────────────────────────────────── */

.tour-v4-rec-section .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.tour-v4-rec-section .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 0 4px;
    background: rgba(107, 128, 81, 0.22);
    border-radius: 50%;
    display: inline-block;
    transition: background 0.30s ease, width 0.30s ease;
}

.tour-v4-rec-section .owl-dot.active span {
    background: rgba(107, 128, 81, 0.80);
    width: 24px;
    border-radius: 3px;
}

/* ── Navigation arrows — editorial ghost style ────────────────────────── */

.tour-v4-rec-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: -20px; /* Offset for header */
}

.tour-v4-rec-section .owl-nav button {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.90) !important;
    border: 1px solid rgba(107, 128, 81, 0.18) !important;
    border-radius: 50%;
    color: rgba(107, 128, 81, 0.75);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.tour-v4-rec-section .owl-nav button.owl-prev {
    left: 20px;
}

.tour-v4-rec-section .owl-nav button.owl-next {
    right: 20px;
}

.tour-v4-rec-section .owl-nav button:hover {
    background: rgba(107, 128, 81, 0.92) !important;
    border-color: rgba(107, 128, 81, 0.92) !important;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 18px rgba(107, 128, 81, 0.26);
}

.tour-v4-rec-section .owl-nav button:disabled {
    opacity: 0.30;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── Properties carousel nav arrows ─────────────────────────────────── */

/* Break out of Bootstrap container — fill the full section width */
.tour-v4-properties-section > .container {
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.tour-v4-properties-section .owl-nav button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(107, 128, 81, 0.20) !important;
    border-radius: 50%;
    color: rgba(107, 128, 81, 0.80);
    font-size: 14px;
    transition: all 0.30s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tour-v4-properties-section .owl-nav button:hover {
    background: rgba(107, 128, 81, 0.92) !important;
    border-color: rgba(107, 128, 81, 0.92) !important;
    color: white;
}

.tour-v4-properties-section .owl-nav button.owl-prev {
    margin-right: 8px;
}

/* ── Properties section: editorial accommodation showcase ─────────────── */

/* Section heading — Playfair + olive rule, consistent with rec section */
.tour-v4-properties-section .tour-v4-full-section-title {
    font-family: var(--tv4-font-serif);
    letter-spacing: -0.02em;
}

.tour-v4-properties-section .tour-v4-full-section-title::after {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background: rgba(107, 128, 81, 0.55);
    margin: 14px auto 0;
}

/* Equal-height owl items — prevents tall cards when title wraps */
.tour-v4-prop-carousel .owl-item {
    display: flex;
}

/* Card outer: full height, flex column */
.tour-v4-prop-card {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Card inner: editorial border, sharp corners, flex column for equal height */
.tour-v4-prop-card-inner {
    border: 1px solid rgba(210, 205, 195, 0.50);
    border-radius: 0;
    overflow: hidden;
    background: var(--tv4-white);
    transition: border-color 0.45s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-v4-prop-card-inner:hover {
    border-color: rgba(107, 128, 81, 0.30);
}

/* Image: cinematic hospitality crop — taller, sharp, subtle zoom on hover */
.tour-v4-prop-img-wrap {
    overflow: hidden;
    border-radius: 0;
    height: 260px;
}

.tour-v4-prop-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.70s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-v4-prop-card-inner:hover .tour-v4-prop-img {
    transform: scale(1.04);
}

/* Body: generous, flex grow — CTA pinned to bottom */
.tour-v4-prop-body {
    background: var(--tv4-white);
    padding: 20px 22px 24px;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Property type: tiny muted olive micro-label */
.tour-v4-prop-type {
    font-size: 0.70rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(107, 128, 81, 0.72);
    margin: 0 0 8px;
}

/* Property name: Playfair serif — editorial hierarchy, max 2 lines */
.tour-v4-prop-name {
    font-family: var(--tv4-font-serif);
    font-size: 1.06rem;
    font-weight: 500;
    color: rgba(26, 26, 46, 0.90);
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.06rem * 1.35 * 2);
}

/* Location: quiet muted metadata */
.tour-v4-prop-loc {
    font-size: 0.82rem;
    color: rgba(80, 75, 65, 0.58);
    margin: 0 0 18px;
    letter-spacing: 0.01em;
    flex: 1;
}

/* CTA: editorial link — no underline decoration */
.tour-v4-prop-cta {
    display: inline-block;
    font-size: 0.81rem;
    font-weight: 500;
    color: rgba(107, 128, 81, 0.82);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
}

.tour-v4-prop-cta:hover {
    color: rgba(107, 128, 81, 1);
    text-decoration: none;
}

/* ==========================================================================
   16. BLOG SECTION — Jacada-style portrait grid
   ========================================================================== */

.tour-v4-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card is an <a> tag — entire card is clickable */
.tour-v4-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--tv4-white);
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(210, 205, 195, 0.50);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.tour-v4-blog-card:hover {
    border-color: rgba(107, 128, 81, 0.40);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
    text-decoration: none;
    color: inherit;
}

/* Image area — taller for portrait feel */
.tour-v4-blog-img-wrap {
    overflow: hidden;
    height: 300px;
    flex-shrink: 0;
}

.tour-v4-blog-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-v4-blog-card:hover .tour-v4-blog-img {
    transform: scale(1.04);
}

/* Text body — centred like Jacada image 2 */
.tour-v4-blog-body {
    padding: 24px 22px 28px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Small olive label above title — mirrors “⏰ 10 Day trip” in Jacada */
.tour-v4-blog-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(107, 128, 81, 0.80);
    margin-bottom: 12px;
    font-weight: 500;
}

.tour-v4-blog-label i {
    font-size: 0.70rem;
}

/* Big serif title — more prominent than before */
.tour-v4-blog-title {
    font-family: var(--tv4-font-serif);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--tv4-dark);
    margin: 0 0 16px;
    line-height: 1.38;
    letter-spacing: -0.01em;
    transition: color 0.30s ease;
}

.tour-v4-blog-card:hover .tour-v4-blog-title {
    color: rgba(55, 70, 28, 1);
}

/* "Read Article" at bottom — mirrors “From $XX pp” position in Jacada */
.tour-v4-blog-read {
    margin-top: auto;
    font-size: 0.80rem;
    font-weight: 600;
    color: rgba(107, 128, 81, 0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.30s ease;
}

.tour-v4-blog-card:hover .tour-v4-blog-read {
    color: rgba(55, 70, 28, 1);
}

/* ==========================================================================
   17. TOLL-FREE CTA
   ========================================================================== */

.tour-v4-cta-section {
    background-image: url('../images/italy-Cinque-Terre.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.tour-v4-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 22, 12, 0.68); /* warm dark olive — consistent with editorial palette */
}

.tour-v4-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-v4-cta-title {
    font-family: var(--tv4-font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--tv4-white);
    margin: 0 0 16px;
    line-height: 1.25;
}

.tour-v4-cta-sub {
    color: rgba(255,255,255,0.80);
    font-size: 1rem;
    margin: 0 0 28px;
    line-height: 1.65;
}

.tour-v4-cta-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.tour-v4-cta-contact-label {
    color: rgba(255,255,255,0.60);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-right: 6px;
}

.tour-v4-cta-contact-value {
    color: var(--tv4-white);
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.tour-v4-cta-contact-value:hover {
    color: rgba(252, 248, 240, 0.80);
}

/* CTA button — matches .tour-v4-cta-link editorial language:
   border-radius: 0 (zero radius — pure editorial, not pill),
   uppercase, letter-spaced. Inverted (ghost white) for dark overlay. */
.tour-v4-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 42px;
    background: transparent;
    color: var(--tv4-white);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.70);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.tour-v4-cta-btn:hover {
    background: rgba(255, 255, 255, 0.94);
    color: var(--tv4-dark);
    border-color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    color: var(--tv4-dark);
}

/* iOS: background-attachment fixed not supported */
@supports (-webkit-touch-callout: none) {
    .tour-v4-cta-section {
        background-attachment: scroll;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   MOBILE UX HARDENING — Touch, Focus, CLS Prevention
   ════════════════════════════════════════════════════════════════════════ */

/* Eliminate double-tap zoom delay on all interactive elements */
.tv4-date-chip,
.tour-v4-accord-header,
.tour-v4-submit-btn,
.tour-v4-cta-link,
.tour-v4-cta-btn,
.tour-v4-prop-cta,
.tour-v4-rec-card-link,
.tour-v4-dest-card {
    touch-action: manipulation;
}

/* Keyboard focus visibility — olive brand ring (overrides outline: none) */
.tour-v4-accord-header:focus-visible {
    outline: 2px solid rgba(107, 128, 81, 0.70);
    outline-offset: 3px;
}

.tour-v4-submit-btn:focus-visible,
.tour-v4-cta-btn:focus-visible,
.tour-v4-cta-link:focus-visible {
    outline: 2px solid rgba(107, 128, 81, 0.70);
    outline-offset: 3px;
}

/* CLS prevention: reserve height for carousel containers before OWL initialises */
.tour-v4-rec-carousel.owl-carousel:not(.owl-loaded) {
    min-height: 460px;
    overflow: hidden;
}

.tour-v4-prop-carousel.owl-carousel:not(.owl-loaded) {
    min-height: 260px;
    overflow: hidden;
}

/* CLS: broken-image fallback colour so wrappers never collapse */
.tour-v4-rec-card-img-wrap,
.tour-v4-prop-img-wrap,
.tour-v4-dest-img-wrap,
.tour-v4-itin-img {
    background-color: var(--tv4-bg-alt);
}
