/* FAQs Page Styles */

/* FAQs Hero Section */
.faqs-hero {
    position: relative;
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 50%, #d63384 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(253, 126, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 89, 12, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem;
}

.faqs-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.faqs-icon-large {
    margin-bottom: 1.5rem;
}

.icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fd7e14, #e8590c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
    position: relative;
}

.icon-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fd7e14, #e8590c);
    z-index: -1;
    opacity: 0.3;
}

.icon-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon-inner i {
    font-size: 24px;
    color: #fd7e14;
}

.faqs-details {
    text-align: center;
}

.faqs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faqs-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FAQs Container */
.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.faqs-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(253, 126, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 126, 20, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.faqs-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #000000 !important;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #000000 !important;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: 600;
}

/* Search Section */
.search-section {
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #fd7e14;
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.1);
}

.search-input::placeholder {
    color: #6c757d;
}

/* Category Filter */
.category-filter {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(253, 126, 20, 0.1);
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.1);
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-title i {
    color: #fd7e14;
    font-size: 1.3rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #fd7e14;
    color: #fd7e14;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.2);
}

.filter-btn.active {
    background: linear-gradient(45deg, #fd7e14, #e8590c);
    border-color: #fd7e14;
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #fd7e14;
    font-size: 1.3rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(253, 126, 20, 0.1);
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(253, 126, 20, 0.05);
}

.faq-question h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-question i {
    color: #fd7e14;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.faq-answer p:first-child {
    padding-top: 1.5rem;
}

.faq-item.active .faq-question {
    background: rgba(253, 126, 20, 0.1);
    border-bottom: 1px solid rgba(253, 126, 20, 0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Support Section */
.contact-support-section {
    margin-top: 3rem;
}

.support-card {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.1), rgba(232, 89, 12, 0.05));
    border: 1px solid rgba(253, 126, 20, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fd7e14, #e8590c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3);
}

.support-icon i {
    color: white;
    font-size: 2rem;
}

.support-content {
    flex: 1;
}

.support-content h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #fd7e14, #e8590c);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e8590c, #d63384);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-hero {
        min-height: 300px;
    }
    
    .faqs-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .faqs-title {
        font-size: 2rem;
    }
    
    .faqs-subtitle {
        font-size: 1rem;
    }
    
    .faqs-container {
        padding: 1.5rem 0.75rem;
        margin-top: 2rem;
    }
    
    .category-filter {
        padding: 1.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer p:first-child {
        padding-top: 1rem;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
    }
    
    .support-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faqs-hero {
        min-height: 280px;
    }
    
    .faqs-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .faqs-title {
        font-size: 1.75rem;
    }
    
    .faqs-subtitle {
        font-size: 0.95rem;
    }
    
    .faqs-container {
        padding: 1rem 0.5rem;
        margin-top: 2rem;
    }
    
    .category-filter {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    
    .search-icon {
        left: 0.75rem;
    }
}

@media (max-width: 360px) {
    .faqs-hero {
        min-height: 260px;
    }
    
    .faqs-card {
        padding: 1.25rem;
    }
    
    .faqs-title {
        font-size: 1.5rem;
    }
    
    .faqs-subtitle {
        font-size: 0.9rem;
    }
    
    .faqs-container {
        padding: 0.75rem 0.4rem;
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
}









