/* ===== FAQ Hero Section ===== */
.faq-hero {
    margin: 2rem auto 3rem;
    padding: 2rem 1.5rem;
    max-width: 1200px;
}

.faq-hero-content {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
}

.faq-title {
    font-size: 2.5rem;
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.faq-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.875rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
}

/* ===== FAQ Container ===== */
.faq-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

/* ===== FAQ Navigation ===== */
.faq-nav {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    z-index: 10;
}

.faq-nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-nav-title::before {
    content: "📍";
    font-size: 1rem;
}

.faq-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.faq-nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.7);
    color: #cbd5e1;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-nav-link:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

/* ===== FAQ Sections ===== */
.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-section {
    scroll-margin-top: 120px;
}

.faq-section-title {
    font-size: 1.75rem;
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #3b82f6;
}

/* ===== FAQ Items ===== */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(100, 116, 139, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.125rem;
    color: #f1f5f9;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question::before {
    content: "Q.";
    color: #3b82f6;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.faq-answer {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===== FAQ Lists ===== */
.faq-list {
    list-style: none;
    padding-left: 1.25rem;
    margin: 1rem 0;
}

.faq-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.faq-list li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.faq-list strong {
    color: #f1f5f9;
    font-weight: 600;
}

/* ===== FAQ Links ===== */
.faq-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* ===== FAQ CTA ===== */
.faq-cta {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cta-description {
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-1px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .faq-hero {
        padding: 1.5rem 1rem;
        margin: 1rem auto 2rem;
    }
    
    .faq-hero-content {
        padding: 1.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-container {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .faq-nav {
        position: static;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .faq-nav-links {
        gap: 0.5rem;
    }
    
    .faq-nav-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .faq-section-title {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.0625rem;
        cursor: pointer;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    /* Mobile accordion behavior */
    .faq-item .faq-answer {
        display: block;
    }
    
    .faq-item.active .faq-answer {
        display: block;
    }
    
    .faq-question::after {
        content: "▼";
        font-size: 0.75rem;
        margin-left: auto;
        transition: transform 0.2s ease;
        color: #94a3b8;
    }
    
    .faq-item.active .faq-question::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-hero-content {
        padding: 1.25rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-list {
        padding-left: 1rem;
    }
    
    .faq-list li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}