/* Yeni Slider Düzenlemeleri - Owl Carousel */

.banner-section-three .owl-item.active .slide-item .title {
	opacity: 1;
}

.banner-section-three .owl-item.active .slide-item h2 {
	opacity: 1;
    color: #1a2940 !important;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 250ms;
	-moz-transition-delay: 250ms;
	-ms-transition-delay: 250ms;
	-o-transition-delay: 250ms;
	transition-delay: 250ms;
}

.banner-section-three .slide-item h2:before {
    display: none !important;
}

.banner-section-three .owl-item.active .slide-item .text {
	opacity: 1;
    color: #1a2940 !important;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

.banner-section-three .owl-item.active .slide-item .btn-box {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 750ms;
	-moz-transition-delay: 750ms;
	-ms-transition-delay: 750ms;
	-o-transition-delay: 750ms;
	transition-delay: 750ms;
}

/* White Overlay */
.banner-section-three .slide-item {
    position: relative;
    z-index: 1;
}

.banner-section-three .slide-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 75%;
    left: 0;
    top: 0;
    display: block;
    background-image: linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

.banner-section-three .slide-item .content-box {
    position: relative;
    z-index: 3;
}

/* Header Contact Icons */
.main-header .info-box .inner .icon {
    color: #f79d2b !important; /* Turuncu */
    font-size: 30px !important; /* Biraz küçültüldü */
    line-height: 1em;
}

.main-header .info-box .inner {
    padding-left: 45px !important; /* Boyuta göre boşluk ayarlandı */
}

.main-header .info-box .inner .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Slider Owl Dots Styling */
.banner-section-three .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.banner-section-three .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.banner-section-three .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-section-three .owl-dots .owl-dot.active span {
    background: #f79d2b;
    transform: scale(1.3);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.banner-section-three .owl-dots .owl-dot:hover span {
    background: #f79d2b;
}

/* Language Selection Styling - Far Right */
.nav-outer .outer-box {
    position: relative;
    float: right;
    margin-left: 20px;
    margin-right: 30px; /* Sağa 30px boşluk eklendi */
}

.language-selection-list-wrapper {
    display: flex;
    align-items: center;
    height: 100px; /* Menü yüksekliği 100px e çıkarıldı */
}

.language-globe {
    color: #fff;
    font-size: 16px;
    margin-right: 5px; /* Dünya ikonu butonlara yaklaştırıldı */
    opacity: 0.8;
}

.language-selection-list {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-selection-list li {
    position: relative;
    margin-left: 15px;
}

.language-selection-list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.language-selection-list a {
    font-weight: 700;
    font-size: 13px;
    color: #ffffff; /* Pasif diller beyaz */
    transition: all 0.3s ease;
}

.language-selection-list a:hover,
.language-selection-list a.active {
    color: #f79d2b; /* Aktif dil turuncu */
}

@media (max-width: 991px) {
    .nav-outer .outer-box {
        float: none;
        margin-left: 0;
        padding: 10px 15px;
        background: #1a2940;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .language-selection-list-wrapper {
        height: auto;
        justify-content: center;
    }
}

/* MODAL / TOAST BİLDİRİM STİLLERİ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    color: #333;
    padding: 35px 50px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    min-width: 350px;
    max-width: 500px;
    text-align: center;
    transition: all 0.4s ease;
}

.modal-popup.success { border-top: 5px solid #4CAF50; }
.modal-popup.error { border-top: 5px solid #f44336; }
.modal-message { font-size: 18px; line-height: 1.2; font-weight: 500; }

.modal-overlay.show { display: block; opacity: 1; }
.modal-popup.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }


/* Header Lower Yükseklik Ayarı */
.main-header .header-lower .auto-container {
    height: 100px;
}

.main-header .header-lower .nav-outer {
    height: 100px;
    display: flex;
    align-items: center;
    position: relative; /* Pozisyonlama için */
}

.main-header .header-lower .outer-box {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.main-header .main-menu .navigation > li {
    padding: 41px 0 !important; /* Toplam 100px için ideal padding (41+18+41=100) */
}

.main-header .main-menu .navigation > li > a {
    line-height: 18px;
}

/* Teknik Detay Zebra Deseni */
.teknikdetay {
    padding: 0 !important;
}

.teknikdetay ul {
    list-style: none;
    padding: 0 !important;
    margin: 20px 0;
    border: none; /* Border kaldırıldı */
    border-radius: 0;
    overflow: hidden;
}

.teknikdetay ul li {
    padding: 8px 12px !important; /* Daha kompakt dikey boşluk (8px) ve yatay boşluk (12px) */
    margin: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    list-style: none !important;
    font-size: 14px;
    color: #555;
    position: relative;
}

.teknikdetay ul li:before {
    content: none !important; /* Mevcut ikon/bullet varsa kaldır */
}

/* Dahil Olanlar - Yeşil Tik */
#fiyat .teknikdetay ul li {
    padding-left: 35px !important;
    position: relative;
}

#fiyat .teknikdetay ul li:before {
    content: "\f058" !important; /* fa-check-circle */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #22c55e !important;
    font-size: 16px !important;
    display: block !important;
}

/* Dahil Olmayanlar - Kırmızı Çarpı */
#olmayan .teknikdetay ul li {
    padding-left: 35px !important;
    position: relative;
}

#olmayan .teknikdetay ul li:before {
    content: "\f057" !important; /* fa-times-circle */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #ef4444 !important;
    font-size: 16px !important;
    display: block !important;
}

.teknikdetay ul li:last-child {
    border-bottom: none;
}

.teknikdetay ul li:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02); /* Belli belirsiz hafif gri */
}

.teknikdetay ul li:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.teknikdetay ul li strong {
    color: #333;
    display: inline-block;
    width: 200px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .teknikdetay ul li strong {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
}
