/**
 * FAQ Page Styles
 */

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-hero .input-group {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-hero .input-group-text,
.faq-hero .form-control {
    border: none;
}

.faq-hero .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Navigation Section */
.faq-navigation {
    border-bottom: 1px solid #dee2e6;
}

.faq-navigation .btn-outline-purple {
    border-color: #667eea;
    color: #667eea;
}

.faq-navigation .btn-outline-purple:hover {
    background-color: #667eea;
    color: white;
}

/* Section Titles */
.faq-section .section-title {
    color: #667eea;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

.faq-section .section-title i {
    color: #764ba2;
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #667eea;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.accordion-body strong {
    color: #333;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
.btn-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

/* Contact Card */
.card.border-info {
    border-width: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-navigation {
        text-align: center;
    }

    .faq-navigation .d-flex {
        flex-direction: column;
    }

    .faq-navigation .btn-sm {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
    }

    .accordion-button {
        font-size: 0.95rem;
    }
}

/* Search highlight (for future search functionality) */
.search-highlight {
    background-color: yellow;
    font-weight: bold;
}
