/* FAQ Page Styles - Enhanced Version */
.faq-page-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.faq-page-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Elements */
.faq-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Breadcrumb */
.faq-page-wrapper .inner-breadcrumb {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.faq-page-wrapper .breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-page-wrapper .breadcrumb-trail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.faq-page-wrapper .breadcrumb-link {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.faq-page-wrapper .breadcrumb-link:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.faq-page-wrapper .breadcrumb-divider {
    color: #94a3b8;
}

.faq-page-wrapper .breadcrumb-current {
    color: #64748b;
    font-weight: 500;
}

/* Container */
.faq-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Animated Header */
.faq-page-wrapper .faq-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.faq-page-wrapper .faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-page-wrapper .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
}

.faq-page-wrapper .title-word-1 { animation-delay: 0.1s; }
.faq-page-wrapper .title-word-2 { animation-delay: 0.3s; }
.faq-page-wrapper .title-word-3 { animation-delay: 0.5s; }

.faq-page-wrapper .faq-intro {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Search Section */
.faq-page-wrapper .search-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.faq-page-wrapper .animated-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-page-wrapper .search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-page-wrapper .search-box input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    font-size: 1.1rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.faq-page-wrapper .search-box input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.faq-page-wrapper .search-box input:focus + .search-underline {
    transform: scaleX(1);
}

.faq-page-wrapper .search-underline {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 3px;
    transition: transform 0.3s ease;
    z-index: 0;
}

.faq-page-wrapper .search-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease 1s forwards;
    opacity: 0;
}

.faq-page-wrapper .search-hint i {
    color: #f59e0b;
}

/* Categories */
.faq-page-wrapper .categories {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.faq-page-wrapper .category-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.faq-page-wrapper .category-btn {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(226, 232, 240, 0.5);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-page-wrapper .category-btn:hover {
    background: white;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.faq-page-wrapper .category-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    transform: translateY(-3px);
}

.faq-page-wrapper .category-btn.active .category-indicator {
    opacity: 1;
    transform: scale(1);
}

.faq-page-wrapper .category-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 30px;
    height: 4px;
    background: white;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-page-wrapper .category-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* FAQ Stats */
.faq-page-wrapper .faq-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.faq-page-wrapper .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
}

.faq-page-wrapper .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-page-wrapper .stat-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.faq-page-wrapper .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.faq-page-wrapper .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* FAQ Items - Enhanced with Smooth Animations */
.faq-page-wrapper .faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-page-wrapper .faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.faq-page-wrapper .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-page-wrapper .faq-item.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
    border-left: 5px solid #2563eb;
}

.faq-page-wrapper .faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq-page-wrapper .faq-item.active .faq-question {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-page-wrapper .question-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.faq-page-wrapper .question-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-page-wrapper .faq-item.active .question-number {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.faq-page-wrapper .question-text {
    flex: 1;
}

.faq-page-wrapper .question-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-page-wrapper .faq-item.active .question-text h3 {
    color: #2563eb;
}

.faq-page-wrapper .question-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.faq-page-wrapper .category-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.faq-page-wrapper .read-time {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.faq-page-wrapper .question-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-page-wrapper .copy-link-btn {
    background: rgba(37, 99, 235, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page-wrapper .copy-link-btn:hover {
    background: #2563eb;
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.faq-page-wrapper .expand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-page-wrapper .faq-item.active .expand-icon {
    transform: rotate(180deg);
    background: #2563eb;
    color: white;
}

/* FAQ Answer with Smooth Expand Animation */
.faq-page-wrapper .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-page-wrapper .faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-page-wrapper .answer-content {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease 0.2s;
}

.faq-page-wrapper .faq-item.active .answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-page-wrapper .answer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.faq-page-wrapper .answer-text {
    flex: 1;
}

.faq-page-wrapper .answer-text p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.faq-page-wrapper .answer-actions {
    display: flex;
    gap: 1rem;
}

.faq-page-wrapper .helpful-btn,
.faq-page-wrapper .share-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-page-wrapper .helpful-btn:hover {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.faq-page-wrapper .share-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Quick Actions */
.faq-page-wrapper .quick-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease 1.2s forwards;
    opacity: 0;
}

.faq-page-wrapper .expand-all-btn,
.faq-page-wrapper .collapse-all-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 50px;
    background: white;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.faq-page-wrapper .expand-all-btn:hover,
.faq-page-wrapper .collapse-all-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Contact Promo */
.faq-page-wrapper .contact-promo {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 30px;
    padding: 4rem;
    margin: 4rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 1.4s forwards;
    opacity: 0;
}

.faq-page-wrapper .contact-content {
    position: relative;
    z-index: 2;
}

.faq-page-wrapper .contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.faq-page-wrapper .contact-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-page-wrapper .contact-promo p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-page-wrapper .btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

.faq-page-wrapper .btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-page-wrapper .btn-gradient:hover::before {
    left: 100%;
}

.faq-page-wrapper .btn-gradient:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.faq-page-wrapper .contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.87-170.74,150.87-170.74,150.87V0H0V120H1200V0H321.39Z" fill="white"/></svg>');
    opacity: 0.1;
    animation: wave 20s linear infinite;
}

/* Footer */
.faq-page-wrapper footer {
    text-align: center;
    padding: 3rem 0;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 2rem;
    animation: fadeIn 0.8s ease 1.6s forwards;
    opacity: 0;
}

.faq-page-wrapper .footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-page-wrapper .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-page-wrapper .social-link {
    width: 45px;
    height: 45px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-page-wrapper .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.faq-page-wrapper .social-link:hover::before {
    opacity: 1;
}

.faq-page-wrapper .social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.faq-page-wrapper .social-link:hover i {
    color: white;
    transform: scale(1.2) rotate(5deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Search highlight */
.search-highlight {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    color: #92400e;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

/* No results message */
.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
    animation: fadeIn 0.5s ease;
}

.no-results-content i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.no-results-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.no-results-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 400px;
    margin: 0 auto;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Loading animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-page-wrapper .container {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .faq-page-wrapper .faq-main-title {
        font-size: 2.8rem;
    }
    
    .faq-page-wrapper .faq-stats {
        gap: 2rem;
    }
    
    .faq-page-wrapper .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .faq-page-wrapper .contact-promo {
        padding: 3rem;
    }
    
    .faq-page-wrapper .contact-promo h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-page-wrapper .container {
        padding: 1rem;
    }
    
    .faq-page-wrapper .breadcrumb-content {
        padding: 0 1rem;
    }
    
    .faq-page-wrapper .faq-main-title {
        font-size: 2.2rem;
    }
    
    .faq-page-wrapper .faq-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .faq-page-wrapper .faq-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .faq-page-wrapper .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-page-wrapper .category-scroll {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: #2563eb #f1f5f9;
    }
    
    .faq-page-wrapper .category-scroll::-webkit-scrollbar {
        height: 6px;
    }
    
    .faq-page-wrapper .category-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 3px;
    }
    
    .faq-page-wrapper .category-scroll::-webkit-scrollbar-thumb {
        background: #2563eb;
        border-radius: 3px;
    }
    
    .faq-page-wrapper .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .faq-page-wrapper .faq-question {
        padding: 1.5rem;
    }
    
    .faq-page-wrapper .question-content {
        gap: 1rem;
    }
    
    .faq-page-wrapper .question-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .faq-page-wrapper .question-text h3 {
        font-size: 1.1rem;
    }
    
    .faq-page-wrapper .answer-content {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-page-wrapper .answer-icon {
        align-self: flex-start;
    }
    
    .faq-page-wrapper .contact-promo {
        padding: 2rem;
        margin: 3rem 0;
        border-radius: 20px;
    }
    
    .faq-page-wrapper .contact-promo h2 {
        font-size: 1.6rem;
    }
    
    .faq-page-wrapper .contact-promo p {
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .faq-page-wrapper .faq-main-title {
        font-size: 1.8rem;
    }
    
    .faq-page-wrapper .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1rem;
    }
    
    .faq-page-wrapper .faq-question {
        padding: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-page-wrapper .question-actions {
        align-self: flex-end;
    }
    
    .faq-page-wrapper .contact-promo {
        padding: 1.5rem;
    }
    
    .faq-page-wrapper .contact-icon {
        font-size: 3rem;
    }
    
    .faq-page-wrapper .btn-gradient {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-page-wrapper .social-links {
        gap: 0.75rem;
    }
    
    .faq-page-wrapper .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Print styles */
@media print {
    .faq-page-wrapper .search-section,
    .faq-page-wrapper .categories,
    .faq-page-wrapper .faq-stats,
    .faq-page-wrapper .quick-actions,
    .faq-page-wrapper .contact-promo,
    .faq-page-wrapper footer,
    .back-to-top {
        display: none;
    }
    
    .faq-page-wrapper .faq-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
    
    .faq-page-wrapper .faq-item.active .faq-answer {
        max-height: none;
        display: block;
    }
    
    .faq-page-wrapper .faq-answer {
        max-height: none !important;
        display: none;
    }
    
    .faq-page-wrapper .faq-item.active .answer-content {
        opacity: 1;
        transform: none;
    }
}