/* ==================================
HEADER
================================== */

/* =========================
HEADER BASE (GRADIENT)
========================= */
.custom-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:12000;

    /* 30% solid white + 70% fade */
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.8) 30%,
        rgba(255,255,255,0.4) 70%,
        rgba(255,255,255,0) 100%
    );

    padding:20px;
    transition:all .3s ease;
}

/* =========================
STICKY SCROLL HEADER
========================= */
.custom-header.scrolled{
    background:#ffffff !important;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:15px 20px;
}

.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==================================
LOGO
================================== */

.header-logo img{
    width:220px;
    max-width:100%;
    height:auto;
}

/* ==================================
DESKTOP NAVIGATION
================================== */

.header-nav ul{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}

.header-nav ul li a{
    text-decoration:none;
    color:#000;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.header-nav ul li a:hover{
    color:#E13511;
}

/* ==================================
CTA BUTTON
================================== */

.header-btn{
    background:#fc3a13;
    color:#fff;
    text-decoration:none;

    padding:16px 30px;

    border-radius:10px;

    font-size:15px;
    font-weight:700;

    display:inline-block;

    transition:.3s ease;
}

.header-btn:hover{
    background:#c52d0d;
    color:#fff;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* ==================================
MOBILE ACTIONS
================================== */

.mobile-actions{
    display:none;
    align-items:center;
    gap:15px;
}

/* ==================================
CALL BUTTON
================================== */

.call-btn{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#E13511;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(225,53,17,.25);
}

.call-btn:hover{
    color:#fff;
}

/* ==================================
HAMBURGER
================================== */

.menu-toggle{
    width:60px;
    height:60px;

    border:2px solid #E13511;
    border-radius:12px;

    background:#fff;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:6px;

    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;

    background:#E13511;
    border-radius:10px;
}

/* ==================================
MOBILE MENU
================================== */

.mobile-menu{
    position:fixed;

    top:90px;
    right:-100%;

    width:100%;
    max-width:100%;

    height:calc(100vh - 90px);

    background:#fff;

    padding:35px 25px;

    transition:.4s ease;

    z-index:11000;

    box-shadow:-5px 0 25px rgba(0,0,0,.08);
    pointer-events:none;
}

.mobile-menu.active{
    right:0;
    pointer-events:auto;
}

.mobile-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-menu li{
    margin-bottom:22px;
}

.mobile-menu ul li a{
    text-decoration:none;
    color:#000;

    font-size:18px;
    font-weight:600;
}

.mobile-cta{
    display:block;

    margin-top:30px;

    text-align:center;

    background:#E13511;
    color:#fff !important;

    padding:15px;

    border-radius:10px;

    font-weight:700;
    text-decoration:none;
}

/* ==================================
TABLET
================================== */

@media(max-width:1200px){

    .header-nav ul{
        gap:22px;
    }

    .header-nav ul li a{
        font-size:15px;
    }
}

/* ==================================
MOBILE
================================== */

@media(max-width:991px){
.container-fluid{
    padding-left:15px;
    padding-right:15px;
}
    .custom-header{
        padding:15px;
    }

    .header-nav,
    .header-action{
        display:none;
    }

    .header-wrapper{
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
    }

    .header-logo{
        flex:1;
        min-width:0;
    }

    .header-logo img{
        width:160px;
        max-width:100%;
        height:auto;
        display:block;
    }

    .mobile-actions{
        display:flex;
        align-items:center;
        gap:10px;
        flex-shrink:0;
        margin-left:auto;
    }

    .call-btn,
    .menu-toggle{
        width:48px;
        height:48px;
    }

    .call-btn{
        font-size:18px;
    }

    .menu-toggle span{
        width:22px;
    }
}
@media(max-width:767px){

    .header-logo img{
        width:180px;
    }

    .call-btn{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .menu-toggle{
        width:55px;
        height:55px;
    }

    .menu-toggle span{
        width:25px;
    }

    .mobile-menu{
        top:85px;
    }
}
@media(max-width:767px){

    .mobile-menu{
        top:85px;
        height:calc(100vh - 85px);
    }

}
@media(max-width:480px){

    .custom-header{
        padding:10px 12px;
    }

    .header-logo img{
        width:130px;
    }

    .mobile-actions{
        gap:8px;
    }

    .call-btn,
    .menu-toggle{
        width:44px;
        height:44px;
        position:relative;
        z-index:13000;
    }

    .call-btn{
        font-size:16px;
    }

    .menu-toggle span{
        width:20px;
        height:2px;
    }
}
.custom-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:12000;
    transition:all .3s ease;
}

.custom-header.scrolled{
    background:#fff !important;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}