/* FAQs Page Styles
-------------------------------------------------- */

/* Hero Section Styles */
.faq-hero {
    position: relative;
    padding: 120px 0 160px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    overflow: hidden;
}

.faq-hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.faq-hero-image {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Shape Divider */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Search Container */
.search-container {
    margin-top: 2rem;
    max-width: 500px;
}

.search-container .input-group {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    overflow: hidden;
}

.search-container .form-control {
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
}

.search-container .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
}

/* FAQ Categories Section */
.faq-categories-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-tabs .nav-pills {
    gap: 10px;
    flex-wrap: wrap;
}

.faq-tabs .nav-link {
    padding: 12px 20px;
    border-radius: 50px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.faq-tabs .nav-link i {
    margin-right: 8px;
}

.faq-tabs .nav-link.active {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.faq-tabs .nav-link:not(.active):hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.tab-content {
    margin-top: 30px;
}

/* Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.accordion-button::after {
    background-size: 16px;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
}

/* Location Badges */
.location-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.location-badges .badge {
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
}

.location-badges .badge i {
    margin-right: 5px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-list li i {
    width: 20px;
    color: #0d6efd;
    margin-right: 10px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.industry-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background-color: #0d6efd;
    color: white;
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

/* Timeline Info */
.timeline-info {
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.timeline-content h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.process-step h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Product Cards */
.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.product-card h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.product-card p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

/* CTA Box */
.cta-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.cta-box h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Pricing Models */
.pricing-models {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pricing-model {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.pricing-model h6 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-model h6 i {
    margin-right: 10px;
    color: #0d6efd;
}

.pricing-model p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 20px;
    margin-right: 10px;
    color: #0d6efd;
}

/* Support Plans */
.support-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.support-plan {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.support-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-plan.featured {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.support-plan h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.support-plan ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.support-plan ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Support Channels */
.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.support-channel {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-channel i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.support-channel h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.support-channel p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

/* Training Options */
.training-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.training-option {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.training-option:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.training-option i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.training-option h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.training-option p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Security Features */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.security-feature {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.security-feature i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.security-feature h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.security-feature p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Popular Questions Section */
.popular-questions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.question-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.question-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
}
.support-plan ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.support-plan ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Support Channels */
.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.support-channel {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-channel i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.support-channel h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.support-channel p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

/* Training Options */
.training-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.training-option {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.training-option:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.training-option i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.training-option h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.training-option p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Security Features */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.security-feature {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.security-feature i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.security-feature h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.security-feature p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Popular Questions Section */
.popular-questions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.question-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.question-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.question-icon i {
    font-size: 24px;
    color: #0d6efd;
}

.question-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.question-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.question-card .btn-link {
    padding: 0;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.question-card .btn-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Still Have Questions Section */
.still-questions-section {
    padding: 80px 0;
    background-color: white;
}

.still-questions-card {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 20px;
    padding: 50px;
    color: white;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
}

.still-questions-card h2 {
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-primary:hover {
    background-color: white;
    color: #0d6efd;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .faq-hero {
        padding: 80px 0 120px;
    }
    
    .still-questions-card {
        padding: 30px;
    }
    
    .contact-buttons {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .faq-hero {
        padding: 60px 0 100px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .faq-tabs .nav-pills {
        justify-content: center;
    }
    
    .process-steps, 
    .product-cards, 
    .pricing-models, 
    .support-plans, 
    .support-channels, 
    .training-options, 
    .security-features {
        flex-direction: column;
    }
    
    .still-questions-card {
        padding: 25px;
        text-align: center;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.active {
    opacity: 1;
}

/* Tooltip Styles */
.custom-tooltip {
    position: relative;
    display: inline-block;
}

.custom-tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* 3D Card Effect */
.card-3d {
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Search Highlight Effect */
.search-highlight {
    background-color: rgba(13, 110, 253, 0.2);
    padding: 2px 0;
    border-radius: 3px;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    border-top: 4px solid #0d6efd;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid #0d6efd;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(0);
}
