﻿:root {
    /* Logodaki tatlı yeşil tonu */
    --main-color: #3cb878;
}

/* Temel Listeo Renk Ezmeleri */
#navigation.style-1 ul li a.current,
#navigation.style-1 ul li a:hover,
.button, .button.border:hover,
.main-search-inner button,
.icon-box-2 i,
.info-banner .button.border:hover {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
}

.transparent-header #navigation.style-1 ul li a:hover,
.info-banner h3 {
    color: var(--main-color) !important;
}

/* Yazı içindeki vurgular */
.headline span, .text-primary {
    color: var(--main-color) !important;
}
/* LOGO BOYUTLANDIRMA */
#logo img {
    height: 52px; /* Mevcut değeri yaklaşık 1.5 katına çıkardık */
    width: auto;
    max-height: none !important; /* Temanın kısıtlamasını kaldırıyoruz */
    transition: 0.3s;
}

/* Sayfa aşağı kaydırıldığında (Sticky Header) logonun aşırı küçülmemesi için */
#header.sticky #logo img {
    height: 42px;
}

/* Mobil görünüm için ince ayar */
@@media (max-width: 768px) {
    #logo img {
        height: 40px;
    }
}

/* Logo kapsayıcısının boşluğunu ayarlayalım */
#logo {
    display: flex;
    align-items: center;
    height: 100%;
}
/* LİSTEO'NUN SİNSİ BEYAZ PERDESİNİ (GRADIENT) YOK ET */
.main-search-container::before,
.main-search-container::after {
    display: none !important;
    background: none !important;
}

/* YAZILARIN BEYAZ VE OKUNAKLI KALMASINI GARANTİLE */
.main-search-headline h2,
.main-search-headline h4,
.text-center h5 {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8) !important;
}

/* ARAMA KUTUSUNUN ARKASINDAKİ BEYAZLIĞI DA TEMİZLE */
.main-search-inner {
    background: transparent !important;
}
/* NASIL ÇALIŞIR İKON ORANTI VE ŞEKİL DÜZELTMESİ */
.icon-box-2 i {
    width: 100px !important;
    height: 100px !important;
    line-height: 100px !important; /* İkonu dikeyde tam ortalar */
    font-size: 45px !important; /* İkon büyüklüğü */
    border-radius: 50% !important; /* Kusursuz yuvarlak yapar */
    display: inline-block !important;
    text-align: center !important; /* İkonu yatayda tam ortalar */
    margin-bottom: 20px !important;
}
/* HAYALETLERİ KOVAN KURUMSAL BANT CSS */
.custom-corporate-banner {
    background: linear-gradient(rgba(26, 28, 32, 0.85), rgba(26, 28, 32, 0.85)), url('/Assets/front/images/slider-bg-02.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax efekti veren sihirli satır */
    padding: 80px 0;
    margin-top: 65px;
    position: relative;
    z-index: 1; /* Diğer her şeyin üstünde olduğundan emin olalım */
}

.info-banner-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-content-new h3 {
    color: #ffffff !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.info-content-new p {
    color: #e2e8f0 !important;
    font-size: 18px !important;
    margin: 0 !important;
}

.custom-btn-new {
    background-color: #3cb878 !important; /* Tamir Line Yeşili */
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    white-space: nowrap;
    margin-left: 30px;
}

/* Mobil uyum: Yazı ve buton alt alta gelsin */
@@media (max-width: 768px) {
    .info-banner-new {
        flex-direction: column;
        text-align: center;
    }

    .custom-btn-new {
        margin-left: 0;
        margin-top: 25px;
    }
}