/* =============================================
   FAQ Page - Modern Light Design
   ============================================= */

/* Hero Section - Light Theme */
.faq-hero-modern {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.faq-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-hero-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.faq-hero-modern .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 150, 46, 0.1);
    color: #B8962E;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(184, 150, 46, 0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faq-hero-modern h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.15;
}

.faq-hero-modern h1 span {
    background: linear-gradient(135deg, #B8962E, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero-modern p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Hero Stats */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.faq-stat {
    text-align: center;
}

.faq-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B8962E, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.faq-stat-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Bar */
.faq-search-wrapper {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search-wrapper input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-search-wrapper input::placeholder {
    color: #94a3b8;
}

.faq-search-wrapper input:focus {
    border-color: #D4AF37;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15);
}

.faq-search-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #B8962E;
    font-size: 1.1rem;
}

/* CTA Banner */
.faq-cta-banner {
    padding: 16px 0;
    background: linear-gradient(135deg, #B8962E 0%, #D4AF37 100%);
}

.faq-cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.faq-cta-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-cta-banner .btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-cta-banner .btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Category Navigation */
.faq-nav {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e2e8f0;
}

.faq-nav-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav-item {
    padding: 12px 20px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.faq-nav-item:hover {
    background: #f1f5f9;
    color: #1a1a1a;
}

.faq-nav-item.active {
    background: linear-gradient(135deg, #B8962E, #D4AF37);
    color: #fff;
    border-color: transparent;
}

.faq-nav-item i {
    font-size: 0.9rem;
}

/* FAQ Content */
.faq-content {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Category Section */
.faq-category {
    margin-bottom: 50px;
    scroll-margin-top: 150px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #B8962E, #D4AF37);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-category-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: rgba(212,175,55,0.3);
}

.faq-item.active {
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #B8962E;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #64748b;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #B8962E, #D4AF37);
}

.faq-item.active .faq-toggle i {
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

/* Highlight Box */
.faq-highlight {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(245,208,97,0.08));
    border-left: 4px solid #D4AF37;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-highlight i {
    color: #B8962E;
    font-size: 1.1rem;
    margin-top: 2px;
}

.faq-highlight p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
}

/* Final CTA Section */
.faq-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.faq-final-cta-content {
    position: relative;
    z-index: 2;
}

.faq-final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.faq-final-cta h2 span {
    color: #F5D061;
}

.faq-final-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #B8962E, #D4AF37);
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #F5D061;
    color: #F5D061;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-modern {
        padding: 120px 0 60px;
    }
    
    .faq-hero-modern h1 {
        font-size: 2rem;
    }
    
    .faq-hero-modern p {
        font-size: 1rem;
    }
    
    .faq-stats {
        gap: 24px;
    }
    
    .faq-stat-number {
        font-size: 1.75rem;
    }
    
    .faq-search-wrapper input {
        padding: 14px 50px 14px 20px;
    }
    
    .faq-cta-banner .container {
        justify-content: center;
        text-align: center;
    }
    
    .faq-nav {
        padding: 16px 0;
    }
    
    .faq-nav-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .faq-nav-item i {
        display: none;
    }
    
    .faq-content {
        padding: 40px 0 60px;
    }
    
    .faq-category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-final-cta {
        padding: 60px 0;
    }
    
    .faq-final-cta h2 {
        font-size: 1.5rem;
    }
    
    .btn-gold,
    .btn-outline-light {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}
