.whatsapp {
    position: fixed;
    left: 15px;
    bottom: 30px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.whatsapp a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #4dc247;
    animation: pulse 2s infinite;
}

.whatsapp .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.whatsapp:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.whatsapp:hover .tooltiptext {
    visibility: visible;
}

/* 1. Adım: Animasyonu tanımlama */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(77, 194, 71, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(77, 194, 71, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(77, 194, 71, 0);
  }
}


/* YENİ EKLENEN ANİMASYONLU HARİTA İKONU STİLLERİ */

.harita-ikonu {
    position: fixed;
    left: 15px;
    bottom: 95px; 
    transition: all .5s ease-in-out;
    z-index: 999;
}

.harita-ikonu a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 26px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #dd4b39; /* Google Haritalar Kırmızısı */
    /* === YENİ EKLENEN ANİMASYON SATIRI === */
    animation: pulse-red 2s infinite;
}

.harita-ikonu .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.harita-ikonu:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.harita-ikonu:hover .tooltiptext {
    visibility: visible;
}

/* === YENİ EKLENEN ANİMASYON KODU === */
@keyframes pulse-red {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(221, 75, 57, 0.7); /* Kırmızı renk */
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(221, 75, 57, 0); /* Kırmızı renk (şeffaf) */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(221, 75, 57, 0); /* Kırmızı renk (şeffaf) */
  }
}

.telefon {
    position: fixed;
    left: 15px;
    bottom: 180px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.telefon a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #337ab7;
}

.telefon .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.telefon:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.telefon:hover .tooltiptext {
    visibility: visible;
}

.telegram {
    position: fixed;
    left: 15px;
    bottom: 70px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.telegram a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #27A7E5;
}

.telegram .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}
/* X (Twitter) ikonu için özel stiller */

.social-box .twitter a {
  background-color: #FFFFFF !important; /* Arka planı beyaz yapar */
  border: 1px solid #e0e0e0; /* İsteğe bağlı: Beyaz arka plan belli olsun diye ince bir çerçeve */
}

.social-box .twitter a i {
  color: #000000 !important; /* İkonun rengini (X harfini) siyah yapar */
}

.telegram:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.telegram:hover .tooltiptext {
    visibility: visible;
}

