/* =================================================================
 * Tourwill — FAQ Page
 * File: assets/css/pages/page-faq.css
 *
 * Scope: .tw-faq__*, .tw-faq-hero__*, .tw-faq-search__*,
 *        .tw-faq-catnav__*, .tw-faq-featured__*, .tw-faq-browse__*,
 *        .tw-faq-tips__*, .tw-faq-support__*
 *
 * Everything is block-scoped (no global selectors) so nothing leaks
 * to other pages. Inherits the editorial typography system already
 * loaded site-wide via site-typography.css (Playfair Display headings,
 * Caveat eyebrows, Inter body) — no font-family is set explicitly
 * unless we need to override the system.
 * ================================================================= */

/* -----------------------------------------------------------------
 * 0. Design tokens — shared by every FAQ section
 *    Hoisted to the .tw-faq main wrapper so editing one variable
 *    cascades to every nested section consistently.
 * --------------------------------------------------------------- */
.tw-faq {
    /* Palette (mirrors the creative direction spec) */
    --fq-teal:        #134e4a;
    --fq-teal-dark:   #0c3a37;
    --fq-teal-deep:   #082c2a;
    --fq-gold:        #eab308;
    --fq-gold-soft:   #fde68a;
    --fq-gold-bg:     #fef7d6;   /* very pale gold for icon circles */
    --fq-bg:          #f8f8f6;   /* page background */
    --fq-card:        #ffffff;   /* card surface */
    --fq-text:        #1f2937;   /* primary text */
    --fq-text-muted:  #5f6b6a;   /* muted/subdued text */
    --fq-border:      #e8e6df;   /* soft border / divider */
    --fq-border-strong: #d8d4c8;
    --fq-shadow-sm:   0 1px 2px rgba(15, 23, 22, 0.04);
    --fq-shadow-md:   0 4px 16px rgba(15, 23, 22, 0.06);
    --fq-shadow-lg:   0 10px 30px rgba(15, 23, 22, 0.08);

    /* Layout */
    --fq-radius-sm:   8px;
    --fq-radius-md:   12px;
    --fq-radius-lg:   16px;
    --fq-radius-xl:   20px;
    --fq-radius-pill: 999px;
    --fq-max:         1120px;
    --fq-gutter:      clamp(1rem, 2vw, 1.5rem);

    /* Block-level base */
    background: var(--fq-bg);
    color: var(--fq-text);
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

/* Small reset for everything inside the FAQ page wrapper.
   Keeps things predictable across browsers without touching globals. */
.tw-faq *,
.tw-faq *::before,
.tw-faq *::after {
    box-sizing: border-box;
}

/* Shared container helper */
.tw-faq-hero__container,
.tw-faq-search__container,
.tw-faq-catnav__container,
.tw-faq-featured__container,
.tw-faq-browse__container,
.tw-faq-tips__container,
.tw-faq-support__container {
    max-width: var(--fq-max);
    margin-inline: auto;
    padding-inline: var(--fq-gutter);
}

/* =================================================================
 * 1. HERO
 * ================================================================= */
.tw-faq-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    overflow: hidden;
}
.tw-faq-hero__leaf {
    position: absolute;
    top: 0;
    width: 220px;
    color: var(--fq-teal);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.tw-faq-hero__leaf--left  { left: -2rem;  transform: rotate(-8deg); }
.tw-faq-hero__leaf--right { right: -2rem; transform: rotate(8deg); }
.tw-faq-hero__leaf svg {
    width: 100%;
    height: auto;
}
@media (max-width: 700px) {
    .tw-faq-hero__leaf { width: 150px; opacity: 0.06; }
    .tw-faq-hero__leaf--left  { left: -3rem; }
    .tw-faq-hero__leaf--right { right: -3rem; }
}

.tw-faq-hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.tw-faq-hero__eyebrow {
    /* Caveat handwritten gold — picked up by site-typography.css */
    color: var(--fq-gold);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1;
    margin: 0 0 0.4rem;
}
.tw-faq-hero__heading {
    color: var(--fq-teal);
    font-size: clamp(2rem, 4.6vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 0 0 0.9rem;
}
.tw-faq-hero__desc {
    color: var(--fq-text-muted);
    font-size: clamp(0.98rem, 1.15vw, 1.05rem);
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 auto;
}

/* Editorial divider (line — leaf — line) */
.tw-faq-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: clamp(1.4rem, 2.5vw, 2rem) auto clamp(1.8rem, 3vw, 2.5rem);
    max-width: 14rem;
}
.tw-faq-hero__divider-line {
    flex: 1;
    height: 1px;
    background: var(--fq-border-strong);
}
.tw-faq-hero__divider-leaf {
    color: var(--fq-gold);
    flex: none;
}

/* Trust items row */
.tw-faq-hero__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    text-align: left;
    max-width: 56rem;
    margin-inline: auto;
}
.tw-faq-hero__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.tw-faq-hero__trust-icon {
    flex: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--fq-radius-sm);
    color: var(--fq-gold);
    background: transparent;
}
.tw-faq-hero__trust-icon svg {
    width: 28px;
    height: 28px;
}
.tw-faq-hero__trust-title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    color: var(--fq-teal);
    font-size: 0.95rem;
    line-height: 1.25;
    margin: 0 0 0.15rem;
}
.tw-faq-hero__trust-desc {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fq-text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 760px) {
    .tw-faq-hero__trust {
        grid-template-columns: 1fr;
        max-width: 22rem;
        gap: 1rem;
    }
}

