/*
 * Fiyaker Tours — Modern UI Layer (warm/copper, aligned)
 * Loaded after style.css. Adds the new sections (services tiles,
 * group/private split, stats ribbon, newsletter, CTA banner, modern
 * footer, hero search) using the existing brand language —
 * warm cream / copper, hairline borders, Instrument Serif headings.
 */

/* ─────────────────────────────────────────────────────────────
   CONSISTENT GRID & ALIGNMENT TOKENS
   ───────────────────────────────────────────────────────────── */
:root {
    --section-pad: 90px;
    --section-pad-sm: 60px;
    --grid-gap: 22px;
    --max-content: 1180px;
    --max-narrow: 980px;
    --container-pad: 22px;
}

/* every section uses the same container width + padding */
.services-section .container,
.section-trips .container,
.split-section .container,
.stats-ribbon .container,
.bg-cream .container,
.newsletter-section .container,
.cta-banner .container,
.footer-modern .container {
    width: min(100%, var(--max-content));
    padding: 0 var(--container-pad);
}

.section-pad   { padding: var(--section-pad) 0; }
.section-trips { padding: var(--section-pad-sm) 0 var(--section-pad); }

/* Section-title helpers */
.section-title.section-title--center {
    text-align: center;
    justify-items: center;
    max-width: 720px;
    margin: 0 auto 36px;
}
.section-title.section-title--center h2,
.section-title.section-title--center .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-title.section-title--row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 18px;
    max-width: none;
    margin-bottom: 30px;
}
.section-title.section-title--row > div { display: grid; gap: 4px; }
.split-actions { margin-top: 8px; }
/* Override the .hero-actions .btn glass-style for the split (light bg) section.
   The white-on-white made the secondary "See group trips" button effectively
   invisible. Use a navy-outlined, high-contrast secondary instead. */
.split-actions .btn,
.split-actions .hero-actions .btn {
    background: #ffffff;
    border: 1.5px solid #0a1628;
    color: #0a1628;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-weight: 600;
}
.split-actions .btn:hover {
    background: #0a1628;
    color: #fefcfa;
    border-color: #0a1628;
}
.split-actions .btn.btn-primary {
    background: var(--accent, #c07a4b);
    border-color: var(--accent, #c07a4b);
    color: #fff;
}
.split-actions .btn.btn-primary:hover {
    background: var(--accent-strong, #a86439);
    border-color: var(--accent-strong, #a86439);
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   HERO — video backdrop with placeholder fallback + clean CTA
   ───────────────────────────────────────────────────────────── */
.hero-video-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    z-index: 0;
    background-color: #1e1710;
    background-image: url('/assets/images/hero-placeholder.svg');
    background-size: cover;
    background-position: center;
}
.hero-video-layer .hero-video {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-video-layer .hero-video.is-ready { opacity: 1; }
.hero-video-layer .hero-overlay {
    display: block !important;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(15, 10, 6, 0.55) 0%, rgba(20, 14, 10, 0.30) 45%, rgba(28, 20, 14, 0.55) 100%),
        linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.hero-grid    { z-index: 3 !important; align-items: center !important; }
.hero-trust   { z-index: 4 !important; }
.hero-slideshow,
.hero-slideshow-dots,
.hero-search { display: none !important; }

.hero .hero-copy { max-width: 720px; }
.hero .hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.14);
    border: 1px solid rgba(255, 252, 248, 0.22);
    color: #fefcfa;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}
.hero-actions .btn {
    background: rgba(255, 252, 248, 0.10);
    border-color: rgba(255, 252, 248, 0.35);
    color: #fefcfa;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-actions .btn:hover { background: rgba(255, 252, 248, 0.18); }
.hero-actions .btn.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.hero-actions .btn.btn-primary:hover {
    background: var(--accent-strong, #a86439);
    border-color: var(--accent-strong, #a86439);
}

.hero-trust {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    color: rgba(255, 248, 242, 0.86);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    pointer-events: none;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

@media (max-width: 720px) {
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-trust { font-size: 0.66rem; gap: 10px 16px; }
}

/* ─────────────────────────────────────────────────────────────
   SERVICE TILES — warm, image-bg with hover reveal
   ───────────────────────────────────────────────────────────── */
.services-section { padding: var(--section-pad) 0 var(--section-pad-sm); background: #fff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap);
}
.service-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    min-height: 280px;
    border-radius: var(--radius-lg);
    border: var(--hairline-border);
    background: var(--surface);
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--tile-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 0.7s ease;
    z-index: -2;
}
.service-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 14, 10, 0.0) 30%, rgba(20, 14, 10, 0.78) 100%);
    z-index: -1;
    transition: background 0.3s ease;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-tile:hover::before { transform: scale(1.10); }
.service-tile:hover::after { background: linear-gradient(180deg, rgba(20, 14, 10, 0.05) 0%, rgba(38, 26, 18, 0.85) 100%); }
.service-tile h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.service-tile p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.service-tile:hover p { max-height: 200px; }
.service-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 248, 242, 0.78);
    margin-bottom: 10px;
}
.service-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.service-tile:hover .service-arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   TRIP CARD OVERLAYS — keep the original card body styles,
   add a price tag + origin badge over the image
   ───────────────────────────────────────────────────────────── */
.trip-card .card-image { position: relative; }
.card-origin-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}
.card-origin-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.card-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.1;
    text-align: right;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-md);
}
.card-price-tag small {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

/* keep the trips grid 3-up at desktop, aligned with features grid */
.trips-grid.is-modern { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ─────────────────────────────────────────────────────────────
   GROUP / PRIVATE SPLIT
   ───────────────────────────────────────────────────────────── */
.split-section { padding: var(--section-pad) 0; background: var(--paper); }
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
}
.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.split-image-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    padding: 12px 18px;
    border-radius: var(--radius);
    background: rgba(255, 252, 248, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}
.split-image-badge strong {
    display: block;
    font-size: 1.4rem;
    font-family: var(--font-display);
    color: var(--accent-strong);
    line-height: 1;
}
.split-image-badge span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.split-content { display: grid; gap: 16px; }
.split-content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    max-width: 16ch;
}
.split-checks {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}
.split-checks li {
    list-style: none;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-top: var(--hairline-border);
    color: var(--text-subtle);
    font-size: 0.96rem;
}
.split-checks li:first-child { border-top: 0; padding-top: 0; }
.split-checks li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(192, 122, 75, 0.14);
    color: var(--accent-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.72rem;
}

