/* ========================================
   FAQ PAGE - ULTRA AESTHETIC DESIGN
   Mengikuti design system halaman Profil
   ======================================== */

:root {
    --primary-color: #047857;
    --primary-dark: #065f46;
    --primary-light: #10b981;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HERO SECTION
   ======================================== */

.faq-hero {
    position: relative;
    background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
    min-height: 420px;
    padding: 5rem 0 8rem;
    overflow: hidden;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 95, 70, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.faq-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.faq-hero .hero-badge i {
    font-size: 1rem;
}

.faq-hero .hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.faq-hero .hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.faq-hero .hero-motto {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.8s ease-out 0.5s both;
    line-height: 1.6;
}

.faq-hero .hero-motto i {
    font-size: 1.5rem;
    opacity: 0.75;
    flex-shrink: 0;
}

.faq-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.faq-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.faq-hero .meta-item i {
    font-size: 1.25rem;
    opacity: 0.8;
}

.faq-hero .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.faq-hero .hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.faq-hero .hero-wave path {
    fill: var(--bg-light);
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.faq-content {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
    position: relative;
}

/* ========================================
   SEARCH BOX
   ======================================== */

.faq-search-wrap {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.faq-search-box:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(4, 120, 87, 0.18);
    transform: translateY(-2px);
}

.faq-search-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.15rem;
    color: var(--primary-color);
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 1.15rem 3.5rem 1.15rem 3.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.faq-search-clear {
    position: absolute;
    right: 1.15rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-search-clear:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(90deg);
}

.faq-search-result {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    padding-left: 0.25rem;
    min-height: 1.35rem;
}

.faq-search-result strong {
    color: var(--primary-color);
}

/* ========================================
   TABS NAVIGATION
   ======================================== */

.faq-tabs-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: sticky;
    top: 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

.faq-tabs {
    border: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
}

.faq-tabs::-webkit-scrollbar {
    height: 4px;
}

.faq-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.faq-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 2px;
}

.faq-tabs .nav-item {
    flex-shrink: 0;
}

.faq-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-tabs .nav-link:hover::before {
    left: 100%;
}

.faq-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(4, 120, 87, 0.05);
    transform: translateY(-2px);
}

.faq-tabs .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
    transform: translateY(-2px);
}

.faq-tabs .nav-link i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-tabs .nav-link.active i {
    transform: scale(1.1);
}

/* Badge jumlah hasil pencarian pada tab */
.faq-tabs .nav-link .tab-count {
    display: none;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    background: rgba(4, 120, 87, 0.12);
    color: var(--primary-color);
}

.faq-tabs .nav-link.active .tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.faq-searching .faq-tabs .nav-link .tab-count {
    display: inline-block;
}

.faq-tabs .nav-link.is-empty {
    opacity: 0.45;
}

/* ========================================
   TAB CONTENT & SECTION HEADER
   ======================================== */

.faq-tab-content {
    animation: fadeIn 0.5s ease-out;
}

.faq-tab-content .tab-pane {
    animation: fadeInUp 0.6s ease-out;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(4, 120, 87, 0.2);
}

.section-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   ACCORDION FAQ
   ======================================== */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.10s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.20s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.30s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.40s;
}

.faq-item:nth-child(n+9) {
    animation-delay: 0.45s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.faq-item.active {
    box-shadow: 0 12px 24px rgba(4, 120, 87, 0.14);
    border-color: rgba(16, 185, 129, 0.35);
}

.faq-item.is-hidden {
    display: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(4, 120, 87, 0.035);
}

.faq-question:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: -3px;
}

.faq-q-number {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 120, 87, 0.09);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.faq-item.active .faq-q-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(4, 120, 87, 0.28);
}

.faq-q-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.faq-item.active .faq-q-text {
    color: var(--primary-color);
}

