<style>
	/*--------Büyük Kalem Butonlar----------------------------*/
	/* Yeni eklenen butonlar için stiller */
.bottom-buttons-container 
{
    position: absolute; /* right-section içinde konumlandırma */
    top: 20px; /* Alttan 20px boşluk */
    left: 50%; /* Yatayda ortala */
    transform: translateX(-50%); /* Kendi genişliğinin yarısı kadar sola kaydırarak tam ortala */
    display: flex; 
    flex-wrap: wrap; /* Butonlar sığmazsa alt satıra geçsin */
    justify-content: center; /* Butonları kendi içinde ortala */
    gap: 5px; /* Butonlar arası boşluk */
    padding: 10px;
    width: 90%; /* Kapsayıcının genişliği */
    max-width: 800px; /* Maksimum genişlik */
    z-index: 10; /* Diğer öğelerin üzerinde görünmesini sağla */
}

.action-button 
{
    background-color: #4D0E5C; /* Koyu lacivert */
    color: white;
    border: none;
    border-radius: 8px; /* Daha yuvarlak köşeler */
    padding: 12px 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; /* Hover efekti için yumuşak geçiş */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    display: flex;
    align-items: center;
    gap: 4px; /* İkon ve metin arası boşluk */
	height:45px;
}

.action-button:hover 
{
    background-color: #4D0E5C; /* Hover'da daha açık lacivert */
    transform: translateY(-3px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
}

/* Yeni açılır pencereler (overlay) için CSS */
.action-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Daha koyu arka plan */
    display: flex;
    justify-content: flex-end; /* Sağdan açılacak */
    align-items: flex-start;
    z-index: 1001; /* Diğer overlaylerin üzerinde */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.action-overlay.open {
    visibility: visible;
    opacity: 1;
}

.action-container {
    width: 50%;
    height: 100%;
    background: #ffffff; /* Beyaz arka plan */
    color: #333;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
    position: relative;
    overflow-y: auto;
    transform: translateX(100%); /* Başlangıçta sağda gizli */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Yumuşak kayma efekti */
}

.action-overlay.open .action-container {
    transform: translateX(0); /* Açılınca görünür */
}

/* Kapatma butonu stili */
.action-container .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #2c2c54;
    cursor: pointer;
    z-index: 10;
}

/* Başlık ve içerik stilleri */
.action-container h3 {
    font-size: 2.5em;
    color: #FFF;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #4D0E5C;
    padding-bottom: 10px;
}

/* İçerik paragraf ve liste stilleri */
.action-container p, .action-container ul {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}
.action-container ul {
    list-style: disc inside;
    padding-left: 20px;
}

