/* =========================================================
   FAQ HERO
   ========================================================= */
.faq-hero {
    background: linear-gradient(135deg, #1b3a5c 0%, #2b6cb0 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.faq-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
    padding: 80px 0;
    background: #f0f7ff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1b3a5c;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f0f7ff;
}

.faq-item.open .faq-question {
    background: #e8f4fd;
    color: #2b6cb0;
}

.faq-icon {
    font-size: 0.9rem;
    color: #e8642a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: #444;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.faq-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto 60px;
}

.faq-empty i {
    font-size: 4rem;
    color: #bfdbf7;
    margin-bottom: 20px;
}

.faq-empty h2 {
    font-size: 1.8rem;
    color: #1b3a5c;
    margin-bottom: 12px;
}

.faq-empty p {
    color: #666;
    margin-bottom: 30px;
}

/* =========================================================
   CTA
   ========================================================= */
.faq-cta {
    text-align: center;
    padding-top: 20px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.faq-contact-btn {
    display: inline-block;
    background: #e8642a;
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.faq-contact-btn:hover {
    background: #c4521f;
    color: white;
    transform: translateY(-2px);
}

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

    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-section {
        padding: 50px 15px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

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

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

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}
