    :root {
        --faq-bg: #f8f9fb;
        --faq-card-bg: #ffffff;
        --faq-primary: #1a2b4c;
        --faq-accent: #c9a84c;
        --faq-accent-hover: #d4b85c;
        --faq-text: #2c3e50;
        --faq-text-light: #6c7a89;
        --faq-border: #e8ecf1;
        --faq-shadow: 0 4px 20px rgba(0,0,0,0.04);
        --faq-shadow-hover: 0 8px 30px rgba(0,0,0,0.08);
        --faq-radius: 14px;
        --faq-radius-sm: 10px;
        --faq-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .faq-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
        font-family: 'Yekan Bakh', 'IRANYekan', Tahoma, sans-serif;
        position: relative;
        overflow: hidden;
    }
    
    /* Decorative shape */
    .faq-section::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .faq-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(26,43,76,0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .faq-container {
        max-width: 850px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    /* Header */
    .faq-header {
        text-align: center;
        margin-bottom: 3rem;
        direction: rtl;
    }
    
    .faq-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(201,168,76,0.1);
        color: var(--faq-accent);
        padding: 0.4rem 1.3rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.2rem;
        border: 1px solid rgba(201,168,76,0.2);
    }
    
    .faq-badge-dot {
        width: 7px; height: 7px;
        background: var(--faq-accent);
        border-radius: 50%;
        animation: faqPulse 2s ease-in-out infinite;
    }
    
    @keyframes faqPulse {
        0%,100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.5); opacity: 0.4; }
    }
    
    .faq-title {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--faq-primary);
        margin: 0 0 0.8rem;
    }
    
    .faq-title .highlight { color: var(--faq-accent); }
    
    .faq-subtitle {
        font-size: 1.1rem;
        color: var(--faq-text-light);
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* FAQ List */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        direction: rtl;
    }
    
    /* FAQ Item */
    .faq-item {
        background: var(--faq-card-bg);
        border: 1px solid var(--faq-border);
        border-radius: var(--faq-radius);
        box-shadow: var(--faq-shadow);
        transition: var(--faq-transition);
        overflow: hidden;
    }
    
    .faq-item:hover {
        box-shadow: var(--faq-shadow-hover);
    }
    
    .faq-item.active {
        border-color: rgba(201,168,76,0.3);
        box-shadow: 0 8px 30px rgba(201,168,76,0.1);
    }
    
    /* Question Button */
    .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        text-align: right;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--faq-primary);
        transition: var(--faq-transition);
    }
    
    .faq-item.active .faq-question {
        color: var(--faq-accent);
    }
    
    .faq-question:hover {
        color: var(--faq-accent);
    }
    
    /* Question Text */
    .faq-question-text {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 0.85rem;
    }
    
    .faq-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        background: rgba(201,168,76,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--faq-accent);
        transition: var(--faq-transition);
    }
    
    .faq-item.active .faq-icon {
        background: var(--faq-accent);
        color: white;
    }
    
    /* Toggle Arrow */
    .faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: #f0f2f5;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--faq-transition);
        font-size: 0.7rem;
        color: var(--faq-text-light);
    }
    
    .faq-item.active .faq-toggle {
        background: var(--faq-accent);
        color: white;
        transform: rotate(180deg);
    }
    
    /* Answer */
    .faq-answer-wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        color: var(--faq-text-light);
        line-height: 2;
        font-size: 0.95rem;
        text-align: justify;
        padding-right: 4.5rem;
    }
    
    /* CTA */
    .faq-cta {
        text-align: center;
        margin-top: 2.5rem;
    }
    
    .faq-cta-text {
        color: var(--faq-text-light);
        font-size: 0.95rem;
    }
    
    .faq-cta-link {
        color: var(--faq-accent);
        font-weight: 700;
        text-decoration: none;
        transition: var(--faq-transition);
    }
    
    .faq-cta-link:hover {
        color: var(--faq-primary);
    }
    
    /* === RESPONSIVE === */
    @media (max-width: 768px) {
        .faq-section {
            padding: 4rem 1.25rem;
        }
        
        .faq-title {
            font-size: 1.8rem;
        }
        
        .faq-question {
            padding: 1rem 1.2rem;
            font-size: 0.95rem;
        }
        
        .faq-answer {
            padding: 0 1.2rem 1.2rem;
            padding-right: 3.5rem;
            font-size: 0.9rem;
        }
        
        .faq-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .faq-title {
            font-size: 1.5rem;
        }
        
        .faq-question-text {
            gap: 0.5rem;
        }
        
        .faq-answer {
            padding-right: 1.5rem;
            text-align: right;
        }
    }