/* Genel stiller */
body {
    font-family: Poppins;
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Pop-up */
#popup {
    /* Pop-up için özel stiller */
    position: fixed;
    width: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.-popup {
    /* Pop-up için genel stiller */
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 0px solid #ccc;
    z-index: 9999;
}

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    z-index: 9999;
    /* Yüksek bir z-index değeri verin */
}

.popup-overlay-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
    /* Yüksek bir z-index değeri verin */
}

/* Hamburger Menü */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 0px;
    z-index: 999;
}

.hamburger-icon {
    font-size: 24px;
    cursor: pointer;
}

.hamburger-icon:hover {
    background-color: #555555;
    /* Hover efekti */
}

.menu {
    display: none;
    background-color: #d9d9d9;
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    /* Menüyü yukarıdan gizle */
    transition: all 3s ease-in-out;
    overflow-y: auto;
    /* İçerik taşarsa kaydırma ekleyin */
    /* Flexbox layout */
    flex-direction: column;
}

.menu.active {
    transform: translateY(0);
    /* Menü açıldığında yukarı kaydır */
    display: flex;
}

.menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    align-items: stretch;
    left: 0;
    padding: 0;
    margin: 0;
    flex: 1; /* Kalan alanı kapla */
    overflow-y: auto; /* Menü öğeleri taşarsa scroll */
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    /* Yazı daha kalın */
    position: relative;
    justify-content: center;
    /*Kesin işe yaramayacak Yer*/
    text-align: center;
    /* Yazıyı sola hizala */
    border-bottom: 0;



































































    /* Remove the full-width bottom border */
    &::after {
        content: "";
        position: absolute;
        align-items: center;
        bottom: 0;
        left: calc(12.5%);
        /* Start the border from the left edge */
        width: calc(75%);
        /* 75% of menu width minus padding */
        height: 0.5px;
        /* Border thickness */
        background-color: #9f9f9f;
        /* Border color */
    }
}

.collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    /* Animasyon süresi */
    border-bottom: none;
}

.collapse.active {
    max-height: 500px;
    /* Alt menünün maksimum yüksekliği (ayarlanabilir) */
}

.menu-item:hover {
    /* Hover efekti (isteğe bağlı) */
    background-color: #f1f1f1;
}

.menu-item-collapse {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;

    text-decoration: none;
    color: #000000;
    font-weight: normal;
    /* Yazı daha kalın */
    position: relative;
    justify-content: center;
    /*Kesin işe yaramayacak Yer*/
    text-align: center;
    /* Yazıyı sola hizala */
    border-bottom: 0;
    /* Remove the full-width bottom border */
}

.menu-item-collapse-last {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;

    text-decoration: none;
    color: #000000;
    font-weight: normal;
    /* Yazı daha kalın */
    position: relative;
    justify-content: center;
    /*Kesin işe yaramayacak Yer*/
    text-align: center;
    /* Yazıyı sola hizala */
    border-bottom: 0;

    /* Remove the full-width bottom border */
    &::after {
        content: "";
        position: absolute;
        align-items: center;
        bottom: 0;
        left: calc(12.5%);
        /* Start the border from the left edge */
        width: calc(75%);
        /* 75% of menu width minus padding */
        height: 1px;
        /* Border thickness */
        background-color: black;
        /* Border color */
    }
}

/* Logo */
.logo-link {
    display: block;
    margin: 0 auto;
    /* Logo ortalanmış */
    text-align: center;
    padding: 25px 0;
    flex-shrink: 0; /* Logo alanı küçülmesin */
}

.logo {
    width: 140px;
    /* Logo genişliği */
    height: auto;
    /* Logo yüksekliği otomatik */
}

/* Menü İkonları - Basit çözüm */
.menu-icons {
    position: relative;
    display: flex;
    gap: 22px;
    padding: 30px 15px;
    justify-content: center;
    margin-top: auto; /* En alta itir */
}

.menu-icons.active {
    position: relative;
    padding-left: 15px;
    padding-top: 25px;
}

.menu-icon {
    width: 30px;
    height: 30px;
}

.menu-icon img {
    width: 100%;
    /* İkonların tüm genişliğini kaplar */
    height: 100%;
    /* İkonların tüm yüksekliğini kaplar */
}

/* Arrow Icon */
.arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    width: 9px;
    /* İkon boyutunu ayarlayabilirsiniz */
    height: 6px;
}

.arrow.rotate {
    transform: rotate(180deg);
}

/* Video Konteyneri ve Slogan İçin Genel Stiller */
.video-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    /* Videonun maksimum yüksekliği, ekran yüksekliğine göre ayarlanır */
    overflow: hidden;
    /* Videonun taşmasını önler */
    display: flex;
    justify-content: center;
    /* İçeriği yatayda ortala */
    align-items: center;
    /* İçeriği dikeyde ortala */
    object-fit: fill;
}

