/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Common & Root
# Whatsapp & Social
# Navigations (Desktop)
# Mobile Nav (Hamburger Menu & MeanMenu Fixes)
# Banner & Harita
# Carousel & Sliders
# Page Header & Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common & Root
--------------------------------------------------------------*/
:root {
  --logistiq-font: "DM Sans", sans-serif;
  --logistiq-base: #ef6226;
  --logistiq-base-rgb: 253, 85, 35;
  --logistiq-black: #062E39;
  --logistiq-black-rgb: 6, 46, 57;
  --logistiq-gray: #565969;
  --logistiq-gray-rgb: 86, 89, 105;
  --logistiq-white: #ffffff;
  --logistiq-white-rgb: 255, 255, 255;
  --logistiq-gray-bg: #F4F5F9;
  --logistiq-gray-bg-rgb: 244, 245, 249;
  --logistiq-bdr-color: #232423;
  --logistiq-bdr-color-rgb: 35, 36, 35;
}

@font-face {
  font-family: 'Heebo';
  src: url('../../assets/fonts/Heebo-VariableFont_wght.ttf') format('truetype');
  font-style: normal;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--logistiq-white);
  font-size: 16px;
  line-height: 50px;
  font-weight: 700;
  background: var(--logistiq-base);
  border-radius: 7px;
  padding: 1px 35px 0px;
  overflow: hidden;
  font-family: var(--logistiq-font);
  text-transform: capitalize;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--logistiq-white);
}

.thm-btn i {
  margin-left: 5px;
  font-size: 15px;
}

