.faq-section {
    min-height: 100vh;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    background: var(--color-bg);
    position: relative;
    overflow: visible;
    -webkit-font-smoothing: antialiased;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--pink-tint-05), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: -0.016em;
}
/* Arabic typography */
html[dir="rtl"] .section-title h2,
html[dir="rtl"] .section-title p,
html[dir="rtl"] .faq-item h3,
html[dir="rtl"] .faq-item p { letter-spacing: 0; }
html[dir="rtl"] .faq-item p { line-height: 1.7; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
    padding: 0;
}

.faq-grid .faq-item {
    background: var(--surface-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.75rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-border);
    box-shadow: var(--shadow-lg);
    background: var(--surface-overlay-strong);
}

.faq-item h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-light) 70%, var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    transition: color 0.3s ease;
    letter-spacing: -0.016em;
}

.faq-item:hover p {
    color: var(--color-text);
}

.faq-item .read-more {
    color: var(--pink-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.016em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0;
    margin-top: auto;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* RTL: reverse inline icon/text order while keeping spacing */
html[dir="rtl"] .faq-item .read-more { flex-direction: row-reverse; }

.faq-item .read-more:hover {
    color: var(--pink-dark);
    gap: 0.5rem;
}

.faq-more {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.faq-more p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    letter-spacing: -0.022em;
}

.faq-more .contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.016em;
    padding: 0.875rem 1.75rem;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    box-shadow: var(--shadow-sm);
    -webkit-tap-highlight-color: transparent;
}

.faq-more .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-primary));
}

/* 响应式设计 - iPad */
@media (max-width: 1068px) {
    .faq-section {
        padding: 4rem 3rem;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
    }

    .faq-grid {
        gap: 1.25rem;
    }

    .faq-grid .faq-item {
        padding: 1.5rem;
        min-height: 200px;
    }
}

/* 响应式设计 - iPhone */
@media (max-width: 734px) {
    .faq-section {
        padding: 3rem 1.5rem;
        height: auto;
        align-items: flex-start;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .faq-grid .faq-item {
        padding: 1.25rem;
        min-height: auto;
    }

    .faq-item h3 {
        font-size: 17px;
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .faq-item .read-more {
        font-size: 14px;
        padding: 0.5rem 0;
    }

    .faq-more {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .faq-more p {
        font-size: 15px;
    }

    .faq-more .contact-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

/* 响应式设计 - 小型iPhone */
@media (max-width: 374px) {
    .faq-section {
        padding: 2.5rem 1rem;
    }

    .section-title h2 {
        font-size: 24px;
    }

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

    .faq-item p {
        font-size: 13px;
    }

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

    .faq-more .contact-btn {
        font-size: 14px;
        padding: 0.875rem 1.25rem;
    }
} 
