/* Category / safari country closing block: the way to ask on the left, the
   questions on the right. Dark band, milk type, orange accents. Shared by
   category/faqs.blade.php and countrypage/safari/faq.blade.php. */
.cat-faq {
    background: #191919;
    padding: 96px 24px;
}
.cat-faq__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

/* Left: CTA */
.cat-faq__cta {}
.cat-faq__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF6A00;
    margin-bottom: 18px;
}
.cat-faq__h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #EDE3D5;
    margin: 0 0 16px;
}
.cat-faq__h2 em {
    font-style: normal;
    color: #FF6A00;
}
.cat-faq__lede {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(237,227,213,.5);
    margin: 0 0 28px;
}
.cat-faq__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.cat-faq__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: opacity .18s, border-color .18s, color .18s;
}
.cat-faq__btn--primary { background: #FF6A00; color: #fff; }
.cat-faq__btn--primary:hover { opacity: .88; }
.cat-faq__btn--ghost {
    background: transparent !important;
    color: rgba(237,227,213,.75);
    border: 1px solid rgba(237,227,213,.2) !important;
}
.cat-faq__btn--ghost:hover { border-color: rgba(237,227,213,.5) !important; color: #EDE3D5; }


/* Right: accordion */
.cat-faq__list { display: flex; flex-direction: column; }
.cat-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(237,227,213,.08);
    cursor: pointer;
    user-select: none;
    list-style: none;
}
.cat-faq__q::-webkit-details-marker { display: none; }
.cat-faq__q-text {
    font-size: 16px;
    font-weight: 600;
    color: #EDE3D5;
    line-height: 1.35;
    flex: 1;
}
.cat-faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(237,227,213,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .18s, background .18s;
    color: rgba(237,227,213,.6);
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
}
details[open] .cat-faq__icon { background: #FF6A00; border-color: #FF6A00; color: #fff; }
.cat-faq__answer {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(237,227,213,.55);
    padding: 4px 0 22px;
    border-bottom: 1px solid rgba(237,227,213,.08);
}
.cat-faq__answer p { margin: 0 0 12px; }
.cat-faq__answer p:last-child { margin-bottom: 0; }
.cat-faq__answer a { color: #FF6A00; }

@media (max-width: 900px) {
    .cat-faq__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
    .cat-faq { padding: 64px 20px; }
    .cat-faq__btn { height: 46px; }
}

/* Safari country page: the list's own label, since the left column's
   headline is the call, not the questions. */
.cat-faq__list-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(237,227,213,.5);
    padding-bottom: 6px;
}