/* =================================================================
 * 2. SEARCH BAR
 * ================================================================= */
.tw-faq-search {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(1rem, 2.5vw, 1.5rem);
}
.tw-faq-search__form {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-pill);
    padding: 0.45rem 0.55rem 0.45rem 1rem;
    max-width: 44rem;
    margin-inline: auto;
    box-shadow: var(--fq-shadow-sm);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tw-faq-search__form:focus-within {
    border-color: var(--fq-teal);
    box-shadow: 0 0 0 4px rgba(19, 78, 74, 0.08), var(--fq-shadow-md);
}
.tw-faq-search__icon {
    color: var(--fq-text-muted);
    margin-right: 0.6rem;
    display: inline-grid;
    place-items: center;
    flex: none;
}
.tw-faq-search__icon svg { width: 18px; height: 18px; }

.tw-faq-search__input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fq-text);
    font-size: 0.95rem;
    padding: 0.55rem 0;
    min-width: 0;
}
.tw-faq-search__input::placeholder {
    color: var(--fq-text-muted);
    opacity: 0.9;
}
.tw-faq-search__submit {
    flex: none;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--fq-radius-pill);
    border: 0;
    background: var(--fq-teal);
    color: #fff;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
.tw-faq-search__submit:hover { background: var(--fq-teal-dark); }
.tw-faq-search__submit:active { transform: scale(0.96); }
.tw-faq-search__submit svg { width: 16px; height: 16px; }

/* Live results panel (used when JS AJAX is wired) */
.tw-faq-search__results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-md);
    box-shadow: var(--fq-shadow-lg);
    max-height: 24rem;
    overflow-y: auto;
    padding: 0.5rem;
    z-index: 5;
}
.tw-faq-search__results[hidden] { display: none; }
.tw-faq-search__result {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: var(--fq-radius-sm);
    color: var(--fq-text);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.4;
    transition: background 0.15s ease;
}
.tw-faq-search__result:hover,
.tw-faq-search__result:focus-visible {
    background: var(--fq-bg);
    color: var(--fq-teal);
    outline: none;
}
.tw-faq-search__result-q  { font-weight: 600; }
.tw-faq-search__result-cat {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--fq-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tw-faq-search__no-results {
    padding: 1rem;
    text-align: center;
    color: var(--fq-text-muted);
    font-size: 0.9rem;
}

/* =================================================================
 * 3. CATEGORY NAVIGATION (pills)
 * ================================================================= */
.tw-faq-catnav {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.tw-faq-catnav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 0.65rem;
}
.tw-faq-catnav__item { min-width: 0; }
.tw-faq-catnav__pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    text-decoration: none;
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-md);
    color: var(--fq-teal);
    padding: 1rem 0.6rem;
    min-height: 96px;
    box-shadow: var(--fq-shadow-sm);
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
    cursor: pointer;
}
.tw-faq-catnav__pill:hover {
    border-color: var(--fq-teal);
    transform: translateY(-1px);
    box-shadow: var(--fq-shadow-md);
}
.tw-faq-catnav__pill-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--fq-gold);
}
.tw-faq-catnav__pill-icon svg { width: 26px; height: 26px; }
.tw-faq-catnav__pill-label {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
    color: inherit;
}

