/* --- FAQ Page Glass Styles --- */

.faq-section {
    padding: 100px 20px;
    background-color: #0f172a; /* Match your homepage background */
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(30, 41, 59, 0.4) 0, transparent 50%);
    min-height: 100vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Text */
.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* Category Labels */
.faq-category h3 {
    color: #3b82f6;
    margin: 50px 0 25px 0;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* The Glass Card */
.faq-item {
    background: rgba(255, 255, 255, 0.03); /* Subtle white tint */
    backdrop-filter: blur(12px); /* Strong glass blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Thin glass border */
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Hover & Open States */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px); /* Subtle slide effect */
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Summary / Question Bar */
summary {
    padding: 24px;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '\f078'; /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

/* Answer Content */
.faq-content {
    padding: 0 24px 24px 24px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.faq-content strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-title { font-size: 2.2rem; }
    .faq-item { margin-bottom: 12px; }
    summary { padding: 18px; font-size: 1rem; }
}