.dc-faq {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px 0px 24px;
}

/* ── Header ── */
.dc-faq .dc-faq__header {
    text-align: center;
    margin-bottom: 40px;
}
.dc-faq .dc-faq__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.dc-faq .dc-faq__subtitle-line {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, #A78278);
}
.dc-faq .dc-faq__subtitle-line:last-child {
    background: linear-gradient(90deg, #A78278, transparent);
}
.dc-faq .dc-faq__subtitle-text {
    font-family: 'Trajan Pro','Cinzel',serif;
    font-size: 11px; font-weight: 400;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: #8B6B62;
}
.dc-faq .dc-faq__title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 300; color: #1a1a2e;
    margin: 0; line-height: 1.15;
}

/* ── Split grid ── */
.dc-faq .dc-faq__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

/* Category pills */
.dc-faq .dc-faq__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.dc-faq .dc-faq__cat-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(167,130,120,0.18);
    background: transparent;
    font-size: 13px; color: #505059;
    cursor: pointer; transition: all 0.3s;
    font-family: inherit;
}
.dc-faq .dc-faq__cat-btn:hover { border-color: #A78278; color: #A78278; }
.dc-faq .dc-faq__cat-btn--active { background: #A78278; color: #fff; border-color: #A78278; }
.dc-faq .dc-faq__cat-btn--active:hover { color: #fff; }

/* Search */
.dc-faq .dc-faq__search {
    position: relative; margin-bottom: 20px;
}
.dc-faq .dc-faq__search-icon {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px; color: #94a3b8;
    pointer-events: none;
}
.dc-faq .dc-faq__search-input {
    width: 100%; padding: 12px 16px 12px 42px;
    border-radius: 50px;
    border: 1px solid rgba(167,130,120,0.12);
    font-size: 14px; background: #fff;
    outline: none; transition: all 0.3s;
    font-family: inherit; box-sizing: border-box;
}
.dc-faq .dc-faq__search-input:focus {
    border-color: #A78278;
    box-shadow: 0 0 0 3px rgba(167,130,120,0.08);
}

/* Accordion */
.dc-faq .dc-faq__item {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.dc-faq .dc-faq__item--active {
    border-color: rgba(167,130,120,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.dc-faq .dc-faq__question {
    width: 100%; padding: 18px 20px;
    display: flex; align-items: center;
    justify-content: space-between;
    background: none; border: none;
    font-size: 15px; font-weight: 500;
    color: #1a1a2e; cursor: pointer;
    text-align: left; font-family: inherit; gap: 14px;
}
.dc-faq .dc-faq__question:focus-visible {
    outline: 2px solid #A78278;
    outline-offset: -2px;
    border-radius: 14px;
}
.dc-faq .dc-faq__question svg {
    width: 18px; height: 18px; color: #A78278;
    transition: transform 0.3s; flex-shrink: 0;
}
.dc-faq .dc-faq__item--active .dc-faq__question svg { transform: rotate(180deg); }
.dc-faq .dc-faq__answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.dc-faq .dc-faq__answer-inner {
    padding: 0 20px 18px;
    font-size: 14px; color: #505059; line-height: 1.7;
}
.dc-faq .dc-faq__no-results {
    text-align: center; padding: 30px; color: #94a3b8; font-size: 14px;
}

/* ── RIGHT: Contact Column ── */
.dc-faq .dc-faq__right {
    position: sticky;
    top: 32px;
}

/* Contact card with image */
.dc-faq .dc-faq__contact-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.dc-faq .dc-faq__contact-bg {
    position: absolute; inset: 0; z-index: 0;
}
.dc-faq .dc-faq__contact-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.dc-faq .dc-faq__contact-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top,
        rgba(16,16,30,0.92) 0%,
        rgba(16,16,30,0.6) 55%,
        rgba(16,16,30,0.2) 100%);
}

/* Content inside card */
.dc-faq .dc-faq__contact-content {
    position: relative; z-index: 2;
    padding: 32px;
}
.dc-faq .dc-faq__contact-title {
    font-size: 22px; font-weight: 400;
    color: #fff; margin: 0 0 6px; line-height: 1.2;
}
.dc-faq .dc-faq__contact-desc {
    font-size: 13px; color: rgba(255,255,255,0.55);
    line-height: 1.6; font-weight: 300; margin: 0 0 20px;
}

/* Contact items */
.dc-faq .dc-faq__contact-items {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
}
.dc-faq .dc-faq__contact-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 13px; color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}
.dc-faq a.dc-faq__contact-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(167,130,120,0.3);
    color: #fff;
    transform: translateX(4px);
}
.dc-faq .dc-faq__contact-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(167,130,120,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dc-faq .dc-faq__contact-icon svg {
    width: 15px; height: 15px; color: #A78278;
}

/* CTA inside card */
.dc-faq .dc-faq__contact-cta {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.dc-faq .dc-faq__cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    background: #A78278; color: #fff;
    border-radius: 50px; font-size: 13px; font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(167,130,120,0.35);
    transition: all 0.3s; flex: 1; justify-content: center;
}
.dc-faq .dc-faq__cta-primary:hover {
    background: #967269; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(167,130,120,0.4); color: #fff;
}
.dc-faq .dc-faq__cta-primary svg { width: 15px; height: 15px; }
.dc-faq .dc-faq__cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border-radius: 50px; font-size: 13px; font-weight: 400;
    text-decoration: none; transition: all 0.3s;
}
.dc-faq .dc-faq__cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px); color: #fff;
}
.dc-faq .dc-faq__cta-secondary svg { width: 14px; height: 14px; }

