/* FAQ Page - Modern Dynamic Design */

/* CSS Variables */
:root {
    --primary-cyan: #00C2D8;
    --primary-pink: #FF2E88;
    --black: #000000;
    --white: #FFFFFF;
    --dark-bg: #0F0F15;
    --soft-gray: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #00C2D8 0%, #FF2E88 100%);
    --gradient-reverse: linear-gradient(135deg, #FF2E88 0%, #00C2D8 100%);
    --gradient-vertical: linear-gradient(180deg, #00C2D8 0%, #FF2E88 100%);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; color: var(--black); background-color: var(--white); }
html { scroll-behavior: smooth; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== */
/* Navbar               */
/* ==================== */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(15, 15, 21, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0.5rem 0;
    margin-right: 2rem;
    position: relative;
    z-index: 10;
}

.navbar.scrolled .navbar-brand {
    height: 70px;
}

.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 320px;
    min-width: auto;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.5) contrast(1.8) saturate(1.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 2;
}

.navbar.scrolled .navbar-logo {
    height: 65px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4)) brightness(1.6) contrast(2) saturate(1.4);
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .navbar-brand::before {
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover .navbar-toggler-icon {
    opacity: 0.8;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link.active {
    color: var(--primary-cyan) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta-nav {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0, 194, 216, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    transition: left 0.3s ease;
}

.btn-cta-nav:hover::before {
    left: 0;
}

.btn-cta-nav span {
    position: relative;
    z-index: 1;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 216, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-login-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav span,
.btn-login-nav i {
    position: relative;
    z-index: 1;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    border-color: transparent;
    color: var(--white);
    text-decoration: none;
}

/* ==================== */
/* FAQ Hero Section     */
/* ==================== */
.faq-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding-top: 120px;
    padding-bottom: 3rem;
}

.faq-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 194, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 46, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Floating Icons */
.hero-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.08;
    color: var(--white);
    animation: iconFloat 12s ease-in-out infinite;
}

.hero-float-1 {
    top: 15%;
    left: 8%;
    font-size: 3rem;
    animation-delay: 0s;
    color: var(--primary-cyan);
    opacity: 0.12;
}

.hero-float-2 {
    top: 25%;
    right: 12%;
    font-size: 2.5rem;
    animation-delay: 2s;
    color: var(--primary-pink);
    opacity: 0.1;
}

.hero-float-3 {
    bottom: 30%;
    left: 15%;
    font-size: 2rem;
    animation-delay: 4s;
    color: var(--primary-cyan);
    opacity: 0.08;
}

.hero-float-4 {
    bottom: 20%;
    right: 8%;
    font-size: 3.5rem;
    animation-delay: 6s;
    color: var(--primary-pink);
    opacity: 0.1;
}

.hero-float-5 {
    top: 60%;
    left: 50%;
    font-size: 2rem;
    animation-delay: 3s;
    opacity: 0.06;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-cyan);
    opacity: 0;
    animation: particleRise 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--primary-cyan); }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; background: var(--primary-pink); }
.particle:nth-child(3) { left: 40%; animation-delay: 2s; background: var(--primary-cyan); }
.particle:nth-child(4) { left: 55%; animation-delay: 3s; background: var(--primary-pink); }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; background: var(--primary-cyan); }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; background: var(--primary-pink); }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; background: var(--primary-pink); }
.particle:nth-child(8) { left: 65%; animation-delay: 7s; background: var(--primary-cyan); }

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-hero-badge i {
    font-size: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.faq-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.faq-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Search Box */
.faq-search-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.faq-search-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.faq-search-box:focus-within {
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 194, 216, 0.2);
    transform: translateY(-2px);
}

.faq-search-box i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.faq-search-box:focus-within i {
    color: var(--primary-cyan);
}

.faq-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    outline: none;
}

.faq-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-shortcut {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
    display: none;
}

.faq-search-box:focus-within .search-shortcut {
    display: inline-block;
}

