/* ===================================================================
   Commercial Claims FAQ Page Styles (Apple Design Concept)
   =================================================================== */

:root {
    --primary-color: #D4A574;
    --primary-color-dark: #B8945F;
    --text-primary: #1d1d1f;
    --text-secondary: #555;
    --background-color: #ffffff;
    --card-border-color: #e5e5e5;
}

/* Hero Banner */
.faq-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/f_a_q.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff !important;
}

.faq-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    color: #fff !important;
}

/* Main Content Area */
.faq-main {
    padding: 100px 0;
    background-color: var(--background-color);
}

.faq-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: left;
}

.faq-accordion {
    margin-bottom: 60px;
    border: 1px solid var(--card-border-color);
    border-radius: 18px;
    background-color: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--card-border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '';
    flex-shrink: 0;
    margin-left: 20px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
}

.faq-question.active::after {
    transform: rotate(225deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-main {
        padding: 60px 15px;
    }
    .faq-category-title {
        font-size: 2rem;
    }
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 1rem;
    }
}