/* ─────────────────────────────────────────────────────────────
   STATS RIBBON — warm, on-brand (no harsh dark)
   ───────────────────────────────────────────────────────────── */
.stats-ribbon {
    background: var(--surface);
    color: var(--text);
    padding: 70px 0;
    border-top: var(--hairline-border);
    border-bottom: var(--hairline-border);
}
.stats-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    text-align: center;
}
.stats-ribbon-item .stat-number {
    color: var(--accent-strong);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}
.stats-ribbon-item .stat-number small {
    color: var(--accent);
    font-size: 0.6em;
    margin-left: 2px;
    font-weight: 400;
}
.stats-ribbon-item .stat-label {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

/* ─────────────────────────────────────────────────────────────
   NEWSLETTER (full-width section + footer variant)
   ───────────────────────────────────────────────────────────── */
.newsletter-section { padding: var(--section-pad) 0; background: var(--paper); }
.newsletter-card {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 5vw, 56px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent), #d69160);
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}
.newsletter-content h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    line-height: 1.05;
    max-width: 16ch;
    margin-bottom: 12px;
}
.newsletter-content p {
    color: rgba(255, 248, 242, 0.92);
    font-size: 1rem;
    max-width: 38ch;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.newsletter-form input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0 18px;
    min-height: 44px;
    font-size: 0.94rem;
    color: var(--text);
    min-width: 0;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    border: 0;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    padding: 0 22px;
    min-height: 44px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.newsletter-form button:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
}
.newsletter-status {
    margin-top: 10px;
    font-size: 0.82rem;
    min-height: 1.2em;
    color: rgba(255, 248, 242, 0.94);
}
.newsletter-status.is-error { color: #ffd9c8; }
.newsletter-status.is-success { color: #fff; font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────────────── */
.cta-banner { padding: var(--section-pad) 0; background: var(--surface); }
.cta-banner-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(48px, 7vw, 90px) clamp(28px, 4vw, 56px);
    background-image:
        linear-gradient(120deg, rgba(20, 14, 10, 0.65) 0%, rgba(28, 20, 14, 0.45) 50%, rgba(20, 14, 10, 0.65) 100%),
        var(--cta-bg, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-banner-inner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    max-width: 18ch;
    margin: 6px 0 10px;
}
.cta-banner-inner p {
    color: rgba(255, 248, 242, 0.92);
    font-size: 1rem;
    max-width: 44ch;
    margin: 0;
}
.cta-banner-eyebrow { color: rgba(255, 248, 242, 0.78); }
.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.cta-banner-actions .btn {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: var(--text);
}
.cta-banner-actions .btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.cta-banner-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent), #d69160);
    border-color: transparent;
    color: #fff;
}
.cta-banner-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   MODERN FOOTER (3-col, dark, on-brand)
   ───────────────────────────────────────────────────────────── */
