/* FAQ Page Styles */

/* FAQ Category Tabs */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #475569;
}

.category-tab:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.category-tab.active {
    background: linear-gradient(135deg, #0a1172, #1e40af);
    color: white;
    border-color: transparent;
}

/* Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.faq-item.hidden {
    display: none;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.faq-question h4 {
    margin: 0;
    color: #0a1172;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0ea5e9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #0a1172, #0ea5e9);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Search Box */
.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 0;
    display: none;
}

.no-results.show {
    display: block;
}

/* Still Have Questions Section - Modern & Elegant */
.still-questions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1172 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.still-questions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

.still-questions-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.4;
}

.still-questions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.still-questions-content {
    color: white;
}

.still-questions-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.still-questions-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.still-questions-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.still-questions-title-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.still-questions-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.still-questions-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.still-questions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.still-questions-btn-primary {
    background: white;
    color: #0a1172;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.still-questions-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.3);
}

.still-questions-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.still-questions-btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

/* Right Contact Card */
.still-questions-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.contact-card-item:last-child {
    margin-bottom: 0;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card-info {
    flex: 1;
}

.contact-card-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-card-value {
    font-size: 16px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-value:hover {
    color: #60a5fa;
}

/* Responsive */
@media (max-width: 1024px) {
    .still-questions-wrapper {
        gap: 60px;
    }

    .still-questions-title {
        font-size: 38px;
    }

    .still-questions-contact-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .still-questions-section {
        padding: 80px 0;
    }

    .still-questions-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .still-questions-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 24px;
    }

    .still-questions-title {
        font-size: 32px;
    }

    .still-questions-description {
        font-size: 16px;
    }

    .still-questions-buttons {
        flex-direction: column;
    }

    .still-questions-btn {
        width: 100%;
        justify-content: center;
    }

    .still-questions-contact-card {
        padding: 30px 24px;
    }

    .contact-card-item {
        padding: 16px;
    }
}