/* USP chips below card */
.dc-faq .dc-faq__usp {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    margin-top: 16px;
}
.dc-faq .dc-faq__usp-chip {
    display: flex; align-items: center; gap: 5px;
    padding: 5px 12px;
    background: rgba(167,130,120,0.04);
    border: 1px solid rgba(167,130,120,0.1);
    border-radius: 50px; font-size: 11px; font-weight: 500; color: #505059;
    transition: all 0.3s;
}
.dc-faq .dc-faq__usp-chip:hover {
    background: rgba(167,130,120,0.08);
    border-color: rgba(167,130,120,0.2);
    transform: translateY(-1px);
}
.dc-faq .dc-faq__usp-icon {
    width: 20px; height: 20px; border-radius: 6px;
    background: rgba(167,130,120,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dc-faq .dc-faq__usp-icon svg { width: 11px; height: 11px; color: #A78278; }

/* ── Entrance animations ── */
.dc-faq .dc-faq__item,
.dc-faq .dc-faq__contact-card,
.dc-faq .dc-faq__usp-chip {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease,
                border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.dc-faq .dc-faq__item.dc-faq--visible,
.dc-faq .dc-faq__contact-card.dc-faq--visible,
.dc-faq .dc-faq__usp-chip.dc-faq--visible {
    opacity: 1; transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dc-faq .dc-faq__grid {
        grid-template-columns: 1fr 360px;
        gap: 32px;
    }
}
@media (max-width: 800px) {
    .dc-faq { padding: 50px 16px; }
    .dc-faq .dc-faq__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .dc-faq .dc-faq__right {
        position: static;
        order: -1;
    }
    .dc-faq .dc-faq__contact-card { min-height: 400px; }
}
@media (max-width: 640px) {
    .dc-faq { padding: 40px 12px; }
    .dc-faq .dc-faq__contact-card { min-height: 360px; }
    .dc-faq .dc-faq__contact-content { padding: 24px; }
    .dc-faq .dc-faq__question { padding: 14px 16px; font-size: 14px; }
    .dc-faq .dc-faq__answer-inner { padding: 0 16px 14px; font-size: 13px; }
    .dc-faq .dc-faq__contact-cta { flex-direction: column; }
    .dc-faq .dc-faq__cta-secondary { justify-content: center; }
    .dc-faq .dc-faq__cat-btn { padding: 7px 14px; font-size: 12px; }
}
