/* ===== Reset & Font ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

:root {
    --c1: #5B3412;
    --c2: #A46024;
    --c3: #F48627;
    --arrow: #a46024b3;
}
::selection{
    background: #b2886b;
    color:var(--c3);
}
body {
    background: #a460240f;
}

/* ===== Navbar ===== */
.navbarH {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

.containerH {
    max-width: 1300px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-linksH {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-linksH a,
.dropbtnH {
    color: var(--c1);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

.nav-linksH a:hover,
.dropbtnH:hover {
    color: var(--c3);
}

.dropdownH {
    position: relative;
}

.arrowH {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.dropdown-contentH {
    position: absolute;
    top: 110%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    min-width: 170px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition:
        max-height 0.45s cubic-bezier(.4, 0, .2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;
    z-index: 1;
}

.dropdown-contentH a {
    display: block;
    padding: 12px;
    font-size: 16px;
    color: #333;
    width: 180px;
}

.dropdown-contentH a:hover {
    background: #f7f7f7;
}

.dropdownH:hover .dropdown-contentH,
.dropdownH.open .dropdown-contentH {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.dropdownH:hover .arrowH,
.dropdownH.open .arrowH {
    transform: rotate(180deg);
}

.menu-toggleH {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .menu-toggleH {
        display: block;
    }

    .nav-linksH {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        border-top: 1px solid var(--c1);
    }

    .nav-linksH.active {
        display: flex;
    }

    .nav-linksH a,
    .dropbtnH {
        width: 100%;
        padding: 15px;
        justify-content: space-between;
    }

    .dropdown-contentH {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid #eee;
        transform: none;
    }
}

/* Logo */
.logoH {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--c1);
}

.logoH img {
    width: 55px;
}

.logo-textH {
    display: flex;
    flex-direction: column;
}

.logo-textH .arH {
    font-size: 14.1px;
    font-weight: 700;
    color: var(--c2);
}

.logo-textH .enH {
    font-size: 15.4px;
    color: var(--c3);
}

.footer {
    background-color: var(--c1);
    color: var(--c3);
    direction: ltr;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
    min-width: 250px;
}

.footer-column p {
    color: #fff;
}

.footer-column h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--c3);
    padding-bottom: 8px;
    display: flex;
    justify-content: center;
}

.col-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.apps a {
    display: flex;
    background: var(--c3);
    color: var(--c1);
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    width: 50%;
    justify-content: center;
}

.social {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social a {
    color: var(--c3);
    font-size: 20px;
    padding: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    direction: rtl;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    display: flex;
    justify-content: center;
}

.footer-bottom {
    background-color: #4f2d14;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.bad {
    border: 2px solid;
}