/* IBOX444 CORE / SHARED UI STYLES
   Extracted from the existing header/footer styles and extended only with safe responsive rules.
   PHP 5.6 compatible project.
*/

/* =========================================================
   GLOBAL RESET
========================================================= */

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

.ibox444-header-wrapper,
.ibox444-header-wrapper *,
.ibox444-header-wrapper *:before,
.ibox444-header-wrapper *:after{
    box-sizing:border-box;
}

.ibox444-header-wrapper{
    width:100%;
    max-width:100%;
    margin:0 !important;
    padding:0 !important;
    position:relative;
    z-index:99990;
}


/* =========================================================
   TOP DEAL BAR
========================================================= */

.ibox444-deal-bar{
    width:100%;
    height:36px;
    min-height:36px;
    margin:0 !important;
    padding:0 !important;

    background:
        linear-gradient(
            90deg,
            #050505 0%,
            #111111 50%,
            #050505 100%
        );

    color:#fff;

    border-bottom:
        1px solid
        rgba(255,215,0,.35);

    overflow:hidden;
}

.ibox444-deal-inner{

    width:100%;
    max-width:1240px;

    height:36px;
    min-height:36px;

    margin:0 auto;
    padding:0 15px;

    display:flex;
    align-items:center;

    gap:13px;

    overflow:hidden;
}


/* =========================================================
   DEAL TITLE
========================================================= */

.ibox444-deal-title{

    flex:0 0 auto;

    height:25px;

    padding:0 9px;

    display:flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;

    color:#ffd700;

    background:
        linear-gradient(
            90deg,
            rgba(255,215,0,.14),
            rgba(255,215,0,.03)
        );

    border-left:
        2px solid #ffd700;

    border-radius:4px;

    font-size:12px;
    font-weight:800;

    letter-spacing:.3px;

    text-transform:uppercase;
}

.ibox444-deal-title i{

    margin-right:5px;

    color:#ffd700;

    font-size:13px;

    animation:
        ibox444Bolt
        1.8s infinite;
}

@keyframes ibox444Bolt{

    0%,
    100%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.55;
        transform:scale(1.12);
    }
}


/* =========================================================
   MARQUEE
========================================================= */

.ibox444-deal-marquee{

    flex:1 1 auto;

    min-width:0;

    height:30px;

    display:flex;
    align-items:center;

    overflow:hidden;

    white-space:nowrap;

    position:relative;

    color:#f5f5f5;

    font-size:12px;

    cursor:default;
}


/* LEFT FADE */

.ibox444-deal-marquee:before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:30px;
    height:100%;

    z-index:5;

    pointer-events:none;

    background:
        linear-gradient(
            90deg,
            #080808,
            transparent
        );
}


/* RIGHT FADE */

.ibox444-deal-marquee:after{

    content:"";

    position:absolute;

    right:0;
    top:0;

    width:30px;
    height:100%;

    z-index:5;

    pointer-events:none;

    background:
        linear-gradient(
            270deg,
            #080808,
            transparent
        );
}


/* =========================================================
   ENTIRE MARQUEE MOVES AS ONE SINGLE LINE
========================================================= */

.ibox444-deal-marquee-content{

    display:inline-block;

    width:max-content;
    min-width:max-content;

    padding-left:100%;

    white-space:nowrap;

    animation:
        ibox444Marquee
        52s linear infinite;

    will-change:transform;
}


/* =========================================================
   HOVER PAUSE
========================================================= */

.ibox444-deal-marquee:hover
.ibox444-deal-marquee-content{

    animation-play-state:paused !important;
}


/* =========================================================
   MARQUEE NORMAL TEXT
========================================================= */

.ibox444-deal-text{

    color:#f1f1f1;

    font-size:12px;

    font-weight:600;

    white-space:nowrap;
}


/* =========================================================
   MARQUEE HIGHLIGHT
========================================================= */

.ibox444-deal-highlight{

    color:#ffd700;

    font-size:12px;

    font-weight:800;

    letter-spacing:.15px;

    text-shadow:
        0 0 8px
        rgba(255,215,0,.28);
}


/* =========================================================
   PRICE HIGHLIGHT
========================================================= */

