/*
Theme Name: TamirPlus Child
Template: hello-elementor
Version: 1.0
*/

/* =========================
   TamirPlus Header
========================= */

.tp-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e7e9ec;
    direction: rtl;
    position: relative;
    z-index: 1000;
}

.tp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 74px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* Brand */

.tp-header__brand {
    color: #0F2742;
    font-size: 23px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.tp-header__brand:hover {
    color: #D66A1F;
}

/* Navigation */

.tp-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.tp-header__nav a {
    color: #263646;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.tp-header__nav a:hover {
    color: #D66A1F;
}

/* Actions */

.tp-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-header__request,
.tp-header__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.tp-header__request {
    background: #0F2742;
    color: #ffffff;
}

.tp-header__request:hover {
    background: #091B2F;
    color: #ffffff;
}

.tp-header__call {
    background: #D66A1F;
    color: #ffffff;
}

.tp-header__call:hover {
    background: #B95515;
    color: #ffffff;
}


/* =========================
   Mobile
========================= */

@media (max-width: 850px) {

    .tp-header__inner {
        min-height: 64px;
        padding: 0 16px;
        gap: 12px;
    }

    .tp-header__brand {
        font-size: 20px;
    }

    .tp-header__nav {
        display: none;
    }

    .tp-header__request {
        display: none;
    }

    .tp-header__call {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* Mobile menu button */

.tp-menu-toggle {
    display: none !important;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.tp-menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: #0F2742;
    border-radius: 2px;
}

.tp-mobile-menu {
    display: none;
}


@media (max-width: 850px) {

    .tp-menu-toggle {
        display: block !important;
        margin-right: auto;
    }

    .tp-mobile-menu.is-open {
        display: flex;
        flex-direction: column;
        padding: 8px 16px 16px;
        background: #ffffff;
        border-top: 1px solid #e7e9ec;
    }

    .tp-mobile-menu a {
        padding: 12px 4px;
        color: #263646;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f0f1f2;
    }

    .tp-mobile-menu a:last-child {
        border-bottom: 0;
    }

    .tp-mobile-menu a:hover {
        color: #D66A1F;
    }
}



/* =========================
   TamirPlus Footer
========================= */

.tp-footer {
    direction: rtl;
    background: #0F2742;
    color: #ffffff;
    margin-top: 60px;
}

.tp-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.tp-footer strong {
    display: block;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 700;
}

.tp-footer__about p,
.tp-footer__contact p {
    margin: 0;
    max-width: 420px;
    color: #d8e0e8;
    font-size: 14px;
    line-height: 2;
}

.tp-footer__links {
    display: flex;
    flex-direction: column;
}

.tp-footer__links a,
.tp-footer__contact a {
    color: #d8e0e8;
    text-decoration: none;
    font-size: 14px;
    line-height: 2.2;
    transition: 0.2s ease;
}

.tp-footer__links a:hover,
.tp-footer__contact a:hover {
    color: #D66A1F;
}

/* Bottom */

.tp-footer__bottom {
    padding: 18px 24px;
    text-align: center;
    color: #b9c5d0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* =========================
   Footer Mobile
========================= */

@media (max-width: 700px) {

    .tp-footer {
        margin-top: 40px;
    }

    .tp-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 18px;
    }

    .tp-footer strong {
        margin-bottom: 10px;
    }

    .tp-footer__bottom {
        padding: 16px 18px;
        font-size: 12px;
    }
}