/* ===============================
   FAQ HERO
================================= */
.faq-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    max-width:100%;
}

.faq-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.faq-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.faq-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
    color:var(--white);
}

.faq-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===============================
   FAQ SECTION
================================= */
.faq-section {
    padding: 90px 0;
   
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ===============================
   FAQ ITEM
================================= */
.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

/* ===============================
   QUESTION
================================= */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}
button.faq-question:hover span {
    color: var(--whiite);
}
.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--very-dark-gray);
}

/* ICON */
.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: transform 0.35s ease;
}

/* ===============================
   ANSWER
================================= */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===============================
   ACTIVE STATE
================================= */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-hero {
        min-height: 340px;
    }
}