/* Active state */
.tw-faq-catnav__pill.is-active {
    background: var(--fq-teal);
    border-color: var(--fq-teal);
    color: #fff;
}
.tw-faq-catnav__pill.is-active .tw-faq-catnav__pill-icon { color: var(--fq-gold); }

/* Mobile: horizontal swipeable strip */
@media (max-width: 700px) {
    .tw-faq-catnav__container {
        /* Bleed to viewport edges for the scroll strip */
        padding-inline: 0;
    }
    .tw-faq-catnav__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.6rem;
        padding: 0.25rem var(--fq-gutter) 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tw-faq-catnav__list::-webkit-scrollbar { display: none; }
    .tw-faq-catnav__item {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .tw-faq-catnav__pill {
        min-width: 140px;
        min-height: 84px;
        padding: 0.75rem 0.7rem;
    }
}

/* =================================================================
 * 4. FEATURED FAQ CARDS — "Most Asked by Travelers"
 * ================================================================= */
.tw-faq-featured {
    padding: clamp(0.5rem, 2vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.tw-faq-featured__heading {
    color: var(--fq-teal);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 0 0 1.25rem;
}
.tw-faq-featured__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.tw-faq-featured__item { min-width: 0; }
.tw-faq-featured__card {
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-lg);
    padding: 1.25rem 1.25rem 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--fq-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.tw-faq-featured__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--fq-shadow-md);
    border-color: var(--fq-gold-soft);
}
.tw-faq-featured__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.tw-faq-featured__icon {
    flex: none;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--fq-radius-md);
    background: var(--fq-gold-bg);
    color: var(--fq-gold);
}
.tw-faq-featured__icon svg { width: 24px; height: 24px; }
.tw-faq-featured__question {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--fq-teal);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
.tw-faq-featured__preview {
    color: var(--fq-text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.tw-faq-featured__more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--fq-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    transition: color 0.18s ease, gap 0.18s ease;
}
.tw-faq-featured__more svg { width: 14px; height: 14px; }
.tw-faq-featured__more:hover {
    color: var(--fq-teal);
    gap: 0.55rem;
}

@media (max-width: 980px) {
    .tw-faq-featured__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .tw-faq-featured__grid { grid-template-columns: 1fr; }
}

/* =================================================================
 * 5. BROWSE ALL QUESTIONS — accordion
 * ================================================================= */
.tw-faq-browse {
    padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.tw-faq-browse__heading {
    color: var(--fq-teal);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 0 0 1.25rem;
}
.tw-faq-browse__list {
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-lg);
    overflow: hidden;
    box-shadow: var(--fq-shadow-sm);
}

/* Outer category row */
.tw-faq-browse__row + .tw-faq-browse__row {
    border-top: 1px solid var(--fq-border);
}
.tw-faq-browse__row-header {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.18s ease;
    box-sizing: border-box;
}
.tw-faq-browse__row-header:hover {
    background: var(--fq-bg);
}
.tw-faq-browse__row-header:focus-visible {
    outline: 2px solid var(--fq-gold);
    outline-offset: -2px;
}
.tw-faq-browse__row-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    flex: 0 0 auto;
}
.tw-faq-browse__row-icon {
    width: 26px;
    height: 26px;
    color: var(--fq-gold);
    display: grid;
    place-items: center;
    flex: none;
}
.tw-faq-browse__row-icon svg { width: 24px; height: 24px; }
.tw-faq-browse__row-title {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fq-teal);
    font-weight: 700;
    font-size: 0.98rem;
}
.tw-faq-browse__row-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--fq-text-muted);
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
}
.tw-faq-browse__row-desc {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--fq-text-muted);
    text-align: right;
}
.tw-faq-browse__row-chev {
    flex: none;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--fq-text-muted);
    transition: transform 0.22s ease;
}
.tw-faq-browse__row-chev svg { width: 20px; height: 20px; }

