/* FAQ Page Specific Styles */

/* Logo link styling */
.logo-text {
    text-decoration: none !important;
}

.logo-text:hover,
.logo-text:focus,
.logo-text:active {
    text-decoration: none !important;
    color: var(--primary-color) !important;
}

/* Navigation active state */
.nav-link--active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* FAQ Hero Section */
.faq-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-grey) 100%);
    text-align: center;
}

.faq-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
}

/* FAQ Navigation */
.faq-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-nav-btn--active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* FAQ Sections */
.faq-section {
    display: none;
}

.faq-section--active {
    display: block;
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-summary {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-amazon {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Items */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-grey);
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
    margin-right: 16px;
}

.faq-chevron {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item--open .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.faq-answer--open {
    padding: 20px 24px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* FAQ CTA Section */
.faq-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    text-align: center;
}

.faq-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.faq-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.faq-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.faq-cta .btn-primary:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 50px;
    }
    
    .faq-hero-title {
        font-size: 32px;
    }
    
    .faq-hero-subtitle {
        font-size: 18px;
    }
    
    .faq-content {
        padding: 60px 0;
    }
    
    .faq-nav {
        gap: 6px;
        margin-bottom: 40px;
    }
    
    .faq-nav-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-chevron {
        font-size: 18px;
    }
    
    .faq-answer--open {
        padding: 16px 20px;
    }
    
    .faq-cta {
        padding: 60px 0;
    }
    
    .faq-cta-title {
        font-size: 28px;
    }
    
    .faq-cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-hero-title {
        font-size: 28px;
    }
    
    .faq-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-nav-btn {
        min-width: 200px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question-text {
        font-size: 14px;
        margin-right: 12px;
    }
    
    .faq-answer--open {
        padding: 14px 16px;
    }
}