/* -----------------------------------------------------
   FONT FACE
----------------------------------------------------- */
@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-variable.ttf") format("woff2");
	font-weight: 400;
}


@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

html,
body {
    font-family: "Inter", sans-serif !important;
}



/* -----------------------------------------------------
   ROOT VARIABLES
----------------------------------------------------- */
:root {

	--primary-bg: #098E8E;
    --white-soft: #FFFFFFBF;
    --white: #fff;
	--hh-font: "Outfit", sans-serif;
}

/* -----------------------------------------------------
   GLOBAL
----------------------------------------------------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    font-family: var(--hh-font);
    background: var(--hh-bg-cream);
    color: var(--hh-text-dark);
    margin: 0;
    padding: 0;
}






.hero-halal {
    position: relative;
    /* background-image: url(''); */
    background-color: var(--primary-bg) !important;
    background-size: cover !important;
    background-position: center;
    width: 100%;
    height: 420px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 098E8E;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;         
    display: flex;       
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
}


.hero-subtitle {
    color: #fff;
    font-size: 32px !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    color: #fff;
    font-size: 40px !important;
    line-height: 78px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-btn {
    background: #000;
    color: #fff;
    padding: 14px 38px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-halal {
        height: 380px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}










   /* Modal Styling */
    .halal-modal {
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    }

    .modal-header {
        background: #098E8E;
        color: #fff;
        padding: 18px 25px;
    }

    .modal-title {
        font-size: 22px;
        font-weight: 600;
    }

    /* Form Styling */
    .hh-form-group {
        margin-bottom: 15px;
    }

    .hh-form-group label {
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

    .hh-form-control,
    .hh-file {
        width: 100%;
        padding: 12px;
        border-radius: 6px;
        background: #f8f9fa;
        border: 1px solid #ced4da;
        transition: 0.2s;
    }

    .hh-form-control:focus {
        border-color: #098E8E;
        box-shadow: 0px 0px 4px rgba(9, 142, 142, 0.4);
    }

    .hh-apply-btn {
        width: 100%;
        padding: 12px;
        background: #098E8E;
        border: none;
        color: #fff;
        font-size: 17px;
        border-radius: 6px;
        margin-top: 10px;
        transition: 0.2s;
        cursor: pointer;
    }

    .hh-apply-btn:disabled {
        background: #7acaca;
        cursor: not-allowed;
    }

    .hh-apply-btn:hover:not(:disabled) {
        background: #066b6b;
    }

    .hh-error {
        font-size: 13px;
        margin-top: 3px;
    }

    /* Responsive Fixes */
    @media (max-width: 576px) {
        .modal-dialog {
            margin: 10px;
        }
    }


    /* ========== TWO COLUMN GRID FIX ========== */
.hh-row {
    display: flex;
    gap: 15px;
}

.hh-col {
    flex: 1;
}

/* Make it single column on mobile */
@media (max-width: 768px) {
    .hh-row {
        flex-direction: column;
    }
}

/* Make form compact */
.hh-form-group {
    margin-bottom: 10px !important;
}

.hh-row {
    gap: 10px !important;
}

.hh-col {
    flex: 1;
}


.hh-form-control,
.hh-file {
    padding: 8px 10px !important;
    font-size: 14px !important;
    height: 40px !important;
}

.hh-form-control::placeholder {
    font-size: 13px;
}

/* File input height fix */
.hh-file {
    height: 42px !important;
}


textarea.hh-form-control {
    min-height: 80px !important;
    height: auto !important;
    padding: 10px !important;
}

/* Reduce modal body padding */
.modal-body {
    padding: 20px !important;
}


@media (max-width: 768px) {
    .modal-body {
        padding: 15px !important;
    }
}












.contact-hero {
    position: relative;
   
    padding: 140px 5% 150px;
    text-align: center;
    color: #fff;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    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;
}








 /* 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: #000;
        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;
        }
    }






/* ================= 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-btn {
    background: #000;
    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;
    }
}