/* Mobil uyumluluk için (768px ve altı) */
@media (max-width: 768px) {
    .bottom-buttons-container {
        position: static; /* Mobil görünümde statik konuma al */
        width: 100%;
        padding: 10px 0;
        gap: 5px;
        transform: none; /* Transform'u kaldır */
        margin-top: 0px; /* right-section'ın içeriğiyle arasına boşluk */
    }
    .action-button {
        width: calc(50% - 15px); /* İki buton yan yana */
        font-size: 14px;
        padding: 10px 15px;
        justify-content: center;
    }
    .action-container {
        width: 100%;
        height: 100%;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .action-overlay {
        justify-content: center;
        align-items: flex-end;
    }
    .action-overlay.open .action-container {
        transform: translateY(0);
    }
}
	/*--------------------------------------------------------*/

        /* Online Başvuru Formu için yeni overlay CSS'i */  
        .online-form-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: flex-start; /* Soldan hizalama */
            align-items: center;
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .online-form-overlay.open {
            visibility: visible;
            opacity: 1;
        }

        .online-form-container {
            width: 50%;
            height: 100%;
            background: #bbb;
            color: #333;
            padding: 1px;
            box-sizing: border-box;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow-y: auto;
            transform: translateX(-100%); /* Başlangıçta solda gizli */
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .online-form-overlay.open .online-form-container {
            transform: translateX(0); /* Açılınca görünür */
        }
        
        /* İletişim Formu ve Online Başvuru Formu için scrollbar'ı gizle */
        .contact-form-container, .online-form-container {
            -ms-overflow-style: none;  /* IE ve Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .contact-form-container::-webkit-scrollbar, .online-form-container::-webkit-scrollbar {
            display: none;  /* Chrome, Safari ve Opera */ 
        }

        @media (max-width: 768px) {
            .online-form-container {
                width: 100%;
                height: 100%;
                transform: translateY(100%);
                transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            .online-form-overlay {
                justify-content: center;
                align-items: flex-end;
            }

            .online-form-overlay.open .online-form-container {
                transform: translateY(0);
            }
			.header, .bottom-buttons-container {
        height: 70px; /* İstediğiniz yüksekliği buraya yazabilirsiniz */
        display: flex;
        align-items: center;
        justify-content: center;
    }  
        }
    </style>
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .container {
            display: flex;
            min-height: 100vh;
        }

        .left-section {
            background-color: #4D0E5C;
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            flex: 1 1 50%;
            justify-content: center;
            align-items: center;
        }

        .left-section h1 {
            font-size: 3em;
            margin: 0;
            line-height: 1.2;
        }

        .left-section p {
            margin: 20px 0;
            line-height: 1.6;
        }

        .left-section .btn {
            background: transparent;
            color: white;
            border: 1px solid white;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
        }

        .right-section {
            flex: 1 1 50%;
            background-image: url("arkaplanresmi.jpg");
            background-color: #f1fbfd;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            position: relative;
        }

        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }

        .main-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            font-weight: bold;
        }

        .main-menu>li {
            margin-right: 20px;
            position: relative;
        }

        .main-menu>li>a {
            color: #FFF;
            text-decoration: none;
            display: block;
            padding: 10px 0;
        }

        .dropdown {
            color: white;
            display: none;
            list-style: none;
            margin: 0;
            padding: 0;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 300px; /* Genişlik dükkan isimleri için artırıldı */
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .dropdown li a {
            font-size: 13px;
            color: white;
            display: block;
            padding: 12px 16px;
            text-decoration: none;
        }

        .dropdown.level-1 {
            background: #4D0E5C;
            max-height: 400px; /* Çok fazla dükkan için scroll eklendi */
            overflow-y: auto;
        }

        .dropdown.level-1 li a {
            color: #fff;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown.level-1 li a:hover {
            background: #4D0E5C;
        }

        .dropdown.open {
            display: block;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background: #4D0E5C;
            margin: 5px 0;
        }
		
		/*-----------------------------------------------------*/
		/* Ana Izgara Kapsayıcısı - müşteri herhangi bir dükkan penceresini açtıktan sonra gösterilen dükkan menüleri*/
		.tab-menu { 
    display: flex;
    gap: 1;
    padding: 10px;
    border-bottom: 2px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}
		/*-----------------------------------------------------*/

        @media(min-width:768px) {
            .main-menu {
                flex-direction: row;
                align-items: center;
            }

            .main-menu li {
                position: relative;
				color: #FFF;
            }

            .dropdown {
                position: absolute;
                top: 100%;
                left: 0;
                min-width: 350px;
                display: none;
                z-index: 999;
            }

            .dropdown.open {
                display: block;
            }
        }

        @media(max-width:768px) {
            .container {
                flex-direction: column-reverse;
                min-height: 100vh;
            }

            .left-section {
                flex: 1 1 50%;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .right-section {
                flex: 1 1 50%;
				background-image: url("arkaplanresmi.jpg");
				 background-repeat: no-repeat;
				background-position: center;
				background-size: cover;
                display: flex;
                flex-direction: column;
            }
			.header {
                position: static;
                width: 100%;
                padding: 15px;
				z-index:999;
            }

            .main-menu {
				margin-top:60px;
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c2c54;
                position: absolute;
                top: 0;
                right: 0;
            }

            .main-menu.active {
                display: flex;
            }

            .main-menu>li {
                margin: 0;
                color: white;
            }

            .main-menu a { 
                padding: 25px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: white;
            }

            .dropdown {
                position: static;
            }

            .hamburger-menu {
                display: block;
				z-index: 9999;  
            }
        }
		
		
        /* İletişim Formu CSS'i */
        .contact-form-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .contact-form-overlay.open {
            visibility: visible;
            opacity: 1;
        }

        .contact-form-container {
            width: 50%;
            height: 100%;
            background: #fff;
            color: #333;
            padding: 40px;
            box-sizing: border-box;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .contact-form-overlay.open .contact-form-container {
            transform: translateX(0);
        }

        .contact-form-container h3 {
            font-size: 2.5em;
            color: #2c2c54;
            margin-top: 0;
            margin-bottom: 30px;
            font-weight: 600;
            border-bottom: 2px solid #2c2c54;
            padding-bottom: 10px;
        }

        .contact-info-list {
            list-style: none;
            padding: 0;
        }

        .contact-info-list li {
            margin-bottom: 3px;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .contact-info-list li strong {
            display: block;
            font-size: 1.0em;
            color: #2c2c54;
            margin-bottom: 5px;
        }

        .contact-info-list a {
            color: #2c2c54;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info-list a:hover {
            text-decoration: underline;
            color: #3b3b64;
        }

        .social-media-links {
            margin-top: 5px;
        }

        .social-media-links a {
            display: inline-block;
            margin-right: 15px;
            font-size: 24px;
            color: #2c2c54;
            transition: transform 0.3s, color 0.3s;
        }

        .social-media-links a:hover {
            transform: translateY(-3px);
            color: #3b3b64;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: #FFF;
            cursor: pointer;  
            z-index: 10;
        }

        /* Harita kapsayıcı */
        .map-container {
            margin-top: 20px;
            width: 100%;
            height: 300px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 768px) {
            .contact-form-container {
                width: 100%;
                height: 100%;
            background: #fff;
            color: #333;
            padding: 10px;
            box-sizing: border-box;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            .contact-form-overlay {
                justify-content: center;
                align-items: flex-end;
            }

            .contact-form-overlay.open .contact-form-container {
                transform: translateY(0);
            }
			

    .bottom-buttons-container a {
        height: 50px; 
        width: 100%; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
        }
    </style>
	<style>
	/* --- MOBİL GÖRÜNÜM (Varsayılan) --- */
@media (max-width: 767px) {
    .tab-menu {
        flex-wrap: wrap; /* Sığmayan butonları alt satıra atar */
        justify-content: center; /* Butonları ortalar */
    }

    .tab-btn-item {
        flex: 1 1 calc(30% - 15px); /* Satırda 3 buton gösterir */ 
        min-width: 90px;
        background: #f8f9fa;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 12px 5px;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #555;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    /* Mobilde aktif butonun tüm gövdesi renklenir */
    .tab-btn-item.active-tab {
        background: #27ae60 !important;
        color: #fff !important;
        border-color: #219150;
        box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
    }
}
/* --- BİLGİSAYAR GÖRÜNÜMÜ (Geniş Ekran) --- */
@media (min-width: 768px) {
    .tab-menu {
        flex-wrap: nowrap; /* Tek satırda tutar */
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .tab-btn-item {
        flex: 0 0 auto;
        background: none;
        border: none;
        border-bottom: 3px solid transparent;
        border-radius: 0; 
        padding: 15px 20px;
        font-size: 14px;
        color: #666;
    }

    .tab-btn-item:hover {
        color: #27ae60;
        background: rgba(39, 174, 96, 0.05);
    }

    /* Bilgisayarda aktif butonun sadece altı çizilir */
    .tab-btn-item.active-tab {
        color: #27ae60 !important;
        border-bottom: 3px solid #27ae60 !important;
        background: none !important;
    }

    /* Scrollbar gizleme */
    .tab-menu::-webkit-scrollbar { display: none; }
}
	</style>
	<style>
				/* Sekme kapsayıcısını yatay kaydırılabilir yap */
			.tab-header-container {
				display: flex; 
				overflow-x: auto;
				white-space: nowrap;
				-webkit-overflow-scrolling: touch; /* Mobil akıcılık için */
				scrollbar-width: none; /* Firefox için barı gizle */
				border-bottom: 1px solid #ddd;
				margin-bottom: 15px;
			}

			.tab-header-container::-webkit-scrollbar {
				display: none; /* Chrome/Safari için barı gizle */
			}

			.tab-btn {
				flex: 0 0 auto; /* Butonların sıkışmasını engelle */
				padding: 10px 20px;
			}
	</style>
	
	<style>/* kullanıcı dükkanın açılış zamanından önce açar yada kapanış saatinden sonra açarsa popup açılır. buda onun style kodu */
@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/*===================================================*/
/* Yeni ve Çakışmasız Stil Grubu */
.alt-islem-grubu {
    position: absolute !important;
    bottom: 30px !important; /* Sayfanın en altından 30px yukarıda */
    left: 50%; /* Yatayda ortala */
    transform: translateX(-50%) !important; /* Kendi genişliğinin yarısı kadar sola kaydırarak tam ortala */
    display: flex !important;
    flex-direction: column !important; /* Butonları alt alta dizer, yan yana istersen 'row' yap */
    gap: 12px !important;
    z-index: 9999 !important; /* En üstte göründüğünden emin olalım */
    width: auto !important;
}

.ozel-islem-butonu {
    background-color: #4D0E5C !important; /* Senin mor tonun */
    color: #ffffff !important;
    border: 2px solid #ffffff !important; /* Beyaz çerçeve daha belirgin yapar */
    border-radius: 50px !important; /* Tam yuvarlak kenarlar */
    padding: 10px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
}

.ozel-islem-butonu:hover {
    background-color: #ffffff !important;
    color: #4D0E5C !important;
    transform: scale(1.05) !important; /* Üzerine gelince hafif büyüme */
}

/* Mobil için (Ekran küçükse butonları ortaya alalım) */
@media (max-width: 768px) {
    .alt-islem-grubu {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin: 20px auto !important;
        align-items: center !important;
        width: 100% !important;
    }
}
/*===================================================*/

/* --- Masaüstü Görünümü (Yan yana ve Sağ Alt) --- */
.ust-islem-grubu-mobil {
    position: absolute !important;
    bottom: 30px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    z-index: 10 !important;
}

.mobil-ozel-buton {
    background-color: #4D0E5C !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

/* --- Mobil Uyumluluk (Ekranın En Üstüne Koyma) --- */
@media (max-width: 768px) {
    .ust-islem-grubu-mobil {
        position: fixed !important; /* Ekrana sabitler */
        top: 90px !important;      /* Üstten 60px boşluk (Menü/Logo yüksekliğine göre ayarla) */
        bottom: auto !important;    /* Bottom özelliğini iptal eder */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        justify-content: center !important; /* Butonları ortalar */
        padding: 10px !important;
        /*background-color: rgba(255, 255, 255, 0.9) !important;  Hafif şeffaf arka plan (opsiyonel) */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
		display: flex;
		flex-wrap: wrap; /* Butonlar sığmazsa alt satıra geçsin */
        overflow-x: auto !important;  /* Sığmazsa yan kaydırılabilir yapar */
    }

    .mobil-ozel-buton {
        padding: 8px 12px !important;
        font-size: 12px !important;
        flex: 0 0 auto !important; /* Butonların daralmasını engeller */
    }
}
/*===================================================*/
/* Mobil Toolbar Ana Kapsayıcı */ 
/* Ana Kapsayıcı - Daima altta sabit */
.smart-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-bar-container {
    max-width: 1200px; /* Bilgisayarda çok yayılmaması için */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Seçim Sekmeleri Satırı */
.contact-bar-tabs {
    display: flex;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.bar-tab {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4D0E5C; /* Senin mor tonun */
    font-weight: 600;
    font-size: 14px;
}

.bar-tab i { font-size: 18px; }

/* AKTİF DURUM (TURUNCU SEÇİM) */
.bar-tab.active {
    background-color: #ff9800 !important; /* İstediğin Turuncu */
    color: #ffffff !important;
}

/* Veri Gösterim Alanı */
.contact-bar-display {
    padding: 15px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
}
  
.info-wrapper a {
    color: #4D0E5C;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    word-break: break-all;
}

/* --- RESPONSIVE AYARLAR --- */

/* Tablet ve Küçük Bilgisayarlar */
@media (max-width: 992px) {
    .bar-tab span { font-size: 13px; }
}

/* Telefon (Mobil) Görünümü */
@media (max-width: 768px) {
    .bar-tab {
        flex-direction: column; /* İkon üstte yazı altta */
        padding: 8px 5px;
        font-size: 10px;
        gap: 4px;
    }
    
    .bar-tab i { font-size: 20px; }
    
    .contact-bar-display {
        padding: 10px;
        min-height: 50px;
    }

    .info-wrapper a { font-size: 14px; }

    /* Sayfanın en altındaki içeriğin barın arkasında kalmaması için body'e boşluk */
    body { padding-bottom: 110px !important; }
}
/*===================================================*/
</style>