/* FAQ Page Styles */
:root {
    --primary-color: #5956E9;
    --secondary-color: #9345FE;
    --accent-color: #8A2BE2;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f8f9fa;
    --card-bg: #fff;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.faq-search-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(50%);
}

.faq-search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-search-box input {
    flex: 1;
    border: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.faq-search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-search-box button:hover {
    background: var(--secondary-color);
}

/* Main Content */
.faq-content {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color);
    color: white;
}

/* FAQ Container */
.faq-container {
    margin-bottom: 60px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* FAQ Items */
.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    padding-right: 40px;
    transition: var(--transition);
}

.faq-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.faq-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/pattern.png');
    opacity: 0.1;
}

.faq-contact-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.faq-contact .contact-btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-contact .contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-hero h1 {
        font-size: 3rem;
    }
    
    .faq-contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 20px 100px;
    }
    
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-search-container {
        transform: translateY(30%);
    }
    
    .faq-search-box input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-search-box button {
        padding: 0 20px;
    }
    
    .faq-content {
        padding: 70px 20px 40px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        right: 25px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 1rem;
    }
    
    .faq-contact {
        padding: 40px 30px;
    }
    
    .faq-contact h2 {
        font-size: 1.8rem;
    }
    
    .faq-contact p {
        font-size: 1rem;
    }
    
    .faq-contact .contact-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-hero {
        padding: 80px 15px 80px;
    }
    
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-search-container {
        transform: translateY(25%);
    }
    
    .faq-search-box input {
        padding: 12px 15px;
    }
    
    .faq-content {
        padding: 60px 15px 30px;
    }
    
    .faq-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 30px;
    }
    
    .faq-toggle {
        right: 20px;
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
    
    .faq-contact {
        padding: 30px 20px;
    }
    
    .faq-contact h2 {
        font-size: 1.5rem;
    }
    
    .faq-contact .contact-btn {
        padding: 10px 25px;
    }
} 