/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-category h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--electric-blue);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-gray);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--light-gray);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.faq-question:hover {
    background: rgba(0, 168, 255, 0.1);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: var(--electric-blue);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Contact CTA */
.faq-contact {
    padding: 60px 0;
    background: var(--gradient-primary);
}

.faq-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-contact-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 25px;
}

/* Page Header (reused from gallery) */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 168, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 195, 255, 0.1) 0%, transparent 40%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease forwards;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.breadcrumb a {
    color: var(--electric-blue);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-contact-content h3 {
        font-size: 1.5rem;
    }
}