.footer-modern {
    background: linear-gradient(180deg, #271c14 0%, #1e1710 100%);
    color: rgba(255, 248, 242, 0.78);
    padding: 70px 0 24px;
    margin-top: 0;
}
.footer-modern .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 50px;
}
.footer-modern .footer-panel { display: flex; flex-direction: column; gap: 14px; }
.footer-modern .footer-brand-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0;
}
.footer-modern .footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
}
.footer-modern p {
    color: rgba(255, 248, 242, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    max-width: 36ch;
}
.footer-modern .footer-label {
    color: rgba(255, 248, 242, 0.55);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-modern .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.footer-modern .footer-links a {
    color: rgba(255, 248, 242, 0.78);
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer-modern .footer-links a:hover { color: var(--accent); }

.footer-modern .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-modern .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 242, 0.18);
    color: rgba(255, 248, 242, 0.78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-modern .footer-social a svg { width: 16px; height: 16px; }
.footer-modern .footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-modern .footer-contact-item { display: grid; gap: 2px; }
.footer-modern .footer-contact-item small {
    color: rgba(255, 248, 242, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-modern .footer-contact-item a {
    color: rgba(255, 248, 242, 0.92);
    font-size: 0.94rem;
}
.footer-modern .footer-contact-item a:hover { color: var(--accent); }

/* Footer newsletter (compact) */
.footer-newsletter { display: grid; gap: 10px; }
.footer-newsletter p { font-size: 0.86rem; max-width: none; }
.footer-newsletter form.newsletter-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 248, 242, 0.14);
    box-shadow: none;
    padding: 4px;
}
.footer-newsletter form.newsletter-form input {
    color: #fff;
    min-height: 38px;
}
.footer-newsletter form.newsletter-form input::placeholder { color: rgba(255, 248, 242, 0.5); }
.footer-newsletter form.newsletter-form button {
    background: var(--accent);
    color: #fff;
    width: 42px;
    min-width: 42px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-newsletter form.newsletter-form button svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.footer-newsletter form.newsletter-form button:hover {
    background: var(--accent-strong);
}
.footer-newsletter .newsletter-status {
    color: rgba(255, 248, 242, 0.78);
    margin-top: 4px;
}

/* Visually-hidden text used inside icon-only buttons */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Icon-leading buttons (back arrows etc.) */
.btn.btn-icon-leading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn.btn-icon-leading svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
    transition: transform 0.25s ease;
}
.btn.btn-icon-leading:hover svg { transform: translateX(-3px); }

.footer-modern .footer-bottom {
    border-top: 1px solid rgba(255, 248, 242, 0.10);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 248, 242, 0.5);
    font-size: 0.78rem;
}
.footer-modern .footer-bottom a {
    color: rgba(255, 248, 242, 0.78);
}
.footer-modern .footer-bottom a:hover { color: var(--accent); }
.footer-modern .footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   ICON SIZING (Lucide rendered as SVG)
   ───────────────────────────────────────────────────────────── */
.feature-icon i,
.feature-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }

/* ─────────────────────────────────────────────────────────────
   SCROLL ANIMATIONS — gentle stagger
   ───────────────────────────────────────────────────────────── */
.services-grid .service-tile:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-tile:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-tile:nth-child(3) { transition-delay: 0.20s; }
.services-grid .service-tile:nth-child(4) { transition-delay: 0.28s; }
.stats-ribbon-grid .stats-ribbon-item:nth-child(1) { transition-delay: 0.05s; }
.stats-ribbon-grid .stats-ribbon-item:nth-child(2) { transition-delay: 0.12s; }
.stats-ribbon-grid .stats-ribbon-item:nth-child(3) { transition-delay: 0.20s; }
.stats-ribbon-grid .stats-ribbon-item:nth-child(4) { transition-delay: 0.28s; }

.number-ticker { display: inline-block; font-variant-numeric: tabular-nums; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-ribbon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split-grid { gap: 36px; }
    .footer-modern .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
    :root { --section-pad: 70px; --section-pad-sm: 50px; }
    .hero-search {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 18px auto 0;
        grid-template-columns: 1fr 1fr;
    }
    .hero-search-submit { grid-column: 1 / -1; min-height: 46px; }
    .hero-search-field + .hero-search-field { border-left: 0; }
    .hero-trust { position: static; transform: none; margin-top: 18px; color: rgba(255, 255, 255, 0.86); }
    .split-grid { grid-template-columns: 1fr; }
    .split-image { aspect-ratio: 4 / 3; }
    .newsletter-card { grid-template-columns: 1fr; }
    .cta-banner-inner { grid-template-columns: 1fr; text-align: left; }
    .cta-banner-actions { justify-content: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   GALLERY — placeholder state (shown only when no real images)
   ───────────────────────────────────────────────────────────── */
.gallery-cell.is-placeholder { background: #f5efe8; }
.gallery-cell.is-placeholder .gallery-caption {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
    background: rgba(255, 252, 248, 0.92);
    border: 1px solid rgba(171, 122, 88, 0.16);
    border-radius: 12px;
    color: #4a3322;
    font-family: 'Instrument Sans', Heebo, Georgia, serif;
    font-size: 1rem;
    line-height: 1.2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.gallery-cell.is-placeholder .gallery-caption strong { font-weight: 600; letter-spacing: -0.02em; }
.gallery-cell.is-placeholder .gallery-caption span {
    font-family: 'Instrument Sans', Heebo, system-ui, sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a86439;
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-ribbon-grid { grid-template-columns: 1fr 1fr; }
    .footer-modern .footer-grid { grid-template-columns: 1fr; }
    .newsletter-card { padding: 28px 22px; gap: 24px; }
    .newsletter-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 10px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.98);
    }
    .newsletter-form input {
        width: 100%;
        min-height: 48px;
        background: #faf6ee;
        border-radius: 12px;
        padding: 0 14px;
    }
    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
        min-height: 48px;
        padding: 0 18px;
    }
    .footer-newsletter form.newsletter-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 10px;
        gap: 10px;
    }
    .footer-newsletter form.newsletter-form input,
    .footer-newsletter form.newsletter-form button {
        width: 100%;
        border-radius: 12px;
        min-height: 46px;
    }
    .cta-banner-inner { padding: 28px 22px; }
    .cta-banner-actions { flex-wrap: wrap; gap: 10px; }
    .cta-banner-actions .btn { flex: 1 1 auto; min-width: 0; }
}
@media (max-width: 720px) {
    .newsletter-content h2 { font-size: 1.5rem; max-width: none; }
    .newsletter-content p { max-width: none; }
}

/* Form opt-out checkbox (newsletter, etc) */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 18px;
    color: var(--text-subtle);
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}
.form-checkbox input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* --- Trip Detail page-header hero strip --- */
.page-header.trip-detail-header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 130px 0 36px;
    margin-bottom: 18px;
}
.page-header.trip-detail-header.has-hero {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(74, 38, 18, 0.55), rgba(43, 22, 12, 0.85)),
        var(--trip-hero) center/cover no-repeat !important;
    background-attachment: fixed, fixed;
}
.page-header.trip-detail-header.has-hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: inherit;
    filter: saturate(1.1) hue-rotate(-6deg);
}
.page-header.trip-detail-header.has-hero .trip-detail-header-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(192, 122, 75, 0.32) 0%, rgba(192, 122, 75, 0) 60%),
        linear-gradient(180deg, rgba(74, 38, 18, 0.18) 0%, rgba(43, 22, 12, 0.78) 100%);
}
.page-header.trip-detail-header.has-hero h1,
.page-header.trip-detail-header.has-hero .breadcrumb,
.page-header.trip-detail-header.has-hero .breadcrumb a,
.page-header.trip-detail-header.has-hero .breadcrumb span {
    color: #fff !important;
}
.page-header.trip-detail-header.has-hero .breadcrumb a:hover { color: var(--accent); }
.page-header.trip-detail-header.has-hero .breadcrumb {
    border-top-color: rgba(255,255,255,0.18) !important;
}
@media (max-width: 768px) {
    .page-header.trip-detail-header { padding: 100px 0 26px; }
}

