/* --- Support/FAQ Advanced Modern Styles --- */

:root {
    --support-primary: #a3e635;
    /* Standard Project Lime */
    --support-dark: #000000;
    --support-text: #444;
    --support-heading: #000000;
    --support-bg: #fff;
    --support-border: rgba(0, 0, 0, 0.08);
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

.support-page-wrapper {
    background-color: #fff;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

/* Background Pattern (Matched to Home/Legal) */
.support-page-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(163, 230, 53, 0.03) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(163, 230, 53, 0.03) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.support-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px 0;
}

/* 1. Agency Pattern FAQ Hero */
.faq-agency-hero {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.faq-hero-text h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
}

.faq-hero-text h1 span {
    color: var(--support-primary);
}

.faq-tag {
    color: var(--support-primary);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    font-size: 14px;
}

.faq-hero-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 600px;
}

.faq-hero-visual {
    position: relative;
}

.faq-hero-visual img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(1);
    box-shadow: 25px 25px 0 var(--support-primary);
    transition: 0.5s;
    object-fit: cover;
    height: 400px;
}

.faq-hero-visual img:hover {
    filter: grayscale(0);
}

.support-search-box {
    position: relative;
    max-width: 500px;
}

.support-search-box input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    background: #fff;
    border: 1px solid var(--support-border);
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
    color: #000;
    outline: none;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.support-search-box input:focus {
    border-color: var(--support-primary);
    box-shadow: 0 10px 30px rgba(163, 230, 53, 0.1);
}

.support-search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--support-primary);
    font-size: 20px;
}


/* 2. Categorized FAQ Layout */
.faq-category-section {
    margin-bottom: 100px;
    width: 100%;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--support-border);
}