.faq-q-toggle {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-item.active .faq-q-toggle {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(180deg);
}

/* Animasi buka-tutup tanpa max-height hack */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-body {
    padding: 0 1.75rem 1.6rem 4.75rem;
    color: var(--text-gray);
    font-size: 0.975rem;
    line-height: 1.8;
    border-top: 1px dashed rgba(0, 0, 0, 0.07);
    margin-top: 0.15rem;
    padding-top: 1.2rem;
}

.faq-answer-body p {
    margin-bottom: 0.85rem;
}

.faq-answer-body p:last-child,
.faq-answer-body ul:last-child,
.faq-answer-body ol:last-child {
    margin-bottom: 0;
}

.faq-answer-body ul,
.faq-answer-body ol {
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.faq-answer-body li {
    margin-bottom: 0.4rem;
}

.faq-answer-body strong {
    color: var(--text-dark);
    font-weight: 700;
}

.faq-answer-body a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(4, 120, 87, 0.3);
    transition: var(--transition);
}

.faq-answer-body a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

.faq-answer-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.faq-answer-body th,
.faq-answer-body td {
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    text-align: left;
}

.faq-answer-body th {
    background: rgba(4, 120, 87, 0.06);
    color: var(--primary-dark);
    font-weight: 700;
}

.faq-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.faq-note i {
    color: var(--accent-color);
    margin-top: 0.15rem;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.faq-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.faq-q-text mark,
.faq-answer-body mark {
    background: rgba(245, 158, 11, 0.35);
    color: inherit;
    padding: 0 0.15rem;
    border-radius: 3px;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.faq-empty {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3.5rem 2rem;
    text-align: center;
    animation: scaleIn 0.5s ease-out;
}

.faq-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(4, 120, 87, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-empty-icon i {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.faq-empty-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

.faq-empty-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.faq-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.faq-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(4, 120, 87, 0.35);
}

/* ========================================
   CTA SECTION
   ======================================== */

.faq-cta {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 55%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.faq-cta::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.cta-head {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-head>i {
    font-size: 2.25rem;
    opacity: 0.9;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.cta-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.975rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
}

.cta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: #ffffff;
}

.cta-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.cta-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.cta-value {
    font-weight: 700;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991.98px) {
    .faq-hero {
        padding: 3.5rem 0 7rem;
        min-height: auto;
    }

    .faq-hero .hero-title {
        font-size: 2.5rem;
    }

    .faq-hero .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-icon {
        width: 58px;
        height: 58px;
    }

    .section-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .faq-hero .hero-title {
        font-size: 2rem;
    }

    .faq-hero .hero-motto {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-hero .hero-meta {
        gap: 0.85rem;
        flex-direction: column;
    }

    .faq-tabs-container {
        position: static;
        margin-bottom: 2rem;
    }

    .faq-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .faq-search-input {
        padding: 1rem 3.25rem 1rem 3.25rem;
        font-size: 0.925rem;
    }

    .faq-search-icon {
        left: 1.15rem;
    }

    .faq-question {
        padding: 1.1rem 1.15rem;
        gap: 0.75rem;
    }

    .faq-q-number {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .faq-q-text {
        font-size: 0.95rem;
    }

    .faq-answer-body {
        padding: 1.1rem 1.15rem 1.35rem;
        font-size: 0.925rem;
    }

    .faq-cta {
        padding: 1.75rem;
    }

    .cta-head {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cta-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .faq-hero .hero-title {
        font-size: 1.7rem;
    }

    .faq-empty {
        padding: 2.5rem 1.25rem;
    }
}

/* Hormati preferensi reduce motion */
@media (prefers-reduced-motion: reduce) {

    .faq-hero .hero-content,
    .faq-hero .hero-badge,
    .faq-hero .hero-title,
    .faq-hero .hero-subtitle,
    .faq-hero .hero-motto,
    .faq-hero .hero-meta,
    .faq-search-wrap,
    .faq-tabs-container,
    .faq-item,
    .faq-empty,
    .section-header {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .faq-answer {
        transition: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    .faq-hero,
    .faq-search-wrap,
    .faq-tabs-container,
    .faq-cta,
    .faq-q-toggle {
        display: none !important;
    }

    .faq-content {
        padding: 0;
        background: #ffffff;
    }

    .faq-tab-content .tab-pane {
        display: block !important;
        opacity: 1 !important;
        page-break-inside: avoid;
    }

    .faq-answer {
        grid-template-rows: 1fr !important;
    }

    .faq-item {
        box-shadow: none;
        border: 1px solid #ddd;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}