/* --- Footer brand cleanup (logo removed) --- */
.footer-modern .footer-brand-title { margin-top: 4px; }

/* --- Mobile/Tablet nav polish --- */
@media (max-width: 900px) {
    .nav-links .nav-manage-booking {
        margin-top: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: #fff !important;
        padding: 12px 22px;
        border-radius: 999px;
        font-weight: 600;
    }
}
@media (max-width: 768px) {
    .mobile-toggle {
        width: 44px; height: 44px;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 5px;
        background: rgba(255,255,255,0.08);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.18);
    }
    .mobile-toggle span {
        width: 22px; height: 2px; background: currentColor; border-radius: 2px;
    }
    .nav-close {
        width: 44px; height: 44px;
        font-size: 1.6rem; line-height: 1;
        border-radius: 10px;
        background: rgba(0,0,0,0.05);
    }
}
/* -------------------------------------------------------------
   Private trip request form + reusable Fiyaker form controls
   ------------------------------------------------------------- */
.pr-form { max-width: 920px; margin: 0 auto; }
.pr-section { background: #ffffff; border: 1px solid rgba(184, 134, 11, 0.18); border-radius: 18px; padding: 28px; margin-bottom: 22px; box-shadow: 0 4px 22px rgba(10, 22, 40, 0.05); }
.pr-section-title { font-family: 'Outfit', 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 1.25rem; color: #0a1628; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid #ece1cf; letter-spacing: -0.01em; }
.pr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pr-field { display: flex; flex-direction: column; }
.pr-field-wide { grid-column: 1 / -1; }
.pr-field label { font-size: 0.85rem; font-weight: 600; color: #3a2a1e; margin-bottom: 6px; }
.pr-req { color: #c07a4b; margin-left: 2px; }
.pr-field input, .pr-field textarea, .pr-field select { padding: 12px 14px; border: 1px solid #d8c9b3; border-radius: 10px; background: #fefcfa; font: inherit; color: #1a1410; transition: border-color .15s, box-shadow .15s, background .15s; }
.pr-field input:hover, .pr-field textarea:hover, .pr-field select:hover { border-color: #c07a4b; }
.pr-field input:focus, .pr-field textarea:focus, .pr-field select:focus { outline: none; border-color: #b8860b; background: #fff; box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18); }
.pr-field textarea { resize: vertical; min-height: 96px; }
.pr-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 8px; }
.pr-result { min-height: 1.2em; font-size: 0.92rem; text-align: center; }
.pr-result.ok { color: #1d7a4e; }
.pr-result.err { color: #b33a2a; }
@media (max-width: 720px) { .pr-grid { grid-template-columns: 1fr; } .pr-section { padding: 22px; } }

/* ----------- Fiyaker custom select (drop-in for any <select class="fy-select">) ----------- */
.fy-select-wrap { position: relative; }
.fy-select-wrap select.fy-select { opacity: 0; position: absolute; inset: 0; pointer-events: none; }
.fy-select-display { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border: 1px solid #d8c9b3; border-radius: 10px; background: #fefcfa; color: #1a1410; cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; user-select: none; }
.fy-select-display:hover { border-color: #c07a4b; }
.fy-select-wrap.open .fy-select-display, .fy-select-display:focus { outline: none; border-color: #b8860b; background: #fff; box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18); }
.fy-select-display .fy-select-value { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fy-select-display .fy-select-value.placeholder { color: #8a7a6a; }
.fy-select-display .fy-select-caret { width: 14px; height: 14px; border-right: 2px solid #6b574a; border-bottom: 2px solid #6b574a; transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s; flex-shrink: 0; }
.fy-select-wrap.open .fy-select-display .fy-select-caret { transform: rotate(-135deg) translate(-2px, -2px); }
.fy-select-pop { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid #ece1cf; border-radius: 12px; box-shadow: 0 14px 40px rgba(10, 22, 40, 0.18); padding: 6px; z-index: 200; max-height: 280px; overflow: auto; opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none; transform-origin: top center; transition: opacity .18s ease, transform .18s ease; }
.fy-select-wrap.open .fy-select-pop { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fy-select-option { padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: 0.92rem; color: #2a1f17; transition: background .12s; }
.fy-select-option:hover, .fy-select-option.active { background: #f7f1e8; color: #0a1628; }
.fy-select-option.selected { background: #c07a4b; color: #fff; }
.fy-select-option.placeholder { color: #8a7a6a; font-style: italic; }

/* ----------- Fiyaker date picker (drop-in for any <input class="fy-date">) ----------- */
.fy-date-pop { position: absolute; background: #fff; border: 1px solid #ece1cf; border-radius: 14px; box-shadow: 0 14px 40px rgba(10, 22, 40, 0.18); padding: 14px; z-index: 300; width: 290px; opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none; transition: opacity .18s ease, transform .18s ease; transform-origin: top center; }
.fy-date-pop.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fy-date-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fy-date-head button { background: transparent; border: none; cursor: pointer; padding: 4px 8px; border-radius: 6px; font: inherit; color: #3a2a1e; font-weight: 600; transition: background .12s; }
.fy-date-head button:hover { background: #f7f1e8; }
.fy-date-title { font-weight: 700; font-size: 0.95rem; color: #0a1628; }
.fy-date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.fy-date-dow { font-size: 0.7rem; font-weight: 700; text-align: center; padding: 6px 0; color: #8a7a6a; text-transform: uppercase; letter-spacing: .05em; }
.fy-date-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; cursor: pointer; font-size: 0.88rem; color: #2a1f17; transition: background .12s, color .12s; user-select: none; }
.fy-date-day:hover { background: #f7f1e8; }
.fy-date-day.other-month { color: #c8baa5; }
.fy-date-day.today { font-weight: 700; color: #b8860b; }
.fy-date-day.selected { background: #c07a4b; color: #fff; }
.fy-date-day.disabled { color: #d8cfc1; cursor: not-allowed; pointer-events: none; }
.fy-date-foot { display: flex; justify-content: space-between; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0e8da; }
.fy-date-foot button { background: transparent; border: 1px solid #d8c9b3; border-radius: 8px; padding: 6px 12px; font: inherit; font-size: 0.82rem; cursor: pointer; color: #3a2a1e; transition: background .12s, border-color .12s; }
.fy-date-foot button:hover { background: #f7f1e8; border-color: #c07a4b; }
.fy-date-foot button.fy-date-clear { color: #b33a2a; }

/* Compact footer overrides */
.footer-modern .footer-grid { gap: 28px; padding-top: 38px; padding-bottom: 22px; }
.footer-modern .footer-panel { gap: 8px; }
.footer-modern .footer-panel p { font-size: 0.86rem; line-height: 1.5; margin: 0; }
.footer-modern .footer-links { gap: 4px; }
.footer-modern .footer-links li a { font-size: 0.88rem; padding: 2px 0; }
.footer-modern .footer-contact-item { padding: 4px 0; gap: 1px; }
.footer-modern .footer-contact-item small { font-size: 0.7rem; }
.footer-modern .footer-contact-item a { font-size: 0.88rem; }
.footer-modern .footer-brand-title { font-size: 1.2rem; margin-bottom: 4px; }
.footer-modern .footer-label { font-size: 0.7rem; margin-bottom: 8px; }
.footer-modern .footer-bottom { padding: 14px 0; font-size: 0.78rem; }
.footer-modern .footer-newsletter p { margin-bottom: 6px; }
.footer-modern .newsletter-form { margin-top: 4px; }
/* --- Airline-style booking step indicator + panels --- */
.bk-steps { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; flex-wrap: nowrap; }
.bk-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; min-width: 70px; }
.bk-step-num { width: 34px; height: 34px; border-radius: 50%; background: #f0e6d8; color: #8a7a6a; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; transition: background .25s, color .25s, transform .25s; border: 2px solid transparent; }
.bk-step-label { font-size: 0.78rem; color: #8a7a6a; font-weight: 600; transition: color .25s; text-align: center; }
.bk-step.is-active .bk-step-num { background: #c07a4b; color: #fff; transform: scale(1.08); box-shadow: 0 6px 16px rgba(192,122,75,0.35); }
.bk-step.is-active .bk-step-label { color: #0a1628; }
.bk-step.is-done .bk-step-num { background: #1d7a4e; color: #fff; }
.bk-step.is-done .bk-step-label { color: #1d7a4e; }
.bk-step-line { flex: 1; height: 2px; background: #e8d9c4; border-radius: 1px; min-width: 16px; }
.bk-panel { display: none; animation: bkPanelIn .35s ease; }
.bk-panel.is-active { display: block; }
@keyframes bkPanelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.bk-panel-title { font-family: var(--font-sans, 'Instrument Sans', 'Heebo', Arial, sans-serif); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; color: #0a1628; margin: 0 0 4px; }
.bk-panel-sub { color: #6b574a; margin-bottom: 18px; font-size: 0.92rem; }
.bk-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.bk-nav .btn-primary { margin-left: auto; }
@media (max-width: 560px) {
    .bk-step-label { display: none; }
    .bk-step { min-width: 0; }
}

/* Sidebar Book Now button hidden during the form steps (handled by JS) */
body.booking-flow-active #booking-next-btn { display: none !important; }
/* =============================================================
   CLEAN BASIC FOOTER  (flat solid bg, 4 columns, centered bottom)
   ============================================================= */
.footer-clean { background: #0a1628; color: rgba(255, 248, 242, 0.78); padding: 64px 0 24px; margin-top: 0; }
.footer-clean .container { width: min(100%, 1180px); padding: 0 22px; margin: 0 auto; }
.footer-clean-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-clean-brand { color: #fff; font-family: var(--font-sans, 'Instrument Sans', 'Heebo', Arial, sans-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 4px; }
.footer-col-brand p { color: rgba(255, 248, 242, 0.7); font-size: 0.92rem; line-height: 1.6; margin: 0; max-width: 32ch; }
.footer-clean-title { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 18px; }
.footer-clean-links, .footer-clean-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-clean-links a { color: rgba(255, 248, 242, 0.82); font-size: 0.92rem; text-decoration: none; transition: color .15s, padding-left .15s; }
.footer-clean-links a:hover { color: var(--accent, #c07a4b); padding-left: 4px; }
.footer-clean-contact li { display: flex; align-items: center; gap: 10px; color: rgba(255, 248, 242, 0.82); font-size: 0.92rem; }
.footer-clean-contact li i, .footer-clean-contact li svg { width: 16px; height: 16px; color: var(--accent, #c07a4b); flex-shrink: 0; stroke-width: 2; }
.footer-clean-contact a { color: rgba(255, 248, 242, 0.82); text-decoration: none; transition: color .15s; }
.footer-clean-contact a:hover { color: var(--accent, #c07a4b); }
.footer-clean-divider { height: 1px; background: rgba(255, 248, 242, 0.10); margin: 24px 0; }
.footer-clean-bottom { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-clean-copy { color: rgba(255, 248, 242, 0.6); font-size: 0.85rem; margin: 0; }
.footer-clean-meta { color: rgba(255, 248, 242, 0.6); font-size: 0.85rem; margin: 0; display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 8px; }
.footer-clean-meta a { color: rgba(255, 248, 242, 0.85); text-decoration: none; transition: color .15s; }
.footer-clean-meta a:hover { color: var(--accent, #c07a4b); }
.footer-clean-sep { color: rgba(255, 248, 242, 0.3); }
@media (max-width: 900px) { .footer-clean-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-clean-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; } .footer-clean { padding: 48px 0 22px; } }
/* Override: 3-column compact clean footer (no extra meta row) */
.footer-clean { padding: 44px 0 20px; background: linear-gradient(180deg, #271c14 0%, #1e1710 100%); }
.footer-clean-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px; margin-bottom: 26px; }
.footer-clean-title { margin-bottom: 12px; font-size: 1rem; }
.footer-clean-links, .footer-clean-contact { gap: 8px; }
.footer-clean-links a, .footer-clean-contact li, .footer-clean-contact a { font-size: 0.88rem; }
.footer-clean-bottom { padding-top: 18px; border-top: 1px solid rgba(255, 248, 242, 0.10); }
.footer-clean-copy { font-size: 0.8rem; }
@media (max-width: 720px) { .footer-clean-grid { grid-template-columns: 1fr; gap: 24px; } .footer-clean { padding: 36px 0 18px; } }
/* Hard overrides for clean footer (defeat any older .footer/.footer-grid rules in style.css) */
footer.footer.footer-clean { background: linear-gradient(180deg, #271c14 0%, #1e1710 100%) !important; padding: 44px 0 20px !important; color: rgba(255, 248, 242, 0.78) !important; border: 0 !important; border-radius: 0 !important; }
footer.footer.footer-clean .footer-clean-grid { display: grid !important; grid-template-columns: 1.4fr 1fr 1.2fr !important; gap: 36px !important; background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; margin-bottom: 26px !important; }
footer.footer.footer-clean .footer-clean-links, footer.footer.footer-clean .footer-clean-contact { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 8px !important; }
footer.footer.footer-clean .footer-clean-links li, footer.footer.footer-clean .footer-clean-contact li { list-style: none !important; padding: 0 !important; margin: 0 !important; }
footer.footer.footer-clean .footer-clean-links li::marker, footer.footer.footer-clean .footer-clean-contact li::marker { content: '' !important; }
footer.footer.footer-clean .footer-clean-brand, footer.footer.footer-clean .footer-clean-title { color: #fff !important; }
footer.footer.footer-clean .footer-col-brand p { color: rgba(255, 248, 242, 0.7) !important; }
footer.footer.footer-clean a { color: rgba(255, 248, 242, 0.82) !important; text-decoration: none !important; }
footer.footer.footer-clean a:hover { color: #c07a4b !important; }
footer.footer.footer-clean .footer-clean-bottom { border-top: 1px solid rgba(255, 248, 242, 0.10) !important; padding-top: 18px !important; text-align: center !important; }
footer.footer.footer-clean .footer-clean-copy { color: rgba(255, 248, 242, 0.6) !important; font-size: 0.8rem !important; margin: 0 !important; }
@media (max-width: 720px) { footer.footer.footer-clean .footer-clean-grid { grid-template-columns: 1fr !important; gap: 24px !important; } }
/* fy-date enhanced bits */
.fy-date-head { gap: 6px; }
.fy-date-mtoggle, .fy-date-ytoggle { font-weight: 700; padding: 4px 10px; background: transparent; border: 1px solid transparent; border-radius: 6px; cursor: pointer; font: inherit; color: #0a1628; transition: background .12s, border-color .12s; }
.fy-date-mtoggle:hover, .fy-date-ytoggle:hover { background: #f7f1e8; border-color: #e8d9c4; }
.fy-date-nav { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.fy-date-years, .fy-date-months { padding: 4px 2px; }
.fy-date-yearjump { margin-bottom: 8px; }
.fy-date-yearinput { width: 100%; padding: 8px 10px; border: 1px solid #d8c9b3; border-radius: 8px; font: inherit; }
.fy-date-yearinput:focus { outline: none; border-color: #b8860b; box-shadow: 0 0 0 3px rgba(184,134,11,.18); }
.fy-date-yearlist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; max-height: 220px; overflow: auto; }
.fy-date-yearcell, .fy-date-monthcell { padding: 8px 4px; border-radius: 8px; background: transparent; border: 1px solid transparent; cursor: pointer; font: inherit; font-size: 0.86rem; color: #2a1f17; transition: background .12s, color .12s; }
.fy-date-yearcell:hover, .fy-date-monthcell:hover { background: #f7f1e8; }
.fy-date-yearcell.selected, .fy-date-monthcell.selected { background: #c07a4b; color: #fff; }
.fy-date-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

/* Disabled / dimmed Continue */
.btn.is-disabled, .btn[disabled], .btn:disabled { opacity: 0.4 !important; cursor: not-allowed !important; pointer-events: none !important; }

/* ── Footer trust list (merged from old trust-strip) ── */
.footer-clean-trust {
    list-style: none; padding: 0; margin: 12px 0 0;
    display: flex; flex-direction: column; gap: 8px;
}
.footer-clean-trust li {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255, 248, 242, 0.72);
    font-size: 0.85rem; line-height: 1.4;
}
.footer-clean-trust li svg { color: var(--accent, #c07a4b); flex-shrink: 0; }
footer.footer.footer-clean .footer-clean-trust li { color: rgba(255, 248, 242, 0.72) !important; }

/* Country/method flag badge inside footer-clean-contact links */
.footer-flag {
    display: inline-block; padding: 2px 7px; margin-right: 4px;
    border-radius: 6px; font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.04em; background: var(--accent, #c07a4b); color: #fff;
    vertical-align: middle;
}
.footer-flag--wa { background: #25D366; }
footer.footer.footer-clean .footer-clean-contact a .footer-flag { color: #fff !important; }
/* Booking: passenger cards + review */
.bk-pax-card { border: 1px solid #e8d9c4; border-radius: 12px; padding: 18px; margin-bottom: 18px; background: #fdfaf5; }
.bk-pax-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #0a1628; font-size: 1.02rem; }
.bk-pax-lead { display: inline-block; background: #c07a4b; color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.bk-review { border: 1px solid #e8d9c4; border-radius: 12px; background: #fdfaf5; padding: 14px 18px; }
.bk-review-row { display: flex; flex-direction: column; gap: 4px; padding: 10px 0; border-bottom: 1px dashed #e8d9c4; }
.bk-review-row:last-child { border-bottom: 0; }
.bk-review-row strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #7a5a3a; }
.bk-review-row span, .bk-review-list { color: #2a1f17; font-size: 0.95rem; }
.bk-review-list { margin: 4px 0 0; padding-left: 18px; }
.bk-review-list li { margin: 2px 0; }
/* Trip detail hero � full-bleed, dramatic gradient fading to page bg */
.page-header.trip-detail-header.has-hero {
    padding: 220px 0 80px !important;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0 !important;
}
.page-header.trip-detail-header.has-hero .trip-detail-header-overlay {
    background: linear-gradient(180deg,
        rgba(10, 22, 40, 0.15) 0%,
        rgba(10, 22, 40, 0.35) 45%,
        rgba(10, 22, 40, 0.78) 88%,
        #fefcfa 100%) !important;
}
.page-header.trip-detail-header.has-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 28px rgba(10, 22, 40, 0.55);
    margin-bottom: 12px;
}
.page-header.trip-detail-header.has-hero .breadcrumb {
    font-size: 0.86rem;
    border-top: 0 !important;
    padding-top: 0 !important;
    opacity: 0.92;
}
@media (max-width: 768px) {
    .page-header.trip-detail-header.has-hero { padding: 150px 0 56px !important; min-height: 340px; }
}
/* -----------------------------------------------------------------
   MOBILE / TABLET PERFORMANCE + TOUCH FEEDBACK
   ----------------------------------------------------------------- */

/* Kill default mobile tap highlight everywhere; we add our own. */
* { -webkit-tap-highlight-color: transparent; }

/* Nice copper tap feedback on tappable things (touch devices only). */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn, .card, .trip-card, [role="button"], .nav-link,
    .footer-clean-links a, .footer-clean-contact a, .card-chip,
    .gallery-item, .accordion-trigger, .tab, summary {
        -webkit-tap-highlight-color: transparent;
        transition: background-color 0.12s ease, transform 0.12s ease, opacity 0.12s ease;
    }
    a:active, button:active, .btn:active, .card:active, .trip-card:active,
    [role="button"]:active, .nav-link:active {
        transform: scale(0.975);
        opacity: 0.88;
    }
    .btn:active { box-shadow: 0 2px 8px rgba(192,122,75,0.25) inset; }
}

/* Aggressively trim animations on small screens for snappier feel. */
@media (max-width: 900px) {
    /* Halve / remove transitions on heavy elements */
    .blur-fade, .fade-up, .fade-in, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
    .trip-card, .card { transition: transform 0.15s ease, box-shadow 0.15s ease !important; }
    .trip-card:hover, .card:hover { transform: none !important; }
    /* Disable parallax / heavy backdrop blurs on phones */
    [data-parallax], .parallax-section { transform: none !important; }
    .glass, .frosted, .backdrop-blur { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    /* Cut hero video on mobile to save battery & data */
    .hero-video, video.hero-bg { display: none !important; }
}

/* Respect users who explicitly ask for reduced motion. */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* -----------------------------------------------------------------
   FOOTER � "Powered by Motive" credit on every screen size
   ----------------------------------------------------------------- */
.footer-clean-bottom { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: space-between; }
.footer-motive-credit { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.01em; }
.footer-motive-credit a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.footer-motive-credit a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 600px) {
    .footer-clean-bottom { justify-content: center; text-align: center; }
}
/* Private-trip request: budget currency selector beside number input */
.pr-budget-row { display: flex; gap: 8px; align-items: stretch; }
.pr-budget-row .pr-budget-currency { width: 110px; flex-shrink: 0; }
.pr-budget-row input { flex: 1; min-width: 0; }
@media (max-width: 480px) {
    .pr-budget-row { flex-direction: column; }
    .pr-budget-row .pr-budget-currency { width: 100%; }
}
/* Footer bottom: copyright left, Powered by Motive right (last line) */
footer.footer.footer-clean .footer-clean-bottom { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; align-items: center !important; justify-content: space-between !important; gap: 10px 18px !important; text-align: left !important; }
footer.footer.footer-clean .footer-clean-copy { margin: 0 !important; text-align: left !important; }
footer.footer.footer-clean .footer-motive-credit { margin: 0 !important; text-align: right !important; }
@media (max-width: 560px) {
    footer.footer.footer-clean .footer-clean-bottom { justify-content: center !important; text-align: center !important; }
    footer.footer.footer-clean .footer-clean-copy, footer.footer.footer-clean .footer-motive-credit { text-align: center !important; }
}

/* --- Phone row: country-code dropdown + number input combo ---
   Country-code dropdown is intentionally tight — just wide enough for the
   flag + dial code — so the phone number input gets the most room. */
.fy-phone-row { display: flex; gap: 8px; align-items: stretch; }
.fy-phone-row .fy-phone-code { width: 96px; flex: 0 0 96px; }
.fy-phone-row .fy-phone-code .fy-select-wrap,
.fy-phone-row .fy-select-wrap { width: 100%; }
.fy-phone-row .fy-phone-code .fy-select-trigger { padding-left: 12px; padding-right: 26px; font-variant-numeric: tabular-nums; }
.fy-phone-row .fy-phone-code .fy-select-panel { min-width: 140px; }
.fy-phone-row input { flex: 1 1 auto; min-width: 0; }
@media (max-width: 480px) {
    .fy-phone-row .fy-phone-code { width: 88px; flex: 0 0 88px; }
}

/* --- Footer contact item: code + number inline --- */
.footer-contact-item { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.footer-contact-item small { margin: 0; flex-shrink: 0; display: inline-block; }

/* --- Trip-detail hero parallax (gentle scroll-over-image) ---
   `background-attachment: fixed` makes the image stay put while content
   scrolls over it. We declare it with !important to win against the
   shorthand `background:` declaration above which would otherwise reset
   it to `scroll`. Mobile devices ignore `fixed` for performance — we fall
   back to a normal scroll attachment there. */
.page-header.trip-detail-header.has-hero {
    background-attachment: fixed, fixed !important;
}
@media (max-width: 900px) {
    .page-header.trip-detail-header.has-hero {
        background-attachment: scroll, scroll !important;
    }
}
/* RTL + Yiddish appended by i18n batch */


/* ─────────────────────────────────────────────────────────────
   FOOTER LANGUAGE SWITCH (en / yi)
   ───────────────────────────────────────────────────────────── */
.footer-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin: 0;
}
.footer-lang-opt {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    letter-spacing: 0.01em;
    font-weight: 500;
}
.footer-lang-opt:hover { color: #fff; }
.footer-lang-opt.is-active {
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
}
.footer-lang-sep { color: rgba(255,255,255,0.25); }

/* ─────────────────────────────────────────────────────────────
   YIDDISH / RTL MODE (body.fy-rtl)
   ───────────────────────────────────────────────────────────── */
html[dir="rtl"] body.fy-rtl,
body.fy-rtl {
    /* Heebo already loaded site-wide and supports Hebrew/Yiddish script.   */
    font-family: 'Heebo', 'Instrument Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
    direction: rtl;
    text-align: right;
}
body.fy-rtl .hero-title,
body.fy-rtl h1,
body.fy-rtl h2,
body.fy-rtl h3,
body.fy-rtl h4,
body.fy-rtl h5 {
    /* Instrument Serif has no Hebrew coverage — fall back to Heebo for headings. */
    font-family: 'Heebo', 'Instrument Serif', serif;
    font-weight: 700;
    letter-spacing: 0;
}
body.fy-rtl .eyebrow,
body.fy-rtl .section-label,
body.fy-rtl .service-eyebrow,
body.fy-rtl .cta-banner-eyebrow {
    letter-spacing: 0.04em;
    text-transform: none; /* Hebrew script has no uppercase. */
}

/* Re-align core sections that were left-aligned in LTR. */
body.fy-rtl .hero-copy,
body.fy-rtl .section-title,
body.fy-rtl .section-title--center,
body.fy-rtl .split-content,
body.fy-rtl .cta-banner-inner,
body.fy-rtl .newsletter-content,
body.fy-rtl .feature-card,
body.fy-rtl .service-tile,
body.fy-rtl .testimonial-card {
    text-align: right;
}
body.fy-rtl .section-title--center { text-align: center; }

/* Service tile arrow flips to point right→left (start direction). */
body.fy-rtl .service-arrow { transform: scaleX(-1); }

/* List bullets — split checks. Flip padding so the check sits on the right. */
body.fy-rtl .split-checks { padding-right: 0; }
body.fy-rtl .split-checks li { padding-right: 28px; padding-left: 0; }
body.fy-rtl .split-checks li::before { right: 0; left: auto; }

/* Footer columns and trust list. */
body.fy-rtl .footer-clean-grid,
body.fy-rtl .footer-clean-bottom { text-align: right; }
body.fy-rtl .footer-clean-trust,
body.fy-rtl .footer-clean-links,
body.fy-rtl .footer-clean-contact { padding-right: 0; }
body.fy-rtl .footer-flag { margin-left: 6px; margin-right: 0; }

/* Hero action buttons — keep order but allow native RTL wrapping. */
body.fy-rtl .hero-actions { justify-content: flex-start; }

/* Navbar: links naturally flip thanks to dir=rtl. Just balance spacing. */
body.fy-rtl .nav-links { direction: rtl; }

/* Newsletter form — input + button were left-to-right; native flow handles it,
   but make the email field aligned right so placeholder reads naturally. */
body.fy-rtl .newsletter-form input { text-align: right; direction: rtl; }

/* Keep Latin brand wordmark and phone numbers reading LTR even inside the
   RTL body so "Fiyaker Tours" and "+1 718 …" don't reorder. */
body.fy-rtl .footer-clean-brand,
body.fy-rtl .nav-logo,
body.fy-rtl a[href^="tel:"],
body.fy-rtl a[href^="mailto:"] { direction: ltr; unicode-bidi: isolate; display: inline-block; }
body.fy-rtl .footer-clean-contact li { text-align: right; }

/* Numbers ticker should stay LTR (4,130+). */
body.fy-rtl .number-ticker,
body.fy-rtl .stat-number { direction: ltr; unicode-bidi: isolate; display: inline-block; }
