.main-header {
    background: var(--primary-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 32px;
}

/* DESKTOP NAV */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 5px;
}

.main-nav ul li a {
    color: #FFFFFFBF !important;
   

    text-decoration: none;
    font-size: 14px;
    Line-height: 24px;
    text-transform: uppercase;
}

.main-nav ul li.active a {
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
}

/* LANGUAGE RIGHT */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.lang-switch img {
    height: 22px;
}

/* HAMBURGER */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: #fff;
}

/* SLIDE MENU */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: var(--primary-bg);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 2000;
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    height: 30px;
}

.close-btn {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE MENU UL */
.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* RESPONSIVE RULES */
@media (max-width: 991px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .lang-switch {
        order: 3;
    }

    .header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .mobile-menu-btn {
        justify-self: start;
    }

    .logo {
        justify-self: center;
    }

    .lang-switch {
        justify-self: end;
    }
}












/* ============================
   FOOTER WRAPPER
===============================*/
.halal-footer {
    background: #000;
    padding: 80px 0 40px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ============================
   ABOUT COLUMN
===============================*/
.footer-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFFBF;
    max-width: 320px;
    margin-bottom: 25px;
    font-family: 'Archivo', sans-serif;
}

.footer-contact {
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFFBF !important;
    font-family: 'Archivo', sans-serif;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    font-size: 18px;
    color: #fff !important;
}
.footer-contact a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.footer-subtitle {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Heading Standard', sans-serif;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 14px;
    font-size: 17px;
    font-family: 'Archivo', sans-serif;
    line-height: 26px;
    color: #FFFFFFBF;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links ul li:hover {
    color: white;
}

.footer-links ul li a {
    color: #FFFFFFBF;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links i.fa-caret-right {
    font-size: 12px;
    color: #fff;
}

.fa-caret-right {
    color: #fff !important;
}


.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}


@media (max-width: 991px) {
    .footer-title { font-size: 32px; }
    .footer-subtitle { font-size: 22px; }

    .footer-links ul li {
        gap: 10px;
    }

    .footer-contact {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .footer-about {
        margin-bottom: 40px;
        text-align: left;
    }

    .footer-links {
        margin-bottom: 40px;
    }
}

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













.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
}

.language-switcher,
.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.language-switcher {
    background: white;
    color: #000000;
}

.language-switcher .flag-icon {
    width: 20px;
    height: auto;
    margin-right: 6px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button img {
    margin-right: 8px;
}

.whatsapp-label {
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 576px) {
     .floating-buttons {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        top: auto !important;
    }
    
    .language-switcher {
        max-width: 110px;
        overflow: hidden;
        white-space: nowrap;
    }

    .language-switcher .flag-icon {
        width: 16px;
        margin-right: 4px;
    }

    .whatsapp-button {
        padding: 6px 8px;
        font-size: 12px;
    }

    .whatsapp-label {
        display: none;
    }
}