/* ==================== */
/* Category Tabs        */
/* ==================== */
.faq-tabs-section {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
}

.faq-tabs-wrapper {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-tab i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: rgba(0, 194, 216, 0.06);
    color: var(--primary-cyan);
    border-color: rgba(0, 194, 216, 0.15);
}

.faq-tab.active {
    background: var(--dark-bg);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(15, 15, 21, 0.2);
}

.faq-tab.active i {
    color: var(--primary-cyan);
}

.tab-count {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.faq-tab.active .tab-count {
    background: rgba(0, 194, 216, 0.2);
    color: var(--primary-cyan);
}

/* ==================== */
/* FAQ Content Section  */
/* ==================== */
.faq-content-section {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 50%, var(--white) 100%);
}

.faq-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(0, 194, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 46, 136, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* No Results */
.faq-no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.faq-no-results.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 194, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-results-icon i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.faq-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.faq-no-results p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

/* Category Block */
.faq-category-block {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.faq-category-block.hidden {
    display: none;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.category-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 194, 216, 0.3);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.category-icon-wrapper.payment {
    background: linear-gradient(135deg, #00C2D8 0%, #0088FF 100%);
    box-shadow: 0 8px 25px rgba(0, 136, 255, 0.3);
}

.category-icon-wrapper.support {
    background: linear-gradient(135deg, #FF2E88 0%, #FF6B35 100%);
    box-shadow: 0 8px 25px rgba(255, 46, 136, 0.3);
}

.category-icon-wrapper.application {
    background: linear-gradient(135deg, #7C3AED 0%, #00C2D8 100%);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.category-icon-wrapper.referral {
    background: linear-gradient(135deg, #FF2E88 0%, #FF6BCB 100%);
    box-shadow: 0 8px 25px rgba(255, 46, 136, 0.3);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.category-desc {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0.2rem 0 0;
    font-weight: 400;
}

/* ==================== */
/* FAQ Accordion Items  */
/* ==================== */
.faq-accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

.faq-accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-vertical);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(0, 194, 216, 0.15);
    box-shadow: 0 8px 30px rgba(0, 194, 216, 0.08);
    transform: translateX(4px);
}

.faq-accordion-item:hover::before {
    opacity: 1;
}

.faq-accordion-item.active {
    border-color: rgba(0, 194, 216, 0.2);
    box-shadow: 0 12px 40px rgba(0, 194, 216, 0.12);
    transform: translateX(4px);
}

.faq-accordion-item.active::before {
    opacity: 1;
}

.faq-accordion-item.search-hidden {
    display: none;
}

/* Accordion Header */
.faq-accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-accordion-header:hover {
    background: rgba(0, 194, 216, 0.02);
}

.faq-q-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 194, 216, 0.1), rgba(255, 46, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-q-icon span {
    font-size: 0.85rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion-item.active .faq-q-icon {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(0, 194, 216, 0.3);
}

.faq-accordion-item.active .faq-q-icon span {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

.faq-q-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-q-text {
    color: var(--primary-cyan);
}

/* Toggle Icon (Plus/Minus) */
.faq-toggle-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-toggle-icon span {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle-icon span:first-child {
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle-icon span:last-child {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-accordion-item.active .faq-toggle-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Accordion Body */
.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 4.8rem;
}

.faq-answer-content p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin: 0;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

/* ==================== */
/* CTA Section          */
/* ==================== */
.faq-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.faq-cta-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 194, 216, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 46, 136, 0.12) 0%, transparent 50%);
    z-index: 0;
    animation: ctaGradientShift 12s ease-in-out infinite;
}

@keyframes ctaGradientShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

/* CTA Particles */
.faq-cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    background: var(--primary-cyan);
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    background: var(--primary-pink);
    animation: ctaFloat 8s ease-in-out infinite reverse;
}

.cta-particle:nth-child(3) {
    bottom: 25%;
    left: 25%;
    background: var(--primary-pink);
    animation: ctaFloat 7s ease-in-out infinite;
    animation-delay: 2s;
}

.cta-particle:nth-child(4) {
    top: 30%;
    right: 30%;
    background: var(--primary-cyan);
    animation: ctaFloat 9s ease-in-out infinite reverse;
    animation-delay: 1s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15px, -15px); }
    50% { transform: translate(-10px, 10px); }
    75% { transform: translate(10px, 5px); }
}

.faq-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.faq-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.faq-cta-badge i {
    color: var(--primary-pink);
}

.faq-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 194, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    transition: left 0.4s ease;
}

.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-primary i,
.btn-cta-primary span {
    position: relative;
    z-index: 1;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 194, 216, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 194, 216, 0.15);
    text-decoration: none;
}

/* ==================== */
/* Footer               */
/* ==================== */
.footer-modern {
    background: #0B0B0E;
    color: #EDEDED;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00E5FF, #FF2E88, transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: #9AA0A6;
    margin: 0;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: #EDEDED;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.8rem;
}

.footer-nav-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00E5FF;
}

