* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root{
     --yellow: #f88d1c;
    --orange: #ef5d31;
    --gray: #282828;
    --light-gray: #7a7a7a;
    --black: #000000;
    --white-color: #ffffff;
    --secondary:#FB7A24;
}




/* MAIN FOOTER */
.main-footer {
    background: var(--gray);
    color: #eee;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}

/* FIXED CENTERED GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    max-width: 90%;
    margin: auto;
}

/* ABOUT COLUMN */
.footer-about p {
    margin-top: 10px;
    color: #ccc;
    line-height: 1.6;
}

.footer-logo {
    width: 250px;
    margin-left: 0;
    margin-bottom: 12px;
}

/* COLUMN HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

/* TEXT & LINK STYLES */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* COPYRIGHT SECTION */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 12px;
    font-size: 13px;
    color: #aaa;
}




/* NAVBAR */
.muja-navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.muja-nav-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.muja-logo-img {
    height: 60px;
    width: auto;
}

/* CENTER MENU */
.muja-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
}

.muja-nav-item {
    margin: 0 18px;
    position: relative;
}

.muja-nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.muja-nav-link:hover {
    color: var(--orange);
}

.muja-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.muja-nav-link:hover::after,
.muja-nav-link.active::after {
    width: 100%;
}

.muja-nav-link.active {
    color: var(--orange);
}

/* DROPDOWN */
.muja-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
    padding: 0;
    z-index: 2000;
}

.muja-dropdown-menu li {
    width: 100%;
}

.muja-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.muja-dropdown-link:hover {
    background: #f8f9fa;
    color: var(--orange);
    padding-left: 25px;
}

.muja-dropdown-link:last-child {
    border-bottom: none;
}

.muja-dropdown:hover .muja-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.muja-dropdown-arrow {
    margin-left: 5px;
    font-size: 0.75rem;
    transition: 0.3s;
}

.muja-dropdown:hover .muja-dropdown-arrow {
    transform: rotate(180deg);
}

/* RIGHT SIDE BUTTON + HAMBURGER */
.right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGIN BUTTON */
.login-btn {
    background-color: var(--yellow);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none !important;
    color: white !important;
    font-weight: 700;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: var(--orange);
}

/* HAMBURGER */
.muja-hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    position: relative;
}

.muja-hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--gray);
    border-radius: 3px;
    left: 0;
    transition: 0.25s ease-in-out;
}

.muja-hamburger span:nth-child(1) { top: 0; }
.muja-hamburger span:nth-child(2) { top: 10px; }
.muja-hamburger span:nth-child(3) { top: 20px; }

.muja-hamburger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}
.muja-hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
}
.muja-hamburger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* MOBILE RULES */
.desktop-login {
    display: inline-block;
}

.muja-mobile-login {
    display: none;
}

@media (max-width: 768px) {

    .muja-hamburger {
        display: block;
    }

    .desktop-login {
        display: none;
    }

    .muja-mobile-login {
        display: block;
    }

    .muja-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 1500;
    }

    .muja-nav-menu.active {
        left: 0;
    }

    .muja-nav-item {
        margin: 15px 0;
    }

    /* Mobile dropdown expand */
    .muja-dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        margin-top: 10px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
    }

    .muja-nav-item.muja-dropdown.active .muja-dropdown-menu {
        display: block;
    }

    .muja-dropdown-arrow {
        transform: rotate(0deg);
    }

    .muja-nav-item.muja-dropdown.active .muja-dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .muja-logo-img {
        height: 40px;
    }
}