.instagram {
    position: fixed;
    left: 15px;
    bottom: 15px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.instagram a {
    height: 50px;
    width: 50px;
    border-radius: 50%; 
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #fd3a67;
}

.instagram .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.instagram:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.instagram:hover .tooltiptext {
    visibility: visible;
}

.diller {
    position: fixed;
    left: 15px;
    bottom: 235px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.diller a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #000;
}

.diller .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.diller:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.diller:hover .tooltiptext {
    visibility: visible;
}

.lang {
    float: left;
    width: 100%;
}

.lang img {
    display: inline-block;
    height: 16px;
    margin-right: 8px;
    margin-top: 0px;
    margin-bottom: -3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.lang .currencyitems a {
    width: 24%;
}

.activelang {
    opacity: 0.45;
    filter: alpha(opacity=45);
}

.lang h4 {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}

.lang a {
    display: inline-block;
    vertical-align: top;
    /* width: 32%; */
    margin: 5px;
    font-size: 16px;
    color: #9d9d9d;
    padding: 10px;
    border: 1px solid #0000004d;
    border-radius: 50px;
}

.lang a:hover {
    border: 1px solid #000;
    color: #000;
}
.rounded-25 {
    border-radius: 25%;
}

.newsletter-section .content-box .title {
    color: #0066bd; /* Açık mavi gibi bir renk */
}

.newsletter-section .content-box h2 {
    color: #0066bd; /* Beyaz */
}

.newsletter-section .content-box .text {
    color: #0066bd; /* Gri tonlarında bir beyaz */
}
/* =================================================================== */
/* HEADER BUTONLARI - YENİ DÜZENLEME
/* =================================================================== */
.header-upper .outer-box {
    position: relative; /* Konumlandırmayı aktif hale getirir */
    top: 5px; /* Yukarıdan 8px aşağıya kaydırır. Bu değeri istediğiniz gibi artırıp azaltabilirsiniz. */
}
.main-header .search-box-btn {
    position: relative;
    top: -7px; /* Örnek: Arama ikonunu 5px aşağı kaydırır */
}
/* --- Genel Buton Stili --- */
.header-action-button {
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease; /* Geçişlere animasyon eklendi */
    border: 1px solid;
    cursor: pointer;
}

/* --- Birincil Buton (Mavi Dolgulu) --- */
.header-action-button.primary {
    background-color: #0066bd; /* Sitenizin ana mavi rengi */
    border-color: #ffffff;
    color: #ffffff;
}

.header-action-button.primary:hover {
    background-color: #ffffff; /* Üzerine gelince daha koyu mavi */
    border-color: #005296;
    color: #0066cc;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.6); /* Mavi parlama efekti */
}
/* =================================================================== */
/* YAPIŞKAN MENÜ (STICKY HEADER) - YENİ DÜZENLEME
/* =================================================================== */

/* Yapışkan menünün ana taşıyıcısını dikey olarak ortalamak için */
.sticky-header .auto-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sağ taraftaki menü ve arama ikonunu dikey ortalar */
.sticky-header .pull-right {
    display: flex;
    align-items: center;
}

/* Yapışkan menüdeki butonların boyutunu ayarlar */
.sticky-header .header-action-button {
    padding: 6px 18px; /* Butonların iç boşluğunu küçültür */
    font-size: 13px;   /* Yazı tipini biraz küçültür */
}

/* =================================================================== */
/* HEADER BUTONLARI - FİNAL DÜZENLEME
/* =================================================================== */

/* --- 1. Masaüstü Görünümü --- */
/* Arama ikonu ile butonlar arasına boşluk ekler */
.main-header .search-box-btn {
    margin-right: 10px;
}

/* Menünün Bitişi ile Arama İkonu Arasına Boşluk Ekleme */
.main-header .nav-outer .outer-box {
    margin-left: 10px; /* Boşluk miktarını buradan istediğiniz gibi ayarlayabilirsiniz. */
}

/* --- 2. Mobil Görünüm (991px ve altı) --- */
@media (max-width: 991px) {
    /* Butonları üst menüde (header) gizler */
    .header-upper .header-action-button {
        display: none;
    }
}

/* --- 3. Açılır Mobil Menü İçindeki Butonların Stili --- */
.mobile-menu .header-action-button {
    display: block; /* Butonların tüm satırı kaplamasını sağlar */
    text-align: center;
    margin: 15px 20px 5px 20px; /* Üst-Sağ-Alt-Sol boşlukları */
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    border: 1px solid;
    color: #fff;
    background-color: #0066cc; /* Mavi arka plan */
    border-color: #0066cc;
}

.mobile-menu .header-action-button:hover {
    background-color: #005296; /* Koyu mavi hover */
    border-color: #005296;
}
@media (max-width: 991px) {
    .sticky-header .sticky-header-buttons {
        display: none; /* Yapışkan menüdeki butonları mobil ekranda gizler */
    }
}

/* =================================================================== */
/* ARAMA İKONU BUTON STİLİ
/* =================================================================== */

/* --- 1. Genel Arama Butonu Stili (Ortak Ayarlar) --- */
.main-header .search-box-btn {
    display: flex; /* İkonu içinde dikey ortalamak için */
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px; /* Diğer butonlarla arasına boşluk koyar */
}

/* İkonun kendisine ait ayarlar */
.main-header .search-box-btn .fa-search {
    transition: color 0.3s ease;
}


/* --- 2. Ana Header'daki Arama Butonu Stili (Mavi Dolgulu) --- */
.header-upper .search-box-btn {
    padding: 10px 12px; /* Buton boyutunu ayarlar */
    background-color: #0066bd;
    border-color: #ffffff;
}
.header-upper .search-box-btn .fa-search {
    color: #ffffff;
}

/* Ana Header Hover Efekti */
.header-upper .search-box-btn:hover {
    background-color: #ffffff;
    border-color: #005296;
}
.header-upper .search-box-btn:hover .fa-search {
    color: #0066cc;
}


/* --- 3. Yapışkan Header'daki Arama Butonu Stili (Beyaz Çerçeveli) --- */
.sticky-header .search-box-btn {
    padding: 6px 8px; /* Daha küçük buton boyutu */
    background-color: transparent;
    border-color: #0066cc;
}
.sticky-header .search-box-btn .fa-search {
    color: #0066cc;
    font-size: 13px; /* İkonu diğer buton yazı tipiyle uyumlu hale getirir */
}

/* Yapışkan Header Hover Efekti */
.sticky-header .search-box-btn:hover {
    background-color: #0066cc;
    border-color: #0066cc;
}
.sticky-header .search-box-btn:hover .fa-search {
    color: #ffffff;
}

/* ==================================================================== */
/* SPONSOR LOGOLARI İÇİN GARANTİ RENKLİ GÖRÜNÜM KODU
/* ==================================================================== */

/* Hem birinci hem de ikinci sponsor bölümündeki resimler için geçerli */
.sponsors-section .image-box img,
.sponsors-section-two .image-box img {
    
    /* Logoları tam görünür yapar ve başka bir kuralın bunu ezmesini engeller */
    opacity: 1 !important; 
    
    /* Logolardaki gri filtresini kaldırır ve başka bir kuralın bunu ezmesini engeller */
    filter: none !important; 
    
    transition: all 0.4s ease;
}

/* Hover efektlerini de güncelleyelim */
.sponsors-section .image-box:hover img,
.sponsors-section-two .image-box:hover img {
    transform: scale(1.05) translateY(-5px);
}

/* ==================================================================== */
/* Neden Biz? Bölümü Görsel Geliştirmesi
/* ==================================================================== */

/* Görselin içinde bulunduğu ana sütunu hazırlıyoruz */
.story-section .image-column .inner-column {
    position: relative;
    padding: 20px; /* Çerçevenin görünmesi için boşluk oluşturur */
}

/* Resmin kendisi için stiller */
.story-section .image-column .image {
    position: relative;
    border-radius: 15px; /* Köşeleri modern bir görünüm için yumuşatır */
    overflow: hidden; /* Büyüyen resmin köşelerden taşmasını engeller */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Resme derinlik katmak için modern bir gölge */
}

.story-section .image-column .image img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Yumuşak bir yakınlaşma animasyonu */
}

/* Fare üzerine gelince resim büyür */
.story-section .image-column .image:hover img {
    transform: scale(1.1);
}

/* Dekoratif ve İnteraktif Çerçeve */
.story-section .image-column .inner-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    /* Sitenizin ana rengi olan mavi kullanıldı. Değiştirebilirsiniz. */
    border: 5px solid #0066bd; 
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
}