.video-container video {
    width: 100%;
    height: auto;
    /* Yüksekliği otomatik ayarla */
    object-fit: cover;
    /* Video'nun tam olarak dolmasını sağlar */
}

.custom-hr {
    border: none; /* Standart hr çizgisi sınırını kaldırır */
    height: 1px; /* Yüksekliği 1 piksel yapar */
    background-color: #9f9f9f; /* Rengi 9f9f9f yapar */
    position: relative;
    width: 100%; /* Sağ tarafta yüzde 75 genişliğinde bir çizgi oluşturur */
    margin: 40px 0; /* Çizginin üst ve altındaki boşluğu ayarlar */
}

.slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d89000;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    /* Yazının üst ve sol boşluğunu kaldır */
    background: rgba(0, 0, 0, 0.0);
    /* Arka plan rengi (gerekirse şeffaf bırakabilirsiniz) */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Mobil Header */
.mobile-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: row;
    /* Flex direction'u column yaparak yukarıdan aşağıya düzenle */
    align-items: center;
    /* Elemanları ortala */
    padding: 10px;
    z-index: 1000;
    /* Menü ve logo üstte olacak */
}

.logo-container {
    text-align: center;
    flex: 1;
}

.dropdown-button {
    background-color: #1e1e1e;
    color: #fff;
    border: none;
    padding: 15px;
    padding-right: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 1001;
    margin-top: 0px;
    /* Logonun altına biraz boşluk ekle */
}

.dropdown-menu {
    display: none;
    /* Varsayılan olarak gizli */
    position: absolute;
    /* Mobil header'ın altı */
    left: 0;
    margin-top: 0;
    width: 100%;
    background-color: #1e1e1e;
    z-index: 1000;
}

.dropdown-content {
    display: none;
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    border-bottom: 0;

    /* Remove the full-width bottom border */
    &::after {
        content: "";
        position: absolute;
        align-items: center;
        bottom: 0;
        left: calc(12.5%);
        /* Start the border from the left edge */
        width: calc(75%);
        /* 75% of menu width minus padding */
        height: 1px;
        /* Border thickness */
        background-color: #fff;
        /* Border color */
    }
}

.dropdown-content a:hover {
    background-color: #1e1e1e;
}

/* Başlık Alanı */
.main-text-container {
    position: relative;
    background-color: #FFFFFF;
    padding: 60px;
    text-align: center;
    margin-top: 0px;
    /* Videonun hemen altında olacak şekilde ayarlayın */
    width: 100%;
    /* Tam genişlikte olmasını sağlar */
    box-sizing: border-box;
    /* Padding ve border'ları genişlikte hesaba katar */
}

.title {
    font-size: 32px;
    color: #000000;
    font-weight: 400;
}

.title-24 {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
}

.title-24-popup {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
}

.title-32-popup {
    font-size: 32px;
    color: #fff;
    font-weight: 400;
}

