/* ================= HERO SECTION ================= */
.contact-hero {
    position: relative;
    /* background: url('../images/halal-bodies.webp') center/cover no-repeat; */
    padding: 140px 5% 150px;
    text-align: center;
    color: #fff;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 161, 173, 0.78);
    z-index: 1;
}

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

.contact-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 16px;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
}


/* ================= FORM SECTION ================= */
.contact-section {
    background: #eef4fa;
    padding: 40px 5% 100px;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    padding: 50px 60px;
    width: 100%;
    max-width: 1100px;
    border-radius: 25px;
    /* margin-top: -120px; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* FORM LAYOUT */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #dbe5ef;
    background: #f5f9ff;
    font-size: 14px;
}

textarea {
    height: 160px;
    resize: none;
}

.max-chars {
    position: absolute;
    right: 8px;
    top: -2px;
    font-size: 12px;
    color: #777;
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
    background: #008b7a;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
    float: right;
}


/* ================= BOTTOM CONTACT ================= */
.contact-bottom {
    /* background: url('../images/halal-bg-2.webp') center/cover no-repeat; */
    background-color: #333;
    padding: 120px 5% 80px;
    text-align: center;
    color: #fff;
}

.contact-bottom h3 {
    font-size: 32px;
    font-weight: 700;
}

.contact-bottom p {
    max-width: 700px;
    margin: 10px auto 40px;
    font-size: 15px;
}

/* INFO ROW */
.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item i {
    font-size: 18px;
}

/* SOCIAL ICONS */
.contact-social a {
    margin: 0 10px;
    font-size: 18px;
    color: #fff;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 100px 20px 120px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 15px;
    }
}







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

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-title span {
    color: #00a1ad;
}

/* GRID LAYOUT */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
}

/* FAQ ITEM */
.faq-item {
    background: #ffffff;
    padding: 25px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    cursor: pointer;
    transition: 0.3s ease;
}

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

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

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

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

/* ANSWER */
.faq-answer {
    display: none;
    margin-top: 12px;
}

.faq-answer p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    display: block;
}

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

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





    .contact-info-item a {
    color: inherit;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: none;
}