.footer-nav-link:hover {
    color: #EDEDED;
    padding-left: 20px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
    text-decoration: none;
}

.footer-nav-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #9AA0A6;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    color: #EDEDED;
    text-decoration: none;
}

.footer-social-link[data-platform="tiktok"]:hover {
    background: linear-gradient(135deg, #00E5FF, #FF2E88);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.footer-bottom {
    padding-top: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #9AA0A6;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00E5FF;
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: #EDEDED;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
    text-decoration: none;
}

.footer-legal-link:hover::after {
    width: 100%;
}

.footer-legal-separator {
    color: #9AA0A6;
    font-size: 0.9rem;
}

/* ==================== */
/* Animations           */
/* ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 992px) {
    .navbar-nav {
        background: rgba(15, 15, 21, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-cta-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .faq-tabs-wrapper {
        gap: 0.4rem;
        padding: 1rem;
    }

    .faq-tab {
        padding: 0.6rem 1rem;
        font-size: 0.78rem;
    }

    .faq-tab span:not(.tab-count) {
        display: none;
    }

    .faq-tab.active span:not(.tab-count) {
        display: inline;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

    .navbar-logo {
        height: 60px;
        max-width: 280px;
        min-width: 200px;
    }

    .navbar.scrolled .navbar-logo {
        height: 55px;
    }

    .faq-hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .faq-hero-title {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 0.95rem;
    }

    .faq-tabs-section {
        margin-top: -1rem;
    }

    .faq-tabs-wrapper {
        border-radius: 15px;
        padding: 0.8rem;
    }

    .faq-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .tab-count {
        display: none;
    }

    .faq-content-section {
        padding: 3rem 0 4rem;
    }

    .faq-category-header {
        gap: 1rem;
    }

    .category-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .faq-accordion-header {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }

    .faq-q-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .faq-q-text {
        font-size: 0.88rem;
    }

    .faq-answer-content {
        padding: 0 1.2rem 1.2rem 3.8rem;
    }

    .faq-answer-content p {
        font-size: 0.85rem;
    }

    .faq-cta-section {
        padding: 4rem 0;
    }

    .faq-cta-title {
        font-size: 1.8rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
        max-width: 100%;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-nav-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-social-icons {
        gap: 0.75rem;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .faq-hero {
        min-height: 65vh;
        padding-top: 90px;
    }

    .faq-hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .faq-hero-title {
        font-size: 1.8rem;
    }

    .faq-search-box {
        padding: 0.8rem 1.2rem;
    }

    .faq-search-box input {
        font-size: 0.85rem;
    }

    .search-shortcut {
        display: none !important;
    }

    .faq-tabs-wrapper {
        gap: 0.3rem;
    }

    .faq-tab {
        padding: 0.5rem 0.6rem;
    }

    .faq-accordion-item {
        border-radius: 12px;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-cta-title {
        font-size: 1.5rem;
    }

    .footer-modern {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