.tw-faq-browse__row-header[aria-expanded="true"] .tw-faq-browse__row-chev {
    transform: rotate(180deg);
    color: var(--fq-gold);
}
.tw-faq-browse__row-header[aria-expanded="true"] {
    background: var(--fq-bg);
}

.tw-faq-browse__row-panel {
    background: var(--fq-bg);
    border-top: 1px solid var(--fq-border);
    padding: 0.25rem 1.25rem 1rem;
}
.tw-faq-browse__row-panel[hidden] { display: none; }

/* Inner Q&A list */
.tw-faq-browse__qa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tw-faq-browse__qa + .tw-faq-browse__qa {
    border-top: 1px dashed var(--fq-border);
}
.tw-faq-browse__qa-heading { margin: 0; }
.tw-faq-browse__qa-toggle {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 0.25rem;
    cursor: pointer;
    gap: 1rem;
    box-sizing: border-box;
}
.tw-faq-browse__qa-toggle:focus-visible {
    outline: 2px solid var(--fq-gold);
    outline-offset: 2px;
    border-radius: var(--fq-radius-sm);
}
.tw-faq-browse__qa-q {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fq-teal);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}
.tw-faq-browse__qa-chev {
    width: 20px;
    height: 20px;
    flex: none;
    color: var(--fq-text-muted);
    transition: transform 0.22s ease, color 0.22s ease;
}
.tw-faq-browse__qa-chev svg { width: 18px; height: 18px; }
.tw-faq-browse__qa-toggle[aria-expanded="true"] .tw-faq-browse__qa-chev {
    transform: rotate(180deg);
    color: var(--fq-gold);
}
.tw-faq-browse__qa-toggle[aria-expanded="true"] .tw-faq-browse__qa-q {
    color: var(--fq-teal-dark);
}

.tw-faq-browse__qa-panel {
    padding: 0 0.25rem 1rem;
}
.tw-faq-browse__qa-panel[hidden] { display: none; }
.tw-faq-browse__qa-answer {
    color: var(--fq-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.tw-faq-browse__qa-answer p { margin: 0 0 0.7rem; }
.tw-faq-browse__qa-answer p:last-child { margin-bottom: 0; }
.tw-faq-browse__qa-answer a {
    color: var(--fq-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tw-faq-browse__qa-answer ul,
.tw-faq-browse__qa-answer ol {
    margin: 0.4rem 0 0.7rem 1.25rem;
    padding: 0;
}
.tw-faq-browse__qa-answer li { margin: 0.25rem 0; }

/* Deep-link / focus highlight */
.tw-faq-browse__qa:target {
    background: var(--fq-gold-bg);
    border-radius: var(--fq-radius-sm);
    transition: background 1.6s ease;
}

@media (max-width: 700px) {
    .tw-faq-browse__row-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    .tw-faq-browse__row-left { flex: 1 1 auto; }
    .tw-faq-browse__row-right {
        flex-basis: 100%;
        justify-content: flex-start;
        padding-left: calc(26px + 0.85rem);
    }
    .tw-faq-browse__row-desc { text-align: left; }
    .tw-faq-browse__row-chev {
        position: absolute;
        right: 1rem;
        top: 1.05rem;
    }
    .tw-faq-browse__row { position: relative; }
    .tw-faq-browse__row-panel { padding: 0.25rem 1rem 1rem; }
}

/* =================================================================
 * 6. HELPFUL TIPS BEFORE YOU TRAVEL
 * ================================================================= */
.tw-faq-tips {
    padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.tw-faq-tips__heading {
    color: var(--fq-teal);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    text-align: center;
    margin: 0 0 1.5rem;
}
.tw-faq-tips__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.tw-faq-tips__item { min-width: 0; }
.tw-faq-tips__card {
    background: var(--fq-card);
    border: 1px solid var(--fq-border);
    border-radius: var(--fq-radius-lg);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    box-shadow: var(--fq-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tw-faq-tips__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--fq-shadow-md);
}
.tw-faq-tips__icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--fq-gold-bg);
    color: var(--fq-gold);
}
.tw-faq-tips__icon svg { width: 26px; height: 26px; }
.tw-faq-tips__body { min-width: 0; }
.tw-faq-tips__title {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--fq-teal);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0 0 0.35rem;
}
.tw-faq-tips__desc {
    color: var(--fq-text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .tw-faq-tips__grid { grid-template-columns: 1fr; }
}

/* =================================================================
 * 7. STILL HAVE QUESTIONS — Support CTA banner
 * ================================================================= */
.tw-faq-support {
    padding: 0 0 clamp(1rem, 2vw, 1.5rem);
}
.tw-faq-support__card {
    position: relative;
    background: linear-gradient(135deg, var(--fq-teal-deep) 0%, var(--fq-teal) 60%, var(--fq-teal-dark) 100%);
    border-radius: var(--fq-radius-xl);
    color: #fff;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    overflow: hidden;
    box-shadow: var(--fq-shadow-lg);
}
.tw-faq-support__leaf {
    position: absolute;
    left: -2.5rem;
    bottom: -2.5rem;
    width: 220px;
    color: #fff;
    opacity: 0.08;
    pointer-events: none;
}
.tw-faq-support__leaf svg { width: 100%; height: auto; }

.tw-faq-support__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr auto 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}
/* Vertical divider between the two columns */
.tw-faq-support__grid::before {
    content: "";
    grid-column: 2;
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.15);
}

.tw-faq-support__title {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}
.tw-faq-support__title em,
.tw-faq-support__title i {
    color: var(--fq-gold);
}
.tw-faq-support__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 32rem;
}
.tw-faq-support__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.tw-faq-support__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--fq-radius-pill);
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, gap 0.18s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.tw-faq-support__btn svg { width: 16px; height: 16px; }
.tw-faq-support__btn:hover { gap: 0.7rem; transform: translateY(-1px); }