.ibox444-deal-price{

    display:inline-block;

    padding:
        2px 7px;

    color:#111;

    background:#ffd700;

    border-radius:4px;

    font-size:12px;

    font-weight:900;

    box-shadow:
        0 0 10px
        rgba(255,215,0,.25);
}


/* =========================================================
   SEPARATOR
========================================================= */

.ibox444-deal-separator{

    display:inline-block;

    margin:
        0 14px;

    color:#ffd700;

    font-size:12px;

    font-weight:900;
}


/* =========================================================
   MARQUEE ANIMATION
========================================================= */

@keyframes ibox444Marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.ibox444-deal-social{

    flex:0 0 auto;

    display:flex;

    align-items:center;

    gap:6px;
}

.ibox444-deal-social a{

    width:25px;
    height:25px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#171717;

    color:#fff;

    text-decoration:none !important;

    font-size:10px;

    border:
        1px solid
        rgba(255,255,255,.08);

    transition:all .25s ease;
}

.ibox444-deal-social a:hover{

    background:#ffd700;

    color:#080808;

    border-color:#ffd700;

    transform:
        translateY(-2px)
        scale(1.05);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.ibox444-main-header{

    position:relative;

    width:100%;
    max-width:100%;

    height:78px;
    min-height:78px;

    margin:0 !important;
    padding:0 !important;

    background:
        linear-gradient(
            135deg,
            #070707 0%,
            #111111 55%,
            #080808 100%
        );

    border-bottom:
        1px solid
        rgba(255,215,0,.35);

    box-shadow:
        0 4px 18px
        rgba(0,0,0,.35);

    z-index:99999;
}


/* =========================================================
   FIXED ON SCROLL
========================================================= */

.ibox444-main-header.ibox444-is-fixed{

    position:fixed !important;

    top:0 !important;
    left:0 !important;

    width:100% !important;
    max-width:100% !important;

    height:78px;
    min-height:78px;

    z-index:999999;

    box-shadow:
        0 8px 30px
        rgba(0,0,0,.65);
}


/* =========================================================
   SPACER
========================================================= */

.ibox444-header-spacer{

    display:none;

    width:100%;
    height:0;

    margin:0 !important;
    padding:0 !important;
}


/* =========================================================
   HEADER INNER
========================================================= */

.ibox444-header-inner{

    width:100%;
    max-width:1240px;

    height:78px;
    min-height:78px;

    margin:0 auto;

    padding:
        6px 22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:12px;

    position:relative;
}


/* =========================================================
   LOGO
========================================================= */

.ibox444-logo{

    flex:0 0 auto;

    display:flex;

    align-items:center;

    width:auto;
    max-width:190px;

    margin:0;
    padding:0;

    text-decoration:none !important;
}

.ibox444-logo img{

    display:block;

    width:auto;

    max-width:175px;

    max-height:62px;

    height:auto;

    margin:0;
    padding:0;

    object-fit:contain;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.ibox444-logo:hover img{

    transform:scale(1.025);

    filter:
        drop-shadow(
            0 0 7px
            rgba(255,215,0,.35)
        );
}


/* =========================================================
   RIGHT HEADER
========================================================= */

.ibox444-header-right{

    flex:1 1 auto;

    min-width:0;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:10px;

    margin:0;
    padding:0;
}


/* =========================================================
   DESKTOP ACTIONS
========================================================= */

.ibox444-header-actions{

    display:flex;

    align-items:center;

    gap:6px;

    flex:0 0 auto;
}

.ibox444-action{

    min-height:40px;

    padding:
        0 11px;

    border-radius:7px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    text-decoration:none !important;

    font-size:12px;

    font-weight:700;

    transition:all .25s ease;
}

.ibox444-action i{

    margin-right:5px;

    font-size:13px;
}

.ibox444-call-btn{

    color:#fff !important;

    background:#171717;

    border:
        1px solid
        rgba(255,255,255,.16);
}

.ibox444-call-btn:hover{

    color:#080808 !important;

    background:#ffd700;

    border-color:#ffd700;

    transform:translateY(-2px);
}

.ibox444-whatsapp-btn{

    color:#fff !important;

    background:#171717;

    border:
        1px solid
        rgba(255,255,255,.16);
}

.ibox444-whatsapp-btn:hover{

    color:#fff !important;

    background:#128c7e;

    border-color:#128c7e;

    transform:translateY(-2px);
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.ibox444-desktop-nav{

    flex:0 1 auto;

    min-width:0;

    display:block;

    /*
       MENU SLIGHTLY LEFT
    */

    margin-right:32px;
}

.ibox444-desktop-nav > ul{

    margin:0;
    padding:0;

    list-style:none;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:1px;
}

.ibox444-desktop-nav > ul > li{

    position:relative;

    flex:0 0 auto;
}

.ibox444-desktop-nav > ul > li > a{

    min-height:43px;

    padding:
        0 9px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff !important;

    background:transparent;

    border-radius:6px;

    font-size:14px;

    font-weight:700;

    line-height:1;

    text-decoration:none !important;

    white-space:nowrap;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.ibox444-desktop-nav > ul > li > a:hover{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.09);

    transform:translateY(-1px);
}

.ibox444-desktop-nav > ul > li.active > a,
.ibox444-desktop-nav > ul > li.current-menu-item > a{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.12);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.ibox444-desktop-nav
.menu-item-has-children > a:after{

    content:"\f107";

    font-family:"FontAwesome";

    margin-left:6px;

    color:#ffd700;

    font-size:11px;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.ibox444-desktop-nav .sub-menu{

    position:absolute;

    top:calc(100% + 4px);

    left:0;

    width:275px;

    max-width:
        calc(100vw - 25px);

    max-height:
        calc(100vh - 105px);

    overflow-x:hidden;

    overflow-y:auto;

    margin:0;

    padding:7px;

    list-style:none;

    background:
        linear-gradient(
            145deg,
            #080808,
            #181818
        );

    border:
        1px solid
        rgba(255,215,0,.45);

    border-radius:9px;

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.70);

    opacity:0;

    visibility:hidden;

    transform:
        translateY(7px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    z-index:9999999;
}


/* =========================================================
   PAGES DROPDOWN STAY INSIDE SCREEN
========================================================= */

.ibox444-desktop-nav
> ul
> li:nth-last-child(2)
> .sub-menu{

    left:auto;

    right:0;
}


/* =========================================================
   DROPDOWN SHOW
========================================================= */

.ibox444-desktop-nav
li:hover > .sub-menu{

    opacity:1;

    visibility:visible;

    transform:
        translateY(0);
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.ibox444-desktop-nav
.sub-menu::-webkit-scrollbar{

    width:5px;
}

.ibox444-desktop-nav
.sub-menu::-webkit-scrollbar-track{

    background:#101010;
}

.ibox444-desktop-nav
.sub-menu::-webkit-scrollbar-thumb{

    background:#ffd700;

    border-radius:10px;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.ibox444-desktop-nav .sub-menu li{

    width:100%;

    margin:0;
    padding:0;
}

.ibox444-desktop-nav
.sub-menu li a{

    display:block;

    width:100%;

    padding:
        9px 10px;

    border-radius:6px;

    color:#e8e8e8 !important;

    background:transparent;

    font-size:12px;

    font-weight:600;

    line-height:1.4;

    text-decoration:none !important;

    overflow-wrap:anywhere;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.ibox444-desktop-nav
.sub-menu li a:hover{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.10);

    padding-left:15px;
}

.ibox444-desktop-nav
.sub-menu li.active > a,
.ibox444-desktop-nav
.sub-menu li.current-menu-item > a,
.ibox444-desktop-nav
.sub-menu li.current_page_item > a{

    color:#ffd700 !important;

    background:
        linear-gradient(
            90deg,
            rgba(255,215,0,.16),
            rgba(255,215,0,.04)
        );

    border-left:
        2px solid #ffd700;

    padding-left:13px;
}


/* =========================================================
   MOBILE ACTIONS
========================================================= */

.ibox444-mobile-actions{

    display:none;

    flex:0 0 auto;

    align-items:center;

    gap:6px;
}

.ibox444-mobile-icon{

    width:40px;
    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff !important;

    background:
        linear-gradient(
            145deg,
            #191919,
            #080808
        );

    border:
        1px solid
        rgba(255,215,0,.30);

    text-decoration:none !important;

    font-size:15px;

    box-shadow:
        0 4px 12px
        rgba(0,0,0,.30);

    transition:all .25s ease;
}

.ibox444-mobile-icon:hover{

    color:#ffd700 !important;

    border-color:#ffd700;

    transform:translateY(-2px);
}

.ibox444-mobile-whatsapp:hover{

    color:#fff !important;

    background:#128c7e;

    border-color:#128c7e;
}


/* =========================================================
   HAMBURGER
========================================================= */

.ibox444-menu-toggle{

    width:41px;
    height:41px;

    padding:0;

    border-radius:50%;

    border:
        1px solid #ffd700;

    color:#ffd700;

    background:
        linear-gradient(
            145deg,
            #1c1c1c,
            #080808
        );

    display:flex;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    outline:none;

    box-shadow:
        0 4px 15px
        rgba(255,215,0,.12);

    transition:all .25s ease;
}

.ibox444-menu-toggle:hover,
.ibox444-menu-toggle.is-active{

    color:#080808;

    background:#ffd700;

    border-color:#ffd700;
}

.ibox444-menu-toggle i{

    font-size:16px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ibox444-mobile-menu{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100vw;
    max-width:100vw;

    right:auto;

    margin:0 !important;
    padding:0 !important;

    background:
        linear-gradient(
            145deg,
            rgba(7,7,7,.99),
            rgba(18,18,18,.99)
        );

    border-top:
        1px solid
        rgba(255,215,0,.35);

    border-bottom:
        1px solid
        rgba(255,215,0,.25);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.65);

    max-height:
        calc(100vh - 60px);

    overflow-x:hidden;

    overflow-y:auto;

    -webkit-overflow-scrolling:touch;

    z-index:999998;
}

.ibox444-mobile-menu.is-open{

    display:block;

    animation:
        ibox444MobileOpen
        .22s ease;
}

@keyframes ibox444MobileOpen{

    from{
        opacity:0;
        transform:translateY(-7px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* =========================================================
   MOBILE INNER
========================================================= */

.ibox444-mobile-menu-inner{

    width:100%;
    max-width:100%;


    margin:0;

    padding:
        9px 10px 13px;

    overflow:hidden;
}


/* =========================================================
   MOBILE MAIN LINKS
========================================================= */

.ibox444-mobile-link,
.ibox444-mobile-parent{

    width:100%;
    max-width:100%;

    min-height:45px;

    margin:2px 0;

    padding:
        0 12px;

    border:0;

    border-radius:7px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    color:#f1f1f1 !important;

    background:transparent;

    font-size:14px;

    font-weight:700;

    line-height:1.3;

    text-decoration:none !important;

    text-align:left;

    cursor:pointer;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.ibox444-mobile-link:hover,
.ibox444-mobile-parent:hover{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.08);

    padding-left:16px;
}

.ibox444-mobile-link.active,
.ibox444-mobile-link.current,
.ibox444-mobile-parent.is-open{

    color:#ffd700 !important;

    background:
        linear-gradient(
            90deg,
            rgba(255,215,0,.14),
            rgba(255,215,0,.04)
        );

    border-left:
        2px solid #ffd700;

    padding-left:14px;
}

.ibox444-mobile-parent > i{

    color:#ffd700;

    font-size:13px;

    transition:
        transform .2s ease;
}

.ibox444-mobile-parent.is-open > i{

    transform:
        rotate(180deg);
}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.ibox444-mobile-submenu{

    display:none;

    width:100%;
    max-width:100%;

    padding:
        3px 0 5px 7px;

    margin:
        0 0 3px 5px;

    border-left:
        1px solid
        rgba(255,215,0,.20);

    overflow:hidden;
}

.ibox444-mobile-submenu.is-open{

    display:block;

    animation:
        ibox444SubOpen
        .18s ease;
}

@keyframes ibox444SubOpen{

    from{
        opacity:0;
        transform:translateY(-4px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.ibox444-mobile-submenu a{

    display:block;

    width:100%;
    max-width:100%;

    min-height:40px;

    padding:
        8px 9px;

    margin:2px 0;

    border-radius:6px;

    color:#d9d9d9 !important;

    background:transparent;

    font-size:12px;

    font-weight:600;

    line-height:1.4;

    text-decoration:none !important;

    overflow-wrap:anywhere;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.ibox444-mobile-submenu a:hover{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.08);

    padding-left:14px;
}

.ibox444-mobile-submenu a.active,
.ibox444-mobile-submenu a.current{

    color:#ffd700 !important;

    background:
        rgba(255,215,0,.12);

    border-left:
        2px solid #ffd700;

    padding-left:12px;
}


/* =========================================================
   MOBILE CONTACT
========================================================= */

.ibox444-mobile-contact{

    width:100%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:7px;

    margin-top:8px;

    padding-top:9px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.ibox444-mobile-contact a{

    min-height:42px;

    border-radius:7px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

    text-decoration:none !important;
}

.ibox444-mobile-contact
.mobile-call{

    color:#111 !important;

    background:#ffd700;
}

.ibox444-mobile-contact
.mobile-wa{

    color:#fff !important;

    background:#128c7e;
}


/* =========================================================
   DESKTOP
========================================================= */

@media(min-width:992px){

    .ibox444-desktop-nav{
        display:block;
    }

    .ibox444-header-actions{
        display:flex;
    }

    .ibox444-mobile-actions{
        display:none;
    }

    .ibox444-mobile-menu{
        display:none !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

    .ibox444-deal-social{
        display:none;
    }

    .ibox444-deal-inner{

        padding:
            0 12px;

        gap:9px;
    }

    .ibox444-main-header{

        height:65px;
        min-height:65px;
    }

    .ibox444-header-inner{

        height:65px;
        min-height:65px;

        padding:
            6px 12px;

        gap:8px;
    }

    .ibox444-logo{

        max-width:160px;

        min-width:0;
    }

    .ibox444-logo img{

        max-width:145px;

        max-height:51px;
    }

    .ibox444-desktop-nav,
    .ibox444-header-actions{

        display:none;
    }

    .ibox444-mobile-actions{

        display:flex;
    }

    .ibox444-main-header.ibox444-is-fixed{

        height:65px;
        min-height:65px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    .ibox444-deal-bar{

        height:30px;
        min-height:30px;
    }

    .ibox444-deal-inner{

        height:30px;
        min-height:30px;

        padding:
            0 9px;

        gap:7px;
    }

    .ibox444-deal-title{

        height:23px;

        padding:
            0 7px;

        font-size:9px;
    }

    .ibox444-deal-title i{

        font-size:10px;
    }

    .ibox444-deal-marquee{

        height:27px;

        font-size:11px;
    }

    .ibox444-deal-text,
    .ibox444-deal-highlight,
    .ibox444-deal-price{

        font-size:11px;
    }

    .ibox444-deal-separator{

        margin:
            0 9px;

        font-size:11px;
    }

    .ibox444-main-header{

        height:61px;
        min-height:61px;
    }

    .ibox444-header-inner{

        height:61px;
        min-height:61px;

        padding:
            6px 9px;
    }

    .ibox444-logo{

        max-width:135px;
    }

    .ibox444-logo img{

        max-width:125px;

        max-height:46px;
    }

    .ibox444-mobile-actions{

        gap:5px;
    }

    .ibox444-mobile-icon{

        width:36px;
        height:36px;

        font-size:14px;
    }

    .ibox444-menu-toggle{

        width:38px;
        height:38px;
    }

    .ibox444-main-header.ibox444-is-fixed{

        height:61px;
        min-height:61px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media(max-width:380px){

    .ibox444-logo img{

        max-width:112px;
    }

    .ibox444-mobile-icon{

        width:34px;
        height:34px;

        font-size:13px;
    }

    .ibox444-menu-toggle{

        width:36px;
        height:36px;
    }

    .ibox444-header-inner{

        padding-left:7px;
        padding-right:7px;
    }
}


/* =========================================================
   CONTACT POPUP
========================================================= */

.ibox444-popup-overlay{

    display:none;

    position:fixed;

    inset:0;

    width:100vw;
    height:100vh;

    padding:15px;

    background:
        rgba(0,0,0,.78);

    z-index:9999999;

    overflow-y:auto;

    align-items:center;
    justify-content:center;
}

.ibox444-popup-overlay.show{

    display:flex;
}

.ibox444-popup{

    width:100%;

    max-width:550px;

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.60);
}

.ibox444-popup-head{

    padding:
        14px 18px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:#090909;

    color:#fff;

    border-bottom:
        2px solid #ffd700;
}

.ibox444-popup-head h3{

    margin:0;

    font-size:17px;
}

.ibox444-popup-close{

    border:0;

    background:transparent;

    color:#fff;

    font-size:24px;

    cursor:pointer;
}

.ibox444-popup-body{

    padding:18px;
}

.ibox444-popup-body label{

    display:block;

    margin-bottom:4px;

    font-size:12px;

    font-weight:700;

    color:#222;
}

.ibox444-popup-body input,
.ibox444-popup-body select,
.ibox444-popup-body textarea{

    width:100%;
    max-width:100%;

    margin-bottom:11px;

    padding:
        9px 10px;

    border:
        1px solid #ddd;

    border-radius:6px;

    font-size:12px;

    outline:none;
}

.ibox444-popup-body input:focus,
.ibox444-popup-body select:focus,
.ibox444-popup-body textarea:focus{

    border-color:#ffd700;

    box-shadow:
        0 0 0 2px
        rgba(255,215,0,.12);
}

.ibox444-popup-submit{

    width:100%;

    padding:11px;

    border:0;

    border-radius:6px;

    background:#ffd700;

    color:#111;

    font-size:12px;

    font-weight:700;

    cursor:pointer;
}

/* =========================================================
   EXISTING FOOTER STYLES
========================================================= */

.ibox444-footer,
.ibox444-footer *{box-sizing:border-box}

.ibox444-footer{
    position:relative;
    background:#070707;
    color:#fff;
    overflow:hidden;
    border-top:1px solid rgba(255,215,0,.22);
    font-family:inherit;
}

.ibox444-footer:before{
    content:"";
    position:absolute;
    left:0;right:0;top:0;
    height:4px;
    background:linear-gradient(90deg,#9b7200,#ffd700,#fff,#ffd700,#9b7200);
}

.ibox444-footer:after{
    content:"";
    position:absolute;
    width:420px;height:420px;
    right:-220px;top:-210px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,215,0,.09),transparent 68%);
    pointer-events:none;
}

.ibox444-footer .footer-top{
    position:relative;
    padding:58px 0 35px;
    background:
        radial-gradient(circle at 8% 15%,rgba(255,215,0,.08),transparent 27%),
        radial-gradient(circle at 92% 85%,rgba(255,255,255,.045),transparent 25%),
        #070707;
}

.ibox444-footer .footer-grid{
    display:grid;
    grid-template-columns:1.25fr 1fr 1.15fr 1fr;
    gap:26px;
    align-items:stretch;
}

.ibox444-footer .footer-card{
    min-width:0;
    height:100%;
    padding:24px 21px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:16px;
    background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,215,0,.018));
    box-shadow:0 14px 35px rgba(0,0,0,.22);
}

.ibox444-footer .footer-card:hover{
    border-color:rgba(255,215,0,.22);
    transform:translateY(-2px);
    transition:.25s ease;
}

.ibox444-footer .footer-title{
    position:relative;
    margin:0 0 20px;
    padding-bottom:12px;
    color:#fff;
    font-size:18px;
    line-height:1.35;
    font-weight:800;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.ibox444-footer .footer-title:after{
    content:"";
    position:absolute;
    left:0;bottom:0;
    width:48px;height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,#ffd700,#c0c0c0);
}

.ibox444-footer .footer-about{
    color:#cfcfcf;
    font-size:14.5px;
    line-height:1.78;
    margin:0 0 12px;
}

.ibox444-footer .brand-highlight{color:#ffd700;font-weight:800}

.ibox444-footer .footer-tagline{
    display:inline-block;
    margin-top:3px;
    padding:7px 11px;
    border-radius:20px;
    color:#ffd700;
    border:1px solid rgba(255,215,0,.18);
    background:rgba(255,215,0,.055);
    font-size:12px;
    font-weight:700;
}

.ibox444-footer .footer-nav-list{
    list-style:none;
    padding:0;margin:0;
}

.ibox444-footer .footer-nav-list li{margin:0 0 8px}

.ibox444-footer .footer-nav-list li a{
    position:relative;
    display:block;
    padding:8px 10px 8px 25px;
    border-radius:8px;
    color:#cfcfcf;
    text-decoration:none;
    font-size:14px;
    line-height:1.4;
    transition:.22s ease;
}

.ibox444-footer .footer-nav-list li a:before{
    content:"›";
    position:absolute;
    left:9px;top:5px;
    color:#ffd700;
    font-size:19px;
    font-weight:800;
}

.ibox444-footer .footer-nav-list li a:hover{
    color:#ffd700;
    background:rgba(255,215,0,.055);
    padding-left:29px;
}

.ibox444-footer .contact-box{
    display:flex;
    flex-direction:column;
    min-width:0;
    height:100%;
}

.ibox444-footer .contact-company{
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin-bottom:10px;
}

.ibox444-footer .contact-address{
    color:#bcbcbc;
    font-size:14px;
    line-height:1.7;
    margin-bottom:14px;
}

.ibox444-footer .contact-label{
    display:block;
    color:#888;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.7px;
    margin:8px 0 3px;
}

.ibox444-footer .contact-link{
    display:block;
    width:100%;
    color:#ffd700!important;
    font-size:14px;
    font-weight:700;
    line-height:1.5;
    text-decoration:none!important;
    word-break:break-word;
    transition:.2s ease;
}

.ibox444-footer .contact-link:hover{color:#fff!important}

.ibox444-footer .action-row{
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    gap:9px;
    width:100%;
    margin-top:10px;
}

.ibox444-footer .facebook-btn,
.ibox444-footer .whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:1 1 150px;
    min-width:0;
    min-height:42px;
    padding:10px 13px;
    border-radius:11px;
    color:#fff!important;
    text-decoration:none!important;
    font-size:13px;
    font-weight:800;
    line-height:1.2;
    transition:.22s ease;
}

.ibox444-footer .facebook-btn{
    background:#1877f2;
    border:1px solid rgba(255,255,255,.12);
}

.ibox444-footer .whatsapp-btn{
    background:#20b95b;
    border:1px solid rgba(255,255,255,.12);
}

.ibox444-footer .facebook-btn:hover,
.ibox444-footer .whatsapp-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.28);
}

.ibox444-footer .social-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    height:100%;
}

.ibox444-footer .social-card p{
    color:#c7c7c7;
    font-size:13px;
    line-height:1.7;
    margin:0 0 14px;
}

.ibox444-footer .social-card .action-row{
    margin-top:16px;
    width:100%;
}

.ibox444-footer .visitor-box{
    margin-top:16px;
    width:100%;
    flex:0 0 auto;
    padding:13px 14px;
    border-radius:12px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,215,0,.12);
}

.ibox444-footer .visitor-label{
    display:block;
    color:#929292;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:6px;
}

.ibox444-footer .visitor-number{
    display:inline-block;
    min-width:58px;
    padding:4px 12px;
    text-align:center;
    border-radius:20px;
    color:#00e676;
    background:rgba(0,230,118,.06);
    border:1px solid rgba(0,230,118,.22);
    font-size:18px;
    line-height:1.2;
}

.ibox444-footer .footer-bottom{
    position:relative;
    background:#020202;
    border-top:1px solid rgba(255,255,255,.08);
    padding:17px 0;
}

.ibox444-footer .footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.ibox444-footer .copyright-txt{
    color:#999;
    font-size:12px;
    line-height:1.6;
}

.ibox444-footer .copyright-txt a{
    color:#ffd700!important;
    text-decoration:none!important;
}

.ibox444-footer .footer-policy-nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    flex-wrap:wrap;
    row-gap:7px;
}

.ibox444-footer .footer-policy-nav a{
    color:#aaa;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    line-height:1.3;
    padding:0 10px;
    border-right:1px solid rgba(255,255,255,.15);
    transition:.2s ease;
}

.ibox444-footer .footer-policy-nav a:hover{color:#ffd700}
.ibox444-footer .footer-policy-nav a:first-child{padding-left:0}
.ibox444-footer .footer-policy-nav a:last-child{padding-right:0;border-right:0}

@media(max-width:1199px){
    .ibox444-footer .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }
}

@media(max-width:767px){
    .ibox444-footer .footer-top{padding:36px 0 20px}
    .ibox444-footer .footer-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
    .ibox444-footer .footer-card{
        width:100%;
        min-width:0;
    }
    .ibox444-footer .footer-card{
        padding:20px 17px;
        border-radius:13px;
    }
    .ibox444-footer .footer-title{
        font-size:17px;
        margin-bottom:16px;
    }
    .ibox444-footer .footer-about{font-size:14px}
    .ibox444-footer .footer-nav-list li{margin-bottom:5px}
    .ibox444-footer .footer-nav-list li a{padding-top:7px;padding-bottom:7px}
    .ibox444-footer .action-row{gap:7px}
    .ibox444-footer .facebook-btn,
    .ibox444-footer .whatsapp-btn{
        flex:1 1 145px;
        min-width:0;
        min-height:43px;
    }
    .ibox444-footer .visitor-box{
        margin-top:14px;
    }
    .ibox444-footer .footer-bottom{padding:15px 0}
    .ibox444-footer .footer-bottom-inner{
        display:block;
        text-align:center;
    }
    .ibox444-footer .copyright-txt{text-align:center}
    .ibox444-footer .footer-policy-nav{
        justify-content:center;
        margin-top:11px;
    }
    .ibox444-footer .footer-policy-nav a{
        margin-bottom:5px;
        padding:0 8px;
    }
}

@media(max-width:380px){
    .ibox444-footer .footer-card{padding:18px 14px}
    .ibox444-footer .footer-policy-nav a{font-size:10px;padding:0 6px}
    .ibox444-footer .facebook-btn,
    .ibox444-footer .whatsapp-btn{
        flex:1 1 100%;
        width:100%;
    }
    .ibox444-footer .profile-copy strong{font-size:13px}
    .ibox444-footer .profile-copy span{font-size:10px}
}

.ibox444-footer .contact-link{
    position:relative;
    margin:4px 0;
    padding:10px 12px 10px 40px;
    border:1px solid rgba(255,215,0,.13);
    border-radius:10px;
    background:rgba(255,215,0,.035);
}
.ibox444-footer .contact-link:before{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    text-align:center;
    font-size:15px;
}
.ibox444-footer a[href^="tel:"].contact-link:before{content:"☎";}
.ibox444-footer a[href^="mailto:"].contact-link:before{content:"✉";}
.ibox444-footer .contact-link:hover{
    background:rgba(255,215,0,.08);
    border-color:rgba(255,215,0,.3);
    transform:translateX(2px);
}

.ibox444-footer .profile-btn{
    display:flex;
    align-items:center;
    gap:11px;
    width:100%;
    margin-top:16px;
    padding:10px 12px;
    border-radius:12px;
    border:1px solid rgba(255,215,0,.28);
    background:linear-gradient(135deg,rgba(255,215,0,.12),rgba(255,255,255,.045));
    color:#fff!important;
    text-decoration:none!important;
    transition:.25s ease;
}
.ibox444-footer .profile-btn:hover{
    transform:translateY(-2px);
    border-color:rgba(255,215,0,.55);
    box-shadow:0 9px 22px rgba(0,0,0,.28);
}
.ibox444-footer .profile-avatar{
    flex:0 0 43px;
    width:43px;
    height:43px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ffd700,#b8860b);
    color:#080808;
    font-weight:900;
    font-size:16px;
    border:2px solid rgba(255,255,255,.8);
}
.ibox444-footer .profile-copy{
    min-width:0;
    line-height:1.3;
}
.ibox444-footer .profile-copy strong{
    display:block;
    color:#fff;
    font-size:14px;
}
.ibox444-footer .profile-copy span{
    display:block;
    color:#bcbcbc;
    font-size:11px;
    margin-top:2px;
}

/* =========================================================
   SAFE GLOBAL RESPONSIVE / ACCESSIBILITY LAYER
   Deliberately limited so the existing page layouts and theme
   components keep their original visual behavior.
========================================================= */

html{
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
    scroll-behavior:smooth;
}

*,*::before,*::after{
    box-sizing:border-box;
}

img,svg,video,canvas{
    max-width:100%;
}

img{
    height:auto;
}

iframe{
    max-width:100%;
    border:0;
}

input,select,textarea,button{
    max-width:100%;
}

textarea{
    resize:vertical;
}

.ibox444-visually-hidden{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
}

.table-responsive{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

@media (max-width:767px){
    body{
        min-width:0 !important;
    }

    pre,code{
        max-width:100%;
        overflow-x:auto;
    }
}

@media (prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }
}
