/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snow" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23snow)"/></svg>');
    pointer-events: none;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.faq-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.faq-content {
    padding: 80px 0;
    background: white;
}

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

.faq-category {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-category h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--christmas-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3:hover {
    color: var(--christmas-green);
}

.faq-item h3::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    display: none;
    margin-top: 0.5rem;
    padding-left: 0;
}

.faq-contact {
    text-align: center;
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    color: white;
}

.faq-contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

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

    .faq-stats {
        gap: 1.5rem;
    }

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

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

    .faq-category {
        padding: 1.5rem;
    }

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

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

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

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

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

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

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