/* FAQ Page Styles - Modern Dark Theme */

/* Hero Section */
.faq-hero {
    background: #000000;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', 'Inter', sans-serif;
    letter-spacing: -1px;
}

.faq-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Stats */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.faq-stats .stat-item {
    text-align: center;
}

.faq-stats .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Nunito', sans-serif;
}

.faq-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Content Section */
.faq-content {
    padding: 80px 0;
    background: #000000;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Category Cards */
.faq-category {
    background: rgba(128, 128, 128, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-category:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-category h2 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.faq-category h2 i {
    font-size: 1.6rem;
    color: #FF6B35;
    -webkit-text-fill-color: #FF6B35;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.faq-item h3:hover {
    color: #FF6B35;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #FF6B35;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item h3.active {
    color: #FF6B35;
}

.faq-item h3.active::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    display: none;
    margin-top: 0.5rem;
    padding-left: 0;
    font-size: 0.95rem;
}

/* Contact Section */
.faq-contact {
    text-align: center;
    background: rgba(128, 128, 128, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF1493 0%, #FF6B35 50%, #FF8C00 100%);
}

.faq-contact h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.4);
    color: white;
}

.contact-btn i {
    font-size: 1.2rem;
}

/* Valentine Category Special Style */
.faq-category .category-title {
    font-size: 1.4rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }

    .faq-hero h1 {
        font-size: 2.25rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

    .faq-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .faq-stats .stat-number {
        font-size: 2.25rem;
    }

    .faq-stats .stat-label {
        font-size: 0.9rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.2rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 90px 0 50px;
    }

    .faq-hero h1 {
        font-size: 1.75rem;
    }

    .faq-content {
        padding: 50px 0;
    }

    .faq-category h2 {
        font-size: 1.1rem;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-stats {
        gap: 1.5rem;
    }

    .faq-stats .stat-number {
        font-size: 1.75rem;
    }

    .faq-contact {
        padding: 2.5rem 1.5rem;
    }

    .faq-contact h2 {
        font-size: 1.5rem;
    }
}