/* Fare üzerine gelince çerçeve genişler */
.story-section .image-column .inner-column:hover::before {
    width: 100%;
    height: 100%;
}

/* Sürekli Hareket (Floating) Animasyonu */

/* Önce animasyonu tanımlayın */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* Yukarı hareket */
    }
    100% {
        transform: translateY(0);
    }
}

/* Animasyonu görsele uygulayın */
.story-section .image-column .image {
    /* Yukarıdaki kodlara ek olarak bu satırı ekleyin */
    animation: floatAnimation 6s ease-in-out infinite;
}
/* ==================================================================== */
/* Neden Biz? Bölümü - Ortalama ve Dengeleme
/* ==================================================================== */

/* "Neden Biz?" bölümündeki ana satırı flex container yapıyoruz */
.story-section .row,
.neden-biz-bolumu .row { /* Sitenizde farklı bir class adı olabilir, bu ikisi yaygındır */
    display: flex;
    align-items: center; /* DİKEY ORTALAMA İÇİN EN ÖNEMLİ KOD */
    flex-wrap: wrap; /* Mobil cihazlarda alt alta geçmeyi sağlar */
}

/* Logo sütununun içeriğini de kendi içinde ortalamak için */
.story-section .image-column .inner-column,
.neden-biz-bolumu .logo-column .inner-column {
    width: 100%;
    text-align: center; /* Logoyu yatayda ortalar */
}

