/* ============================================
   FAQ SECTION STYLES
   ============================================ */

/* Main Section */
.faq-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Padding Variants */
.faq-section.padding-small { 
    padding: 40px 0; 
}

.faq-section.padding-standard { 
    padding: 80px 0; 
}

.faq-section.padding-large { 
    padding: 120px 0; 
}

/* Background Layers */
.faq_background_colour {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.faq_background_colour__left {
    width: 50%;
    left: 0;
}

.faq_background_colour__right {
    width: 50%;
    right: 0;
}

.faq_background_colour__full {
    width: 100%;
}

/* Content Container */
.faq--content {
    position: relative;
    z-index: 1;
}

.faq--content--inner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.faq-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1E1E23;
}

/* FAQ Items Container */
.faq-items-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Individual FAQ Item */
.faq-item {
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    overflow: hidden;
    transition: background 0.2s ease;
}

.faq-item:hover {
    background: #ffffff;
}

/* Question Button */
.faq-question-btn {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: #1E1E23 !important;
    transition: background 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 1.125rem !important;
    font-family: 'Archia' !important;
    font-weight: 400 !important;
}

.faq-question-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq-question-btn:focus,
.faq-question-btn:active,
.faq-question-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-question-text {
    flex: 1;
}

/* Toggle Arrow Icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle-icon svg {
    width: 100%;
    height: 100%;
    display: block;
	margin: 0 !important;
}

/* Arrow Colors - Your Brand Colors */
.faq-items-wrapper[data-arrow-color="orange"] .faq-toggle-icon svg path {
    fill: #FF9B69;
}

.faq-items-wrapper[data-arrow-color="green"] .faq-toggle-icon svg path {
    fill: #326446;
}

.faq-items-wrapper[data-arrow-color="purple"] .faq-toggle-icon svg path {
    fill: #BE91FF;
}

.faq-items-wrapper[data-arrow-color="blue"] .faq-toggle-icon svg path {
    fill: #7ECDFF;
}

.faq-items-wrapper[data-arrow-color="black"] .faq-toggle-icon svg path {
    fill: #1E1E23;
}

/* Default arrow color if none specified */
.faq-toggle-icon svg path {
    fill: #BE91FF;
}

/* Rotate arrow when expanded */
.faq-question-btn[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Answer Container */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer[aria-hidden="false"] {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

/* Answer Content */
.faq-answer-content {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
	font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question-btn {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-toggle-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .faq-section-title {
        font-size: 1.75rem;
    }
    
    .faq-question-btn {
        padding: 1rem;
        font-size: 0.9375rem;
    }
}