.category-icon-box {
    width: 60px;
    height: 60px;
    background: #000;
    color: var(--support-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

.faq-category-header h2 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

/* FAQ Grid - Standard Rows for better alignment */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.modern-faq-card {
    background: #fff;
    border: 1px solid var(--support-border);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: fit-content;
}

.modern-faq-card:hover {
    border-color: var(--support-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fafafa;
}

.faq-card-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-card-header h3 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding-right: 20px;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: 0.3s;
}

.modern-faq-card.active .faq-toggle-icon {
    background: var(--support-primary);
    transform: rotate(45deg);
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
    padding: 0 30px 30px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
    border-top: 1px solid var(--support-border);
    padding-top: 20px;
}

/* CTA Section */
.support-cta {
    background: #fff;
    border: 2px solid var(--support-primary);
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    padding: 80px 40px;
    text-align: center;
    margin-top: 100px;
}

.support-cta h2 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.support-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.btn-modern-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 20px 60px;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.btn-modern-primary:hover {
    background: var(--support-primary);
    color: #000;
    transform: translateY(-5px);
}

/* ── Stats Bar ── */
.faq-stats-bar {
    background: #000;
    padding: 30px 0;
    border-bottom: 3px solid var(--support-primary);
}

.faq-stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.faq-stat-box {
    text-align: center;
}

.faq-stat-num {
    display: block;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    color: var(--support-primary);
    line-height: 1;
}

.faq-stat-label {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ── Alerts ── */
.faq-alert {
    padding: 18px 28px;
    margin-bottom: 40px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.faq-alert--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.faq-alert i {
    font-size: 20px;
}

.faq-search-result-bar {
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 16px 28px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 15px;
    font-weight: 600;
    color: #92400e;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.faq-search-result-bar a {
    color: #000;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Category Filter Tabs ── */
.faq-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--support-border);
}

.faq-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 14px;
    font-weight: 800;
    color: #444;
    background: #fff;
    border: 1px solid var(--support-border);
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.faq-filter-tab i {
    font-size: 14px;
    color: #999;
}

.faq-filter-tab:hover {
    background: #f8f8f8;
    border-color: var(--support-primary);
    color: #000;
    transform: translateY(-2px);
}

.faq-filter-tab.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.faq-filter-tab.active i {
    color: var(--support-primary);
}

.faq-filter-count {
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 800;
}

.faq-filter-tab.active .faq-filter-count {
    background: rgba(163, 230, 53, 0.2);
    color: var(--support-primary);
}

/* ── Category Count Badge ── */
.faq-cat-count {
    margin-left: auto;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 14px;
    color: #999;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Empty State ── */
.faq-empty-state {
    text-align: center;
    padding: 100px 20px;
}

.faq-empty-state i {
    font-size: 56px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.faq-empty-state h3 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 28px;
    font-weight: 800;
    color: #444;
    margin: 0 0 10px;
}

.faq-empty-state p {
    font-size: 16px;
    color: #888;
}

.faq-empty-state a {
    color: var(--support-primary);
    font-weight: 700;
}

/* ── Community Questions Section ── */
.faq-community-section {
    margin-top: 60px;
}

.faq-community-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-community-desc {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin: -15px 0 0;
}

/* ── Carousel Navigation ── */
.faq-carousel-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.faq-carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}

.faq-carousel-btn:hover:not(:disabled) {
    background: var(--support-primary);
    color: #000;
    border-color: var(--support-primary);
}

.faq-carousel-counter {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 50px;
    text-align: center;
}

/* ── Carousel Container ── */
.faq-community-carousel-wrap {
    overflow: hidden;
    position: relative;
}

.faq-community-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-cq-slide {
    min-width: calc(100% - 0px);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .faq-cq-slide {
        min-width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .faq-cq-slide {
        min-width: calc(33.333% - 14px);
    }
}

/* ── Card Design ── */
.faq-cq-card-new {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.faq-cq-card-new:hover {
    border-color: var(--support-primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.faq-cq-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.faq-cq-votes-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-cq-vote-btn {
    background: none;
    border: 1px solid #ddd;
    width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 11px;
    transition: 0.3s;
    clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}

.faq-cq-vote-btn:hover {
    background: var(--support-primary);
    border-color: var(--support-primary);
    color: #000;
}

.faq-cq-vote-num {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.faq-cq-category-tag {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 2px;
}

.faq-cq-category-tag i {
    margin-right: 3px;
    font-size: 10px;
}

.faq-cq-title {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-cq-question {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-cq-answer-new {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 12px 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #166534;
    line-height: 1.5;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}

.faq-cq-answer-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-cq-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 11px;
    font-weight: 800;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.faq-cq-card-footer {
    display: flex;
    gap: 14px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 12px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: auto;
}

.faq-cq-card-footer i {
    margin-right: 3px;
}

.faq-cq-meta {
    display: flex;
    gap: 18px;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-cq-meta i {
    margin-right: 4px;
}

/* ── Ask a Question Section ── */
.faq-ask-section {
    margin-top: 80px;
    background: #000;
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    overflow: hidden;
}

.faq-ask-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.faq-ask-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-ask-info h2 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px;
}

.faq-ask-info h2 span {
    color: var(--support-primary);
}

.faq-ask-info p {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin: 0 0 36px;
}

.faq-ask-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-ask-feat {
    color: #aaa;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-ask-feat i {
    color: var(--support-primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.faq-ask-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.faq-ask-form {
    width: 100%;
}

.faq-form-group {
    margin-bottom: 22px;
}

.faq-form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px;
    font-weight: 800;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    outline: none;
    transition: 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
    box-sizing: border-box;
}

.faq-form-input::placeholder {
    color: #555;
}

.faq-form-input:focus {
    border-color: var(--support-primary);
    background: rgba(255, 255, 255, 0.1);
}

.faq-form-input--error {
    border-color: #ef4444;
}

.faq-form-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    font-weight: 600;
}

textarea.faq-form-input {
    resize: vertical;
    min-height: 110px;
}

select.faq-form-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.faq-form-input option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.faq-submit-btn {
    width: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

/* ── Login Prompt ── */
.faq-login-prompt {
    text-align: center;
    padding: 50px 20px;
}

.faq-login-prompt i {
    font-size: 44px;
    color: #555;
    margin-bottom: 20px;
    display: block;
}

.faq-login-prompt h3 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.faq-login-prompt p {
    font-size: 15px;
    color: #888;
    margin: 0 0 28px;
}

/* ── My Questions Section ── */
.faq-my-questions-section {
    margin-top: 40px;
}

.faq-mq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-mq-card {
    clip-path: none;
    border: 1px solid var(--support-border);
}

.faq-mq-inner {
    display: flex;
    gap: 20px;
    padding: 24px 30px;
}

.faq-mq-status {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    white-space: nowrap;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}

.faq-mq-status--pending {
    background: #fffbeb;
    color: #b45309;
}

.faq-mq-status--answered {
    background: #eff6ff;
    color: #1d4ed8;
}

.faq-mq-status--published {
    background: #f0fdf4;
    color: #16a34a;
}

.faq-mq-status--rejected {
    background: #fef2f2;
    color: #dc2626;
}

.faq-mq-content {
    flex: 1;
}

.faq-mq-content h3 {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.faq-mq-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px;
}

.faq-mq-answer {
    background: #f8f8f8;
    padding: 18px 22px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    border-left: 3px solid var(--support-primary);
}

.faq-mq-answer strong {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.faq-mq-date {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 13px;
    color: #999;
    font-weight: 700;
}

.faq-mq-date i {
    margin-right: 4px;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   FAQ Page - All Sections
   ========================================================================== */

/* ── Large Tablet (max-width: 1200px) ──────────────────────────────────── */
@media (max-width: 1200px) {
    .faq-hero-inner {
        gap: 50px;
    }
}

/* ── Tablet (max-width: 1024px) ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .faq-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .faq-hero-visual {
        max-width: 700px;
        margin: 0 auto;
    }

    .faq-hero-visual img {
        height: 350px;
    }

    .support-search-box {
        margin: 0 auto;
    }

    .faq-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce section spacing */
    .faq-category-section {
        margin-bottom: 60px;
    }

    .faq-filter-tabs {
        margin-bottom: 50px;
    }

    /* Ask section */
    .faq-ask-section {
        margin-top: 60px;
    }

    /* Support CTA */
    .support-cta {
        margin-top: 60px;
    }
}

/* ── Mobile (max-width: 768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Page wrapper */
    .support-page-wrapper {
        padding-bottom: 60px;
    }

    .support-container {
        padding: 40px 15px 0;
    }

    /* Hero */
    .faq-agency-hero {
        padding: 70px 0 50px;
    }

    .faq-hero-inner {
        padding: 0 15px;
    }

    .faq-hero-visual {
        display: none;
    }

    .faq-hero-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .faq-tag {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .faq-hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .support-search-box input {
        padding: 16px 50px 16px 18px;
        font-size: 14px;
    }

    .support-search-box i {
        right: 18px;
        font-size: 16px;
    }

    /* Stats Bar */
    .faq-stats-bar {
        padding: 20px 0;
    }

    .faq-stats-container {
        padding: 0 15px;
    }

    .faq-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
    }

    .faq-stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-stat-num {
        font-size: 28px;
    }

    .faq-stat-label {
        font-size: 9px;
        letter-spacing: 1px;
        word-break: keep-all;
        white-space: nowrap;
    }

    /* Filter Tabs */
    .faq-filter-tabs {
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .faq-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-filter-tab {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Category Headers */
    .faq-category-header {
        gap: 12px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        flex-wrap: wrap;
    }

    .faq-category-header h2 {
        font-size: 20px;
        flex: 1;
        min-width: 0;
    }

    .category-icon-box {
        width: 42px;
        height: 42px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .faq-cat-count {
        width: 100%;
        margin-left: 54px;
        font-size: 12px;
    }

    .faq-category-section {
        margin-bottom: 50px;
    }

    /* FAQ Cards */
    .faq-card-header {
        padding: 18px 20px;
    }

    .faq-card-header h3 {
        font-size: 15px;
        padding-right: 12px;
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 14px;
        padding-top: 15px;
    }

    /* Search result bar */
    .faq-search-result-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Community Section */
    .faq-community-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-community-desc {
        font-size: 14px;
    }

    .faq-carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .faq-carousel-counter {
        font-size: 12px;
    }

    .faq-cq-card-new {
        padding: 16px;
    }

    .faq-cq-title {
        font-size: 16px;
    }

    .faq-cq-question {
        font-size: 13px;
    }

    .faq-cq-card-footer {
        font-size: 11px;
        gap: 10px;
    }

    .faq-cq-answer-new {
        padding: 10px 12px;
        font-size: 12px;
    }

    /* Ask Section */
    .faq-ask-section {
        margin-top: 50px;
    }

    .faq-ask-inner {
        grid-template-columns: 1fr;
    }

    .faq-ask-info {
        padding: 30px 20px;
        text-align: center;
    }

    .faq-ask-info h2 {
        font-size: 28px;
    }

    .faq-ask-info p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .faq-ask-features {
        align-items: center;
    }

    .faq-ask-feat {
        font-size: 13px;
    }

    .faq-ask-form-wrap {
        padding: 30px 20px;
    }

    .faq-form-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-form-group label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .faq-submit-btn {
        padding: 15px;
        font-size: 14px;
    }

    /* Login Prompt */
    .faq-login-prompt {
        padding: 35px 15px;
    }

    .faq-login-prompt i {
        font-size: 36px;
    }

    .faq-login-prompt h3 {
        font-size: 20px;
    }

    .faq-login-prompt p {
        font-size: 14px;
    }

    /* My Questions */
    .faq-mq-inner {
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px;
    }

    .faq-mq-content h3 {
        font-size: 16px;
    }

    .faq-mq-content p {
        font-size: 14px;
    }

    .faq-mq-answer {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-mq-status {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Support CTA */
    .support-cta {
        padding: 50px 20px;
        margin-top: 50px;
    }

    .support-cta h2 {
        font-size: 28px;
    }

    .support-cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .btn-modern-primary {
        padding: 16px 40px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Empty State */
    .faq-empty-state {
        padding: 60px 15px;
    }

    .faq-empty-state i {
        font-size: 42px;
    }

    .faq-empty-state h3 {
        font-size: 22px;
    }

    .faq-empty-state p {
        font-size: 14px;
    }

    /* Alerts */
    .faq-alert {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ── Small Mobile (max-width: 480px) ───────────────────────────────────── */
@media (max-width: 480px) {

    /* Hero */
    .faq-agency-hero {
        padding: 60px 0 40px;
    }

    .faq-hero-text h1 {
        font-size: 28px;
    }

    .faq-hero-text p {
        font-size: 14px;
    }

    .support-search-box input {
        padding: 14px 45px 14px 15px;
        font-size: 13px;
    }

    /* Stats Bar */
    .faq-stats-bar {
        padding: 15px 0;
    }

    .faq-stats-container {
        padding: 0 10px;
    }

    .faq-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .faq-stat-num {
        font-size: 22px;
    }

    .faq-stat-label {
        font-size: 8px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    /* Category */
    .faq-category-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-category-header h2 {
        font-size: 18px;
        flex: 1;
        min-width: 0;
    }

    .category-icon-box {
        width: 36px;
        height: 36px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .faq-cat-count {
        width: 100%;
        margin-left: 44px;
        font-size: 11px;
    }

    /* FAQ Cards */
    .faq-card-header {
        padding: 15px 16px;
    }

    .faq-card-header h3 {
        font-size: 14px;
    }

    .faq-answer-inner {
        padding: 0 16px 18px;
        font-size: 13px;
        padding-top: 12px;
    }

    .modern-faq-card {
        clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    }

    /* Ask Section */
    .faq-ask-section {
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    }

    .faq-ask-info {
        padding: 25px 15px;
    }

    .faq-ask-info h2 {
        font-size: 24px;
    }

    .faq-ask-form-wrap {
        padding: 25px 15px;
    }

    .faq-form-input {
        padding: 12px 14px;
        font-size: 13px;
    }

    /* CTA */
    .support-cta {
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        padding: 40px 15px;
    }

    .support-cta h2 {
        font-size: 24px;
    }

    .support-cta p {
        font-size: 14px;
    }

    .btn-modern-primary {
        padding: 14px 30px;
        font-size: 13px;
    }

    /* My Questions */
    .faq-mq-inner {
        padding: 15px;
    }

    .faq-mq-content h3 {
        font-size: 15px;
    }

    /* Community Cards */
    .faq-cq-card-new {
        padding: 14px;
        clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }

    .faq-cq-title {
        font-size: 15px;
    }

    .faq-cq-vote-btn {
        width: 28px;
        height: 24px;
    }

    .faq-cq-vote-num {
        font-size: 16px;
    }
}