.hover-btn {
  background-color: var(--logistiq-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx { left: 0; transition-delay: 0.105s; border-radius: 7px 0px 0px 7px; }
.hover-bx2 { left: 25%; transition-delay: 0.105s; }
.hover-bx3 { left: 50%; transition-delay: 0.105s; }
.hover-bx4 { left: 75%; transition-delay: 0s; border-radius: 0 7px 7px 0; }

.thm-btn:hover .hover-btn {
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Navigations (Desktop)
--------------------------------------------------------------*/
.top-header {
  background: linear-gradient(120deg, #000000 60%, #ef6226 60%);
  color: #fff;
  padding: 10px 0;
}

.one-menu {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left-content ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header-left-content ul li {
  margin-right: 30px;
}

.header-left-content ul li a {
  color: #fff;
  transition: color 0.3s ease;
}

.header-left-content ul li a:hover {
  color: var(--logistiq-base) !important;
}

.navbar-brand img {
  width: 150px !important;
}

.navbar-area {
  position: relative;
  z-index: 100; /* Desktop menüyü haritanın üzerine al */
}

/* Desktop Dil Seçici */
.flag-area {
  position: relative;
  z-index: 101;
}

.flag-item-top .flag-bar {
  display: flex;
  align-items: center;
  color: #fff;
}

.flag-item-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00103b;
  border-radius: 5px;
  display: none;
  list-style: none;
  padding: 5px 0;
  z-index: 1000;
  min-width: 120px;
}

.flag-item-top:hover .flag-item-bottom {
  display: block;
}

/*--------------------------------------------------------------
# Mobile Nav (Hamburger Menu & MeanMenu Fixes)
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  /* Top Header'ı mobilde gizle */
  .top-header {
    display: none !important;
  }

  /* Mobil Nav Ana Konteyner */
  .navbar-area {
    position: fixed; /* Menüyü üste sabitle */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999; /* En üstte durmalı */
    padding: 10px 0 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Logo Alanı */
  .mobile-nav .logo {
    position: relative;
    z-index: 10000; /* Hamburger ikonunun altında kalmamalı */
    max-width: 150px;
  }

  .navbar-brand img {
    width: 130px !important; /* Mobil logo boyutu */
  }

  /* MeanMenu (Hamburger) Reveal Alanı */
  .mobile-nav .mobile-menu.mean-container a.meanmenu-reveal {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%);
    z-index: 10000;
  }

  /* MeanMenu Açılır Navigasyon */
  .mobile-nav .mobile-menu.mean-container .mean-nav {
    position: absolute;
    top: 100%; /* Navbar'ın hemen altından başla */
    left: 0;
    width: 100%;
    margin-top: 10px !important; /* Navbar boşluğu */
    z-index: 9998;
    background: #fff;
  }

  /* Mobil Menü Link Boyutları */
  .mobile-nav .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 16px !important;
  }
}

/* Yatay Mod (Landscape) Optimizasyonu */
@media screen and (max-width: 992px) and (orientation: landscape) {
  .navbar-area {
    padding: 5px 0 !important;
  }

  .navbar-brand img {
    width: 110px !important; /* Yatay modda logoyu küçült */
  }

  /* Yatay modda açılır menü yüksekliğini kısıtla (ekrandan taşmaması için) */
  .mobile-nav .mobile-menu.mean-container .mean-nav {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/*--------------------------------------------------------------
# Banner & Harita
--------------------------------------------------------------*/
.banner-one {
  margin-top: 125px; /* Desktop padding */
}

/* Harita İkonları Varsayılan */
.banner-one__location-single {
  position: relative;
  z-index: 1;
}

.banner-one__location-single.style-turkey {
  position: absolute;
  top: 45%;
  left: 58%;
  transform: translate(-80%, -15%);
  z-index: 2;
}

/* Harita Konumları (Desktop) */
.banner-one__location-single.style1 { top: 35% !important; left: 18% !important; }
.banner-one__location-single.style7 { top: 65% !important; left: 77% !important; }
.banner-one__location-single.style3 { top: 37% !important; left: 52% !important; z-index: 10; }

/* Mobil Harita Düzenlemeleri */
@media screen and (max-width: 768px) {
  .banner-one {
    margin-top: 90px !important; /* Mobil Navbar yüksekliğine göre ayarlandı */
  }

  .banner-one__location-single.style-turkey {
    position: absolute;
    top: 24%;
    left: 58%;
    transform: translate(-50%, -50%) scale(0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Carousel & Sliders
--------------------------------------------------------------*/
.carousel-inner {
  display: flex;
}

.carousel-inner .carousel-item {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#myCarousel {
  width: 810px;
  height: 500px;
  overflow: hidden;
  margin: auto;
}

@media (max-width: 767px) {
  #myCarousel {
    width: 100%; /* Mobilde tam genişlik */
    height: 202px;
  }
}

.carousel-indicators button {
  border-radius: 50%;
  width: 15px !important;
  height: 15px !important;
  background-color: #fff;
  border: 2px solid #000;
}

.carousel-indicators .active {
  background-color: #000;
}

/*--------------------------------------------------------------
# Page Header & Footer
--------------------------------------------------------------*/
.page-title-area.bg-20 { background-image: url(../../assets/img/page-bg/ogrenci.jpg); }
.page-title-area.bg-21 { background-image: url(../../assets/img/page-bg/personel.jpg); }
.page-title-area.bg-23 { background-image: url(../../assets/img/page-bg/page-bg-1.jpg); }
.page-title-area.bg-24 { background-image: url(../../assets/img/page-bg/TURİZM.jpg); }
.page-title-area.bg-25 { background-image: url(../../assets/img/page-bg/VIP.jpg); }

@media (max-width: 768px) {
  .page-title-area {
    padding-top: 180px !important;
  }
}

.single-footer-widget img {
  width: 150px !important;
}

/*--------------------------------------------------------------
# Whatsapp
--------------------------------------------------------------*/
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 15px;
    bottom: 15px;
  }
}

/* menü üstü */

/* iPad Air Landscape */
@media only screen
and (min-width: 820px)
and (max-width: 1180px)
and (orientation: landscape) {

    .top-header .one-menu{
        width:100% !important;
        max-width:100% !important;
        padding:0 20px !important;
    }

    .header-left-content{
        margin-left:-5px !important;
    }

    .top-header .header-left-content li i {
          top: 2px !important;
    }
}

/* iPad Pro Portrait */
@media only screen
and (min-width: 1024px)
and (max-width: 1024px)
and (orientation: portrait) {

    .top-header .one-menu{
        width:100% !important;
        max-width:100% !important;
        padding:0 25px !important;
    }

    .header-left-content{
        margin-left:-5px !important;
    }

    .top-header .header-left-content li i{
      top:2px !important;
    }
}

/* Büyük ekran tablet / laptop landscape */
@media only screen
and (min-width:1280px)
and (max-width:1400px)
and (orientation:landscape){

    .top-header .header-left-content li i{
        top:2px !important;
    }

}

/* Tablet ve küçük laptop menü düzeltmesi */
@media only screen and (min-width:992px) and (max-width:1368px){

    .desktop-nav .navbar-nav .nav-link{
        display:flex !important;
        align-items:center !important;
        white-space:nowrap !important;
    }

    .desktop-nav .navbar-nav .nav-link i{
        display:inline-flex !important;
        align-items:center !important;
        margin-left:6px !important;
        margin-top:0 !important;
        position:static !important;
        line-height:1 !important;
        flex-shrink:0 !important;
    }

}

/* 1184x690 - 1202x690 arası header yazılarını hafif sola al */
@media only screen
and (min-width:1182px)
and (max-width:1202px)
and (orientation:landscape){

    .header-left-content{
        position:relative !important;
        left:-40px !important;
    }
}

/* 1184x690 - 1274x690 arası üst header ikon hizası */
@media only screen
and (min-width:1182px)
and (max-width:1278px)
and (orientation:landscape){

    .top-header .header-left-content li i{
        top:2px !important;
    }
}