.tw-faq-support__btn--primary {
    background: var(--fq-gold);
    color: var(--fq-teal-deep);
}
.tw-faq-support__btn--primary:hover {
    background: #f1c232;
}
.tw-faq-support__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.tw-faq-support__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

/* Right column contact strip */
.tw-faq-support__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.tw-faq-support__contact {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.tw-faq-support__contact-icon {
    flex: none;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.12);
    color: var(--fq-gold);
}
.tw-faq-support__contact-icon svg { width: 20px; height: 20px; }
.tw-faq-support__contact-body { min-width: 0; }
.tw-faq-support__contact-label {
    font-family: "Inter", system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.15rem;
    font-weight: 600;
}
.tw-faq-support__contact-value {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.18s ease;
}
a.tw-faq-support__contact-value:hover { color: var(--fq-gold); }
.tw-faq-support__contact-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0.1rem 0 0;
}

@media (max-width: 880px) {
    .tw-faq-support__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .tw-faq-support__grid::before {
        grid-column: auto;
        width: auto;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }
    .tw-faq-support__desc { max-width: none; }
}

/* =================================================================
 * 8. Reduced motion
 * ================================================================= */
@media (prefers-reduced-motion: reduce) {
    .tw-faq * {
        transition: none !important;
        animation: none !important;
    }
    .tw-faq-browse__row-chev,
    .tw-faq-browse__qa-chev {
        transition: none !important;
    }
}

/* -----------------------------------------------------------------
 * Fixed-navbar clearance
 * The site has a sticky white-glass navbar at the top of every
 * page. Without this, the hero's H1 ("Frequently Asked Questions")
 * sits right under the navbar and gets visually covered.
 * --------------------------------------------------------------- */
.tw-faq-hero {
    padding-top: clamp(7rem, 14vw, 10.5rem); /* 112px mobile → 168px desktop */
}

/* When someone deep-links to a category row (#tw-faq-cat-planning)
   or a specific question (#tw-faq-q-do-i-need-a-visa), reserve
   space so the scroll target lands BELOW the navbar, not under it. */
.tw-faq-browse__row,
.tw-faq-browse__qa {
    scroll-margin-top: 110px;
}