
    @font-face {
        font-family: 'Nexa';
        src: url('/fonts/Web/Nexa-Regular.woff2') format('woff2'),
            url('/fonts/Web/Nexa-Regular.woff') format('woff');
        font-weight: 400;
        font-style: normal;
    }


    html,
    body {
    padding: 0;
    margin: 0;
    font-family: 'Nexa', sans-serif;
    background-color: #ffff;
    color: #343a40;
    }

    .main-container{
        padding-top: 1rem;
    }

        /* navbar new dil */

    .launge-container {
        margin: 0 1rem 1rem 1rem;
        background-color: #eaeae7;
        max-width: 100%;
        border-radius: 1rem;
        box-sizing: border-box;

        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 3rem;

          position: relative;

    }

        .launge-container::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 2rem;
            right: 2rem;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(
                90deg,
                #A7DAD7,
                #B39DDB,
                #A7DAD7
            );
        }


    .launge-sosyal-icon {
        display: flex;
        gap: 1rem;
    }

    


    .social-icon i {
        color: #333;
        font-size: 1.5rem;
        text-decoration: none;
    }

    .social-icon :hover{
        color: #B39DDB;
    }


    .launge-text {
        font-size: 1rem;
        font-weight: 500;
    }

    .language-selector {
        position: relative; /* zaten var */
        cursor: pointer;
        user-select: none;
        z-index: 100; /* üstte olsun */
    }
    .language-selected {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 1rem;
    }

    .language-selected i {
        font-size: 0.6rem;
    }

    .language-options {
        display: none;
        position: absolute;
        top: 2rem;
        left: -2rem;
        background-color: #eaeae7;
        border-radius: 1rem;
        overflow: hidden;
        padding: 1rem 2rem;
    }

    .language-options a {
        display: block;              /* ✔ inline → block */
        position: relative;
        cursor: pointer;
        transition: color 0.3s ease;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: inherit;
        text-decoration: none;
    }

    .language-options a:last-child {
        margin-bottom: 0;
    }

    .language-options a::after {
        content: "";
        position: absolute;
        bottom: -0.25rem;
        left: 0;
        right: 0;
        margin: auto;
        height: 0.5px;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .language-options a:hover::after,
    .language-options a.active::after {
        transform: scaleX(1);
    }



    /* new navbar */

    .bar-container {
        margin: 1rem;
        padding: 2rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .ust-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        width: 15rem;
        height: auto;
    }


    .ust-bar-item-continer {
        display: flex;
        gap: 1rem;
    }

    .ust-bar-item {
        font-size: 1rem;
        position: relative;
        padding-bottom: 0.2rem;
        cursor: pointer;
        text-decoration: none;
        color: #343a40;
    }


    .ust-bar-item::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.05rem;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .ust-bar-item:hover::after {
        transform: scaleX(1);
    }

    .hamburger-button-container{
        display: none;
    }


    .alt-bar-container {
        display: none; /* başlangıçta tamamen gizli */
        pointer-events: none;
        position: absolute; 
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #ffff;
        border-radius: 0 0 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem 2rem 2rem;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 10;
        box-sizing: border-box;
    }

    .alt-bar-item-sub-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .ara-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start; /* <-- BU ÇOK ÖNEMLİ */
    }

    .alt-bar-item-sub {
        font-size: 1rem;
        position: relative; /* ::after için gerekli */
        cursor: pointer;
        padding-bottom: 0.2rem; /* çizgi ile yazı arasına boşluk */
        text-decoration: none;
        color: #343a40;
    }

    .alt-bar-item-sub::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.05rem;
        background-color: #B39DDB;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .alt-bar-item-sub:hover::after {
        transform: scaleX(1);
    }


    .bar-container.active {
        background-color: #ffff;
        border-top-right-radius: 1rem;
        border-top-left-radius: 1rem;
    }

    .bar-container.active .alt-bar-container {
        opacity: 1;
        transform: translateY(0);
        display: flex; /* aktif olduğunda göster */
        pointer-events: auto;
        
    }
    
    /* Hafif buzlama için */
    body.bar-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3); /* gri ton */
        backdrop-filter: blur(0.1rem);        /* daha hafif buzlama */
        -webkit-backdrop-filter: blur(3px);
        z-index: 5;                        
        pointer-events: none;              
    }





    .mobil-bar-container{
        display: none;
    }

    .mobil-menu-container{
        display: none;
    }




    /* iletişim */
    .baslik-gorsel-container {
        max-width: 100%;
        margin: 0 1rem;
        position: relative;
        display: flex;
        overflow: hidden;
    }

    /* Görsel */
    .baslik-gorsel-img {
        width: 100%;
        height: 27.5rem;
        border-radius: 1rem;
        background-image: 
            linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url("/public/iletisim/banner.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* Başlık ve breadcrumb */
    .baslik-gorsel-context {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* ortalama */
        z-index: 1;
        text-align: center;
        color: #ffff;
    }


    /* Başlık */
    .baslik-gorsel-title {
        font-size: 4rem;
        font-weight: bold;
        letter-spacing: 0.4rem;
        line-height: 0.20;
        color: #ffff;
    }

    /* Breadcrumb linkleri */
    .breadcrumb-link {
        color: #ffff;
        text-decoration: none;
        cursor: pointer;
        font-size: 1rem;
    }

    /* Breadcrumb devre dışı */
    .breadcrumb-disabled {
        font-size: 1rem;
        color: #ffff;
    }


    
    .page-wrap {
        padding: 4rem 6rem; 
    }

    .title{
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    /* Üst: Merkez & Şube yan yana */
    .top-row {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 0.1rem solid #d9dbdb;
    }

    .info-title {
        font-size: 1.3rem;
        border-bottom: 0.1rem solid #d9dbdb;
        padding-bottom: 0.5rem;
    }

    .info-line {
        display: flex;
        align-items: center; /* ikon ve metin aynı hizada */
        gap: 1rem;
        margin-top: 1rem;
    }

    .info-line i {
        color: #B39DDB;
        font-size: 1rem; 
        background-color: #eaeae7;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 3rem;
        height: 2.5rem;
        border-radius: 0.25rem;    
        text-align: center;         
    }

    .info-line a {
        text-decoration: none;
        color: #343a40;
        font-size: 1rem;
    }

    .info-line p {
        color: #343a40;
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
    }

    .info-line a:hover {
        color:#B39DDB;
    }



    

    /* Alt: Haritalar yan yana */
    .maps-row {
        display: flex;
        flex-wrap: wrap;
    }

    .map {
        flex: 1;
        min-height: 22rem;
        border-radius: 1rem;
        overflow: hidden;
        border: 0.05rem solid #d9dbdb;
     
    }

    .map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }




    /* foother */


    .foother-container {
        background-color: #f8f9fa;
        display: flex;
        padding: 4rem 6rem;
        justify-content: space-between;
        padding-bottom: 6rem;
    }

    .foother-item-title {
        color: #343a40;
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .foother-item-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0; /* Çizgi soldan başlar */
        width: 50%; /* Yazının genişliğinin %30’u kadar */
        height: 0.15rem;
        background-color: #343a40;
    }




    .foother-item-text-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .foother-item-text {
        color: #343a40;
        font-size: 1rem;
    }

    .foother-item-link {
        color: #343a40;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .foother-item-link i {
        font-size: 1rem;
    }

    .foother-item-link:hover {
        color: #B39DDB; /* Hover rengi */
    }

    .foother-social-icons {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .social-icon {
        color: #343a40;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .social-icon:hover {
        color: #B39DDB;
    }


    .foother-bottom {
        /* background-color: rgb(29,29,31); */
        color: #343a40;
        text-align: center;
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .foother-bottom-circle {
        text-decoration: none;
        color: #343a40;
    }


    .mobil-launge-container{
        display: none;
    }


/* kucuk ekran pc */

@media (max-width: 1300px) {

    /* iletişim */

    .page-wrap {
        padding: 2rem 3rem;
    }

    .title{
        margin-bottom: 1rem;
    }


    .foother-container {
        padding: 2rem 3rem;
        gap: 2rem;
    }


}


/* TABLET */

@media (max-width: 1024px) {


    /* navbar new dil */
    .main-container{
        padding-top: 0;
    }

    .launge-container {
        display: none;
    }

    .bar-container{
        display: none;
    }

    .mobil-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        padding: 0 1rem;
        height: 6rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mobil-logo-img {
        width: 10rem;
        height: auto;
    }

    .mobil-hamburger-button-container {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .mobil-hamburger-button-container i {
        font-size: 1.75rem;
        color: #333;
    }


    .mobil-menu-container {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 1000;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .mobil-menu-container.active {
        display: flex;
    }

    .mobil-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        border-bottom: 0.01rem solid #eee;
        height: 6rem;
    }

    .mobil-menu-action-icon i{
        font-size: 1.75rem;
        color: #333;
    }

    .mobil-main-menu, .mobil-submenu-items {
        display: flex;
        flex-direction: column;
    }

    .mobil-menu-item {
        padding: 1rem 0;
        margin: 0 1rem;
        cursor: pointer;
        font-weight: 500;
        border-bottom: 0.01rem solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        color: #343a40;
        text-decoration: none;
    }

    .mobil-menu-item i {
        font-size: 1rem;    
        color: currentColor;   
        transition: transform 0.3s ease; 
    }

    .mobil-submenu-items {
        display: none;
        padding-left: 1rem;
    }

    .mobil-submenu {
        display: flex;       
        flex-direction: column;
        padding: 0;               
        margin: 0;         
    }

    .mobil-submenu-item {
        display: block;
        padding: 1rem 0;     
        font-weight: 500;
        font-size: 1rem;
        color: #343a40;
        text-decoration: none;
        border-bottom: 0.01rem solid #eee;
    }

    .mobil-submenu-items {
        display: none;           
        flex-direction: column;
    }

    .mobil-submenu-items.active {
        display: flex;
    }

    /* iletişim */

    .baslik-gorsel-container {
        margin-top: 7rem ;
    }


    

    .page-wrap {
        padding: 2rem 3rem;
    }

        .top-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }



    /* foother */


    .foother-container {
        background-color: #f8f9fa;
        display: flex;
        padding: 2rem 3rem;
        flex-wrap: wrap; 
        gap: 2rem;
    }

    .foother-item-title {
        color: #343a40;
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }


}








@media (max-width: 767px) {

    /* navbar new dil */

    .mobil-bar-container {
        height: 4rem;
    }

    .mobil-logo-img {
        width: 6rem;
    }

    .mobil-hamburger-button-container i {
        font-size: 1.5rem;
    }



    /* Üst logo + X / geri */
    .mobil-menu-top {
        height: 4rem;
    }

    .mobil-menu-action-icon i{
        font-size: 1.5rem;
        color: #333;
    }


    .mobil-menu-item {
        font-size: 0.9rem;
    }



    .mobil-menu-item i {
        font-size: 0.9rem;    
    }

    .mobil-submenu-item {
        font-size: 0.9rem;
    }



    /* iletişim */

    .baslik-gorsel-container {
        margin: 5rem 1rem 0 1rem;
    }


    .baslik-gorsel-img { 
        border-radius: 0.75rem;
        height: 50vh; 
    }



    .baslik-gorsel-title {
        font-size: 1.5rem;  /* mobilde biraz küçültmek iyi olur */
        letter-spacing: 0.2rem;
    }

    .breadcrumb-link {
        font-size: 0.9rem;
    }

    .breadcrumb-disabled {
        font-size: 0.9rem;
    }


    .page-wrap {
        padding: 2rem 1rem; 
    }

    .title{
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .top-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .info-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .info-title {
        font-size: 1.1rem;
        border-bottom: 0.1rem solid #d9dbdb;
        padding-bottom: 0.5rem;
    }

    .info-line {
        display: flex;
        align-items: center; /* ikon ve metin aynı hizada */
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .info-line i {
        font-size: 0.9rem; 
        min-width: 2.75rem;
        height: 2.25rem;
        border-radius: 0.25rem;       
    }

    .info-line a {
        font-size: 0.9rem;
    }

    .info-line p {
        font-size: 0.9rem;
        line-height: 1.4;
    }


    .map {
        border-radius: 0.75rem;     
    }







    /* foother */

    .foother-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .foother-item {
        width: 100%; /* iki item yan yana sığsın */
    }

    .foother-item-title {
        font-size: 1.2rem;
        display: inline-block;
    }

    
    .foother-item-text {
        font-size: 0.9rem;
    }
    
    .foother-item-link {
        font-size: 0.9rem;
    }
    
    .foother-item-link i {
        font-size: 0.9rem;
    }
    
    .foother-social-icons {
        gap: 1.3rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }



    /* mobil dil seçimi */

    .mobil-launge-container{
        display: flex;
        position: fixed;

        bottom: 2rem;
        left:1rem;

    }

    .chosen-container{
        display: flex;
        
        background-color: #eaeae7;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        border-radius: 0.25rem;
    }

    .mobil-launge-text{
        font-size: 0.9rem;
    }

    .mobil-launge-container i{
        font-size: 0.9rem;
        color:#343a40;
    }

    .selected-container {
        display: none; /* ilk başta gizli */
        position: absolute;
        bottom: 100%; /* chosen-container'ın üstünde */
        left: 0;
        background-color: #eaeae7;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }


    .selected-text {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        color: inherit;
        text-decoration: none;
    }


    /* aktif dil */
    .selected-text.active {
        border-bottom: 0.01rem solid #343a40;
    }


    
}

@media (min-width: 2048px) {
    html {
      font-size: 30px; /* 2K ekranlar için artırılmış font-size */
    }
  }