.info-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.text-and-image {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.text-section {
    text-align: left;
    padding-right: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.info-text-popup {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.div-container {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 78%;
    margin-top: 50px;
    margin-bottom: 50px;
    /*box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);*/
}
.button-container-satis{
    display: flex;
    justify-content: center;
    width: 78%;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-button {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 20px;
    width: 25%;
    height: 310px;
    text-align: center;
    /* Bu satır gereksiz olabilir, flexbox ile ortalama yapıyoruz */
    cursor: pointer;
    /*box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);*/
    /* Diğer stil kuralları */
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #373737;
}

.popup-text {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    width: 50%;
}

.popup-image {
    flex: 1;
    width: 50%;
    height: 100%;
    object-fit: fill;
}

.popup-image img {
    object-fit: fill;
}

.iletisim-image-container {
    position: relative;
    width: 100%;
    /* Veya istediğiniz genişlik */
    height: 600px;
    /* Görüntünün yüksekliği */
}

.iletisim-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%-230px;
    height: 100%;
    background-color: #000000;
    object-fit: fill;
    background-size: fill;
    background-position: center;
    margin-left: 230px;
    /* Görüntüyü ortalamak için */
    overflow: hidden;
}

.iletisim-bilgileri {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-left: 270px;
    background-color: #363636;
    /* Arka plan rengi */
}

.main-text-container-36 {
    position: relative;
    background-color: #363636;
    padding: 60px;
    text-align: center;
    margin-top: 0px;
    padding-left: 250px;
    /* Videonun hemen altında olacak şekilde ayarlayın */
    width: 100%;
    /* Tam genişlikte olmasını sağlar */
    box-sizing: border-box;
    /* Padding ve border'ları genişlikte hesaba katar */
}

.hakkimizda-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #363636;
    object-fit: fill;
    background-size: fill;
    background-position: center;
    /* Görüntüyü ortalamak için */
    overflow: hidden;
    z-index: -1;
}

.text-container-tranperent-back {
    position: relative;
    background-color: transparent;
    padding: 80px;
    text-align: left;
    margin-top: 0px;
    padding-left: 280px;
    /* Videonun hemen altında olacak şekilde ayarlayın */
    width: 100%;
    /* Tam genişlikte olmasını sağlar */
    box-sizing: border-box;
    /* Padding ve border'ları genişlikte hesaba katar */
    z-index: 1;
}

.satisofisleri-contianer {
    align-self: center;
    align-items: center;
    margin-top: 250px;
}

.satisofisleri-button {
    display: block;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    background-color: #d9d9d9;
    border: none;
    width: 220px;
    height: 220px;
    padding: 0;
    margin: 30px;
    text-align: center;
    border-radius: 50%;
    /* Bu satır gereksiz olabilir, flexbox ile ortalama yapıyoruz */
    cursor: pointer;
    /*box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);*/
    /* Diğer stil kuralları */
}

.form-container {
    width: 400px;
    margin: 0 auto;
    padding-left: 200px;
    border: none;
    outline: none;
    background-color: transparent;
}

.form-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    border: none;
    outline: none;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    border:
        none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #eee;
}

.my-label {
    height: 100px; /* Label'ın yüksekliğini 100px yapar */
    margin-bottom: 70px; /* Label'lar arasındaki boşluğu 70px yapar */
}

.form-container input {
    border-radius: 35px; /* Input alanlarının köşelerini 35px yarıçapında yuvarlatır */
}
.form-container textarea {
    border-radius: 35px; /* Input alanlarının köşelerini 35px yarıçapında yuvarlatır */
    height: 80px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    height: 50px;
}

.dropdown-button.active {
    transform: rotate(91deg);
}

/* Desktop görünüm */
@media (min-width: 769px) {
    .menu {
        display: block;
        transform: none;
        overflow-y: clip;
    }

    .mobile-header {
        display: none;
        /* Bilgisayarda gizle */
    }

    .dropdown-menu {
        display: none;
        /* Açılır menüyü bilgisayarda gizle */
    }

    .main-text-container {
        padding-left: 350px;
        padding-right: 150px;
    }

    .text-and-image {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .text-section {
        max-width: 60%;
    }

    .image-container {
        max-width: 40%;
    }

    .button-container {
        margin-left: 300px;
    }
    .satisofisleri-contianer{
        margin-left: 300px;
    }
}

/* Mobil cihazlar için özellikler */
@media (max-width: 768px) {
    #popup{
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .dropdown-menu {
        display: block;
    }

    .dropdown-button {
        display: block;
    }

    /* Mobilde menü ul yüksekliğini normal yap */
    .menu ul {
        height: auto;
        overflow-y: visible;
        padding-bottom: 20px;
    }

    /* Mobilde menu-icons'u relative pozisyonda tut */
    .menu-icons {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: auto;
        padding: 30px 15px;
        justify-content: center;
    }

    /* Video Container düzeltmesi */
    .video-container {
        margin-top: -15px !important;
        margin-left: 0 !important;
        height: auto !important;
        min-height: auto !important;
        width: 100vw !important;
        position: relative !important;
        overflow: hidden !important;
        max-height: none !important;
    }

    .video-container iframe {
        width: 100% !important;
        height: 56.25vw !important; /* 16:9 aspect ratio */
        min-height: 200px !important;
        max-height: 70vh !important;
        display: block !important;
    }

    /* Main content */
    .main-content {
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .button-container-satis{
        flex-direction: column;
        align-items: center;
    }

    .service-button {
        width: 100%;
    }

    .popup-content {
        flex-direction: column;
        align-items: center;
    }

    .popup-image {
        width: 100%;
        height: auto;
    }

    .popup-text {
        width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }

    .-popup {
        left: 50%;
        width: 80%;
    }

    .iletisim-image {
        height: 600px;
        margin-left: 0px;
    }

    .iletisim-image-container {
        height: 600px;
    }

    .iletisim-bilgileri {
        padding-left: 20px;
        flex-direction: column;
        align-items: center;
    }

    .main-text-container-36 {
        padding-left: 20px;
    }

    .harita {
        padding-top: 80px;
        padding-bottom: 30px;
        width: 100%;
        display: none;
    }

    .haritaclassMobil {
        display: none;
    }

    .text-container-tranperent-back {
        padding-left: 30px;
        margin-top: 150px;
    }

    .hakkimizda-container {
        margin-top: 150px;
    }

    .form-container{
        padding-left: 20px;
    }
}
