/* FAQ Page Specific Styles */
/* Ensure hero image fits properly */
.faq-hero-image {
    display: block;
    width: 100%;
    max-width: 30rem;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

/* FAQ Hero */
.faq-hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-yellow), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Content */
.faq-content {
    padding: 4rem 0;
}

.faq-content .space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* FAQ Categories */
.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-category {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover,
.faq-category.active {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.1);
}

.faq-category h3 {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-category p {
    color: var(--text-gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Items */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(250, 204, 21, 0.2);
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.02));
    border: 1px solid rgba(250, 204, 21, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: rgba(250, 204, 21, 0.05);
}

.faq-question span {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-yellow);
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray-300);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: var(--text-gray-300);
    margin: 1rem 0;
    padding-left: 0;
    line-height: 1.5;
    list-style: none;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Special styling for custom bullet lists */
.faq-answer li.flex {
    padding-left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 0 3rem 0;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-subtitle {
        font-size: 1.125rem;
    }

    .faq-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .faq-question span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 4rem 0 2rem 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

.faq-answer li.flex::before {
    display: none;
}

.faq-answer h4 {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.faq-answer h4:first-child {
    margin-top: 0;
}

/* FAQ Answer Grid Content */
.faq-answer .grid {
    margin: 1.5rem 0;
}

.faq-answer .grid > div {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Search FAQ */
.faq-search {
    margin-bottom: 3rem;
    text-align: center;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.search-input::placeholder {
    color: var(--text-gray-400);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray-400);
    pointer-events: none;
}

/* FAQ Statistics */
.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(250, 204, 21, 0.2);
}

.faq-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(250, 204, 21, 0.1);
}

.faq-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    display: block;
}

.faq-stat-label {
    color: var(--text-gray-300);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact CTA */
.faq-cta {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.faq-cta h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-gray-300);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-categories {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
        line-height: 1.3;
    }
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-stat-number {
        font-size: 2rem;
    }


/* End of FAQ Styles */
