/* MAIN PAGE BACKGROUND */
.halal-req-section {
    background: #EEF5FA;
    padding: 50px 0;
}

/* MAIN WRAPPER */
.halal-req-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT COLUMN (FAQ) */
.req-left {
    flex: 1;
    min-width: 350px;
}

/* FAQ BOXES */

/* FAQ BOX */
.faq-item {
    background: #ffffff;
    border-radius: 19px;
    padding: 25px 30px;
    margin-bottom: 25px;
    border: 1px solid #e5e9ee;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* QUESTION ROW */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* TITLE TEXT */
.faq-text {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

/* + ICON */
.faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s ease;
}

/* Rotate to × when open */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ANSWER HIDDEN BY DEFAULT */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: all 0.35s ease;
}

/* WHEN OPEN */
.faq-item.active .faq-answer {
    max-height: 700px;
    opacity: 1;
    padding-top: 18px;
}

.faq-answer p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-text {
        font-size: 16px;
    }
    .faq-item {
        padding: 20px;
    }
}




/* RIGHT COLUMN */
.req-right {
    width: 360px;
    min-width: 320px;
}

/* CERTIFICATE BOX */
.certificate-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.certificate-img {
    width: 100%;
    margin-bottom: 20px;
}

/* TEXT STYLES */
.guideline-title {
    color: #0B8585;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.guideline-list li {
    margin-bottom: 10px;
    line-height: 27.6px;
    font-size: 18.05px;

}

.sub-heading {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 500;
    line-height: 47px;
    color: #098E8E;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .halal-req-container {
        flex-direction: column;
    }

    .req-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .req-right {
        width: 100%;
    }


}







/* HELP BOX */
.help-box {
    background: #0B8585;   /* teal background */
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    margin-top: 25px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.12);
}

/* Title */
.help-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Description */
.help-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #E7F6F4; /* slightly lighter white */
}

/* Button */
.help-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.help-btn:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 576px) {
    .help-box {
        padding: 25px 20px;
    }

    .help-title {
        font-size: 20px;
    }
}












 /* MAIN WRAPPER */
    .faq-wrapper {
        background: #eef4fa;
        padding: 60px 0 100px;
    }

    /* TITLE */
    .faq-main-title {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 50px;
    }

    /* GRID LAYOUT */
    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 50px;
    }

    /* LEFT SIDE */
    .faq-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* FAQ CARD */
    .faq-card {
        background: #fff;
        border-radius: 12px;
        padding: 28px 32px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        cursor: pointer;
    }

    /* HEADER */
    .faq-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-header h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        color: #000;
    }

    .faq-toggle {
        font-size: 22px;
        font-weight: 700;
        color: #00a1ad;
        transition: 0.3s ease;
    }

    /* BODY */
    .faq-body {
        margin-top: 15px;
        display: none;
    }

    .faq-body p {
        line-height: 1.7;
        color: #333;
        font-size: 15px;
    }

    /* ACTIVE STATE */
    .faq-card.active .faq-body {
        display: block;
    }

    .faq-card.active .faq-toggle {
        transform: rotate(45deg);
    }

    /* RIGHT SIDEBAR */
    .faq-toc {
        position: sticky;
        top: 120px;
        height: fit-content;
    }

    .faq-toc h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .faq-toc ul {
        list-style: none;
        padding: 0;
    }

    .faq-toc li {
        margin-bottom: 12px;
    }

    .faq-toc li a {
        color: #00a1ad;
        text-decoration: none;
        font-size: 15px;
    }

    .faq-toc li a:hover {
        text-decoration: underline;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .faq-layout {
            grid-template-columns: 1fr;
        }

        .faq-toc {
            position: relative;
            top: 0;
            padding-top: 20px;
        }
    }