/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f8f8;
}

/* HEADER */

.header{
    width:100%;
    height:105px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:0 48px;
    position:sticky;
    top:0;
    z-index:999;

    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.92);

    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

/* ALT ÇİZGİ */

.header::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg, transparent, #f47b00, transparent);
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    flex:0 0 auto;
    position:relative;
    left:0;
}

.logo img{
    width:128px;
    height:auto;
    display:block;
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.04);
}

/* NAVBAR */

.navbar{
    flex:1 1 auto;
    display:flex;
    justify-content:center;
    margin-left:0;
    min-width:0;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:4px;
}

.menu li{
    position:relative;
}

/* MENU LINKS */

.menu > li > a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:700;
    padding:12px 14px;
    border-radius:30px;
    transition:0.3s ease;
    white-space:nowrap;
}

.menu > li > a:hover{
    background:#f3f3f3;
    color:#f47b00;
}

/* ALT ÇİZGİ HOVER */

.menu > li > a::after{
    content:"";
    position:absolute;
    left:14px;
    bottom:6px;
    width:0;
    height:2px;
    background:#f47b00;
    transition:0.3s;
}

.menu > li > a:hover::after{
    width:calc(100% - 28px);
}

/* RIGHT AREA */

.header-right{
    margin-left:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    flex:0 0 auto;
}

/* LANGUAGE SWITCHER (dropdown, CTA sağında) */

.ncr-lang-switcher{
    position:relative;
    z-index:1000;
}

.ncr-lang-toggle{
    height:42px;
    min-width:78px;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:40px;
    background:rgba(255,255,255,0.92);
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
    cursor:pointer;
    transition:0.25s ease;
}

.ncr-lang-toggle:hover,
.ncr-lang-switcher.is-open .ncr-lang-toggle{
    border-color:rgba(244,123,0,0.35);
    box-shadow:0 8px 18px rgba(244,123,0,0.12);
}

.ncr-flag-svg{
    width:24px;
    height:16px;
    border-radius:2px;
    display:block;
    box-shadow:0 0 0 1px rgba(0,0,0,0.1);
    flex-shrink:0;
    overflow:visible;
}

.ncr-lang-code{
    font-size:12px;
    font-weight:800;
    color:#222;
    letter-spacing:0.3px;
}

.ncr-lang-caret{
    width:0;
    height:0;
    border-left:4px solid transparent;
    border-right:4px solid transparent;
    border-top:5px solid #888;
    margin-left:1px;
    transition:transform 0.2s ease;
}

.ncr-lang-switcher.is-open .ncr-lang-caret{
    transform:rotate(180deg);
}

.ncr-lang-menu{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    min-width:160px;
    padding:8px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:14px;
    box-shadow:0 16px 36px rgba(0,0,0,0.14);
}

.ncr-lang-option{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:10px;
    text-decoration:none;
    color:#222;
    font-size:13px;
    font-weight:700;
    transition:0.2s ease;
}

.ncr-lang-option:hover,
.ncr-lang-option.is-active{
    background:#fff3e6;
    color:#f47b00;
}

/* HEADER INFO */

.header-info{
    height:50px;
    padding:0 18px 0 10px;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(10px);
    border:1px solid rgba(244,123,0,0.15);
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:0.35s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    text-decoration:none;
}

.header-info:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(244,123,0,0.15);
    border-color:rgba(244,123,0,0.25);
}

/* INFO ICON */

.info-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:linear-gradient(135deg, #ff7b00, #ff9f1c);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:bold;
    box-shadow:0 4px 12px rgba(255,123,0,0.22);
}

/* INFO TEXT */

.info-text{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    line-height:1.1;
}

.info-text strong{
    color:#222;
    font-size:13px;
    font-weight:800;
    letter-spacing:0.1px;
}

.info-text span{
    color:#888;
    font-size:10px;
    font-weight:600;
    margin-top:2px;
    transition:0.3s ease;
}

.header-info:hover .info-text strong{
    color:#f47b00;
}

.header-info:hover .info-text span{
    color:#555;
}

/* DROPDOWN */

.dropdown-menu{
    position:absolute;
    top:58px;
    left:0;
    width:280px;
    background:#fff;
    list-style:none;
    border-radius:18px;
    padding:12px;
    border:1px solid rgba(0,0,0,0.04);

    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:0.3s ease;

    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* DROPDOWN LINKS */

.dropdown-menu li a{
    display:block;
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:600;
    padding:13px 16px;
    border-radius:12px;
    transition:0.3s;
}

.dropdown-menu li a:hover{
    background:#fff3e6;
    color:#f47b00;
}















/* MOBILE BUTTON */

#menu-toggle{

    display:none;
}

.mobile-menu-btn{
    display:none;
}

/* ORTA EKRAN */

@media(max-width:1200px){
    .header{
        padding:0 28px;
        gap:16px;
    }

    .menu > li > a{
        font-size:13px;
        padding:11px 10px;
    }

    .menu > li > a::after{
        left:10px;
    }

    .menu > li > a:hover::after{
        width:calc(100% - 20px);
    }

    .logo img{
        width:112px;
    }
}

/* MOBIL UYUMLULUK */

@media(max-width:900px){

    .header{
        height:auto;
        min-height:90px;
        padding:15px 20px;
        flex-wrap:wrap;
        justify-content:space-between;
        gap:10px;
    }

    .logo{
        left:0;
    }

    .logo img{
        width:110px;
    }

    .mobile-menu-btn{
        display:flex;
        width:42px;
        height:42px;
        align-items:center;
        justify-content:center;
        border-radius:10px;
        background:#f47b00;
        color:#fff;
        font-size:24px;
        font-weight:bold;
        cursor:pointer;
        margin-left:auto;
    }

    .navbar{
        width:100%;
        flex:1 1 100%;
        margin-left:0;
        display:none;
        margin-top:8px;
        justify-content:stretch;
    }

    #menu-toggle:checked ~ .navbar{
        display:block;
    }

    .menu{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        background:#fff;
        padding:15px;
        border-radius:18px;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .menu > li > a{
        display:block;
        width:100%;
        padding:14px 16px;
        border-radius:12px;
        font-size:15px;
    }

    .menu > li > a::after{
        display:none;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border-radius:14px;
        margin-top:8px;
        padding:8px;
        background:#fff8f0;
    }

    .dropdown:hover .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{
        font-size:14px;
        padding:12px 14px;
    }

    .header-right{
        width:auto;
        margin-left:0;
        margin-top:0;
        justify-content:flex-end;
        flex-wrap:nowrap;
        gap:10px;
        order:2;
    }

    .mobile-menu-btn{
        order:3;
    }

    .header-info{
        height:42px;
        max-width:200px;
        padding:0 12px 0 8px;
    }

    .info-text strong{
        font-size:11px;
    }

    .info-text span{
        display:none;
    }

    .ncr-lang-switcher{
        order:0;
    }

    .ncr-lang-menu{
        right:0;
        left:auto;
        transform:none;
    }
}