/* ============================================
   📘 FAQ (الأسئلة الشائعة) Section
   ============================================ */
.mk-faq-wrapper {
    background: #fff;
    padding: 100px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ---------- Title ---------- */
.mk-faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.mk-faq-title h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1f7a63;
    font-size: 28px;
    font-weight: 700;
}

.mk-faq-title img {
    height: 25px;
    opacity: 0.9;
}

/* ---------- Container ---------- */
.mk-faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* ---------- FAQ Item ---------- */
.mk-faq-item {
    background: #FBFBFB;
    border: 1px solid #f2e9dc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mk-faq-item.open {
    background: #fffefc;
    border-color: #d4b484;
}

/* ---------- Question ---------- */
.mk-faq-question {
    width: 100%;
    text-align: right;
    padding: 18px 24px;
    font-size: 17px;
    color: #6a5020;
    font-weight: 600;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.mk-faq-question::after {
    content: "\f106"; /* up chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    color: #c1a46d;
    transition: transform 0.3s ease;
}

.mk-faq-item.open .mk-faq-question::after {
    transform: translateY(-50%) rotate(0deg);
}

/* ---------- Answer ---------- */
.mk-faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #6B7280;
    line-height: 1.8;
    font-size: 15px;
}

.mk-faq-item.open .mk-faq-answer {
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .mk-faq-wrapper {
        padding: 60px 15px;
    }

    .mk-faq-title h2 {
        font-size: 16px;
    }

    .mk-faq-question {
        font-size: 12px;
        padding: 16px 20px;
    }

    .mk-faq-answer {
        font-size: 10px;
    }
}
