/* ==================================
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%;
    opacity:0;
    visibility:hidden;
    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;
    opacity:1;
    visibility:visible;
    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;
    }
}

/* ==================================
FLOATING LANGUAGE SWITCHER
================================== */

.floating-language{
    position:fixed;
    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #fc3a13,
        #e13511
    );

    color:#fff;
    font-size:24px;

    cursor:pointer;

    z-index:99999;

    box-shadow:
        0 10px 30px rgba(225,53,17,.35),
        0 5px 15px rgba(0,0,0,.15);

    transition:all .3s ease;
}

.floating-language:hover{
    transform:translateY(-5px) scale(1.05);
}

/* ==================================
DROPDOWN
================================== */

.language-dropdown{
    position:absolute;

    right:0;
    bottom:75px;

    width:220px;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:16px;

    padding:15px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:all .3s ease;
}

/* SHOW DROPDOWN */

.floating-language:hover .language-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ==================================
GOOGLE TRANSLATE CLEANUP
================================== */

.goog-te-gadget{
    font-family:inherit !important;
    color:#333 !important;
}

.goog-te-gadget-simple{
    background:#fff !important;
    border:1px solid #e5e5e5 !important;

    padding:10px 14px !important;

    border-radius:10px !important;

    width:100% !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
}

.goog-te-menu-value{
    color:#333 !important;
    font-size:14px !important;
    font-weight:600 !important;
}

.goog-te-gadget img{
    display:none !important;
}

/* HIDE GOOGLE TOP BAR */

.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

body{
    top:0 !important;
}

/* ==================================
MOBILE
================================== */

@media(max-width:767px){

    .floating-language{
        width:52px;
        height:52px;
        font-size:20px;

        right:15px;
        bottom:15px;
    }

    .language-dropdown{
        width:200px;
    }

}
/* Hide Google Translate Top Banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hide Google Translate Toolbar */
.goog-te-gadget-icon {
    display: none !important;
}

/* Remove extra space added by Google */
.skiptranslate iframe {
    display: none !important;
}

body {
    position: static !important;
    min-height: 0 !important;
}
.language-icon{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.language-flag{
    position:absolute;
    bottom:-5px;
    right:-8px;

    width:22px;
    height:22px;

    border-radius:50%;
    border:2px solid #fff;

    object-fit:cover;

    box-shadow:0 2px 8px rgba(0,0,0,.15);
}
/* Hide Google Translate Hover Popup */
.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hide Translate Balloon */
.goog-te-balloon-frame {
    display: none !important;
}

/* Remove yellow highlight */
font.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

/* Prevent translate popup */
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    display: none !important;
}

/* Remove Google injected highlight effect */
body {
    top: 0 !important;
}