.testimonial-section .content-column .inner-column {
    background-color: #ffffff !important;
    color: #0066bd !important;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-section .content-column .inner-column a,
.testimonial-section .content-column .inner-column span,
.testimonial-section .content-column .inner-column .text {
    color: #0066bd !important;
}
/* Masaüstünde gizle */
.mobil-only {
    display: none;
}
/* ==================================================================== */
/* RENT A CAR MOBİLDE GÖSTERME
/* ==================================================================== */
/* Masaüstü menüde Rent A Car linkini gizle */
.main-header .main-menu .navigation > li.mobil-only-item {
    display: none;
}

/* Mobil menüde Rent A Car linkini göster */
/* Temanın yapısı gereği mobil menüdeki ".navigation" listesi kopyalanır. */
/* Bu yüzden ek bir koda genellikle gerek kalmaz, ancak garanti olması için: */
.mobile-menu .navigation > li.mobil-only-item {
    display: block;
}
/* =================================================================== */
/* YAPIŞKAN MENÜ - MOBİL İKONLARI YAN YANA HİZALAMA (GÖRSELE GÖRE)
/* =================================================================== */

/* Bu kodlar SADECE 991px ve altı (mobil/tablet) ekranlar için çalışacak */
@media (max-width: 991px) {

    /* İkonları içeren .outer-box'ı bir flex container yap */
    .sticky-header .outer-box {
        display: flex !important;
        align-items: center !important;
    }
    
    /* Yapışkan menüdeki boş navigasyon alanını gizle */
    .sticky-header .main-menu {
        display: none !important;
    }

    /* --- ARAMA İKONU (ÖNCE GELECEK) --- */
    .sticky-header .search-box-btn {
        display: flex !important; /* Görünürlüğü garantile */
        order: 1; /* İlk sıraya al */
        margin-right: 0; /* Varsa sağ boşluğu sıfırla */
    }
    
    /* --- MOBİL MENÜ İKONU (SONRA GELECEK) --- */
    .sticky-header .mobile-nav-toggler {
        display: block !important; /* Görünürlüğü garantile */
        order: 2; /* İkinci sıraya al */
        color: #0066bd; /* İkon rengini BEYAZ yapar */
        font-size: 28px;
        cursor: pointer;
        margin-left: 15px; /* Arama ikonuyla arasına boşluk koy */
    }

    /* Yapışkan menüdeki arama ikonunun rengini de beyaz yapalım */
    .sticky-header .search-box-btn .fa-search {
        color: #0066bd !important;
    }
    
    /* Yapışkan menüdeki arama ikonunun çerçevesini kaldıralım (isteğe bağlı) */
    .sticky-header .search-box-btn {
        border: 1px solid #0066bd; /* Beyaz çerçeve */
        background-color: transparent;
        padding: 6px 8px;
    }

    .sticky-header .search-box-btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

/* Bu kodlar SADECE 992px ve üstü (masaüstü) ekranlar için çalışacak */
@media (min-width: 992px) {
    /* Yapışkan menüdeki mobil ikonu masaüstünde kesinlikle gizle */
    .sticky-header .mobile-nav-toggler {
        display: none !important;
    }
}
/* =================================================================== */
/* İLETİŞİM SAYFASI - MOBİL HARİTA GÖRÜNÜMÜ DÜZENLEMESİ
/* =================================================================== */

/* Bu kodlar SADECE 767px ve altı (mobil) ekranlar için çalışacak */
@media (max-width: 767px) {

    /* E-bülten kutusunun haritanın üzerine binmesini engelle */
    .newsletter-section .content-box {
        position: relative; /* Üst üste binmeyi engellemek için pozisyonu değiştir */
        margin-top: 0;      /* Varsa negatif margin'i sıfırla */
        margin-bottom: 30px;/* Harita ile arasına boşluk koy */
        transform: none;    /* Varsa transform'u sıfırla */
        left: 0;
        right: 0;
        width: auto;
    }

    /* Harita alanının yüksekliğini ayarla ki görünür olsun */
    .newsletter-section .map-outer {
        position: relative;
        height: 400px; /* Harita için sabit bir yükseklik ver */
        margin-top: 0;
    }

    /* Ana kapsayıcıya biraz boşluk verelim */
    .newsletter-section {
        padding-top: 50px;
    }
}