/* ===== FOOTER ===== */
.footer-main {
  color: #f4f6f8;
}

/* ── İki kolon flex: gutter yok, border'lar tam köşede buluşur ── */
.footer-cols {
  display: flex;
  align-items: stretch; /* her iki kolon aynı yükseklikte */
}

/*
  Sol kolon:
  - border-right  → dikey çizgi, tam üstten (logo hizası) başlar
  - align-items:stretch sayesinde sağ kolonla aynı boyda biter
  - padding-right → içerik border'dan 55px uzakta
*/
.footer-left-col {
  width: 38%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-right: 65px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

/* Sağ kolon: footer-right-col CSS'i aşağıda footer-menus bölümünde tanımlandı */

/* Logo */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/*
  HR:
  - margin: 26px → üst/alt boşluk
  - margin-right: -55px → padding'i aşıp border-right'a kadar uzanır
    böylece HR sağ ucu dikey çizgiye dokunur (kavşak noktası görsel)
*/
.footer-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 56px -65px 56px 0;
}

/* E-Bülten başlık */
.footer-block-title {
  font-size: 16px;
  font-weight: 700;
  color: #f4f6f8;
  margin-bottom: 14px;
}

/* E-posta input */
.footer-bulten-input {
  background: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  color: #90949c !important;
  height: 70px;
  border-radius: 5px;
  font-size: 16px;
  padding: 0 25px;
}
.footer-bulten-input:focus {
  background: #e8e8e8 !important;
  border-color: #e8e8e8 !important;
  outline: none;
}
.footer-bulten-input::placeholder {
  color: #90949c !important;
  font-size: 16px; opacity: 1 !important;
}

/* Checkbox + buton satırı */
.footer-form-row {
  margin-top: 14px;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}
.footer-kvkk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #f4f6f8;
  cursor: pointer;
  flex: 1;
  line-height: 1.4;
}
.footer-kvkk .uk-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.footer-btn-red {
  background: #e20032;
  color: #fff;
  border: none; 
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s; font-family: proxima-nova, sans-serif;
}
.footer-btn-red:hover {
  background: #b80016;
}

/* İletişim + robot yan yana */
.footer-contact-robot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
}
.footer-contact-wrap { flex: 1; }
.footer-contact-email {
  font-size: 18px;
  color: #f4f6f8;
  margin-bottom: 8px;
}
.footer-contact-email:hover{
    color: #e20032;
}
.footer-contact-phone {
  font-size: 24px;
  font-weight: 300;
  color: #f4f6f8;
  margin-bottom: 0;
}
.footer-contact-phone:hover{
  color: #e20032;
}
.footer-robot-box {
  flex-shrink: 0;
  padding-left: 12px;
}
.footer-robot-img {
  width: 150px;
  display: block;
}

/* Copyright: flex col'da en alta yaslanır */
.footer-copy {
  font-size: 16px;
  color: #ffffff;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 36px;
}
.footer-copy-mobile {
  display: none;
}

/* Sağ kolon içi: menüler + social aşağıda */
.footer-right-col {
  flex: 1;
  padding-left: 65px;
  display: flex;
  flex-direction: column;
}

/* Menü grid: 3 eşit sütun, altta border dikey çizgiye bitişik uzanır */
.footer-menus {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 50px;
  padding-top: 5px;
  padding-bottom: 45px;
  position: relative;
}
/* border-bottom'u sola 55px uzat → footer-left-col border-right'a tam kavuşur */
.footer-menus::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.footer-cat-head {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #e8e8e8;
  margin: 0 0 30px;
}
.footer-tesisler-gap { margin-top: 50px; }
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.footer-link-list li { margin-bottom: 13px; }
.footer-link-list li a {
  color: #e8e8e8;
  font-size: 16px; font-weight:300;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.footer-link-list li a:hover { color: #e20032; }

/* Social bar: sağ kolonun içinde, menünün altında */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 35px 0;
  gap: 4px;
}
.footer-soc-label {
  color: #e8e8e8;
  font-size: 16px;
  margin-right: 10px; font-weight: 200;
}
.footer-soc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  margin-left: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.footer-soc-ico:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
}
.footer-soc-ico svg { fill: #fff; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width:320px) {
  .footer-contact-phone { font-size: 17px; }
}

@media (min-width:321px) {}
@media(min-width:640px) {}
@media(min-width:960px) {}
@media(min-width:1200px) {}
@media(min-width:1400px) {}
@media(min-width:1600px) {}

@media(max-width:1199px) {
  .footer-cols { flex-direction: column; }
  .footer-left-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-right: 0;
    padding-bottom: 36px;
  }
  .footer-sep { margin-right: 0; }
  .footer-right-col { padding-left: 0; padding-top: 36px; }
  .footer-copy { margin-top: 20px; }
  .footer-social { justify-content: flex-start; }
  .footer-copy-desktop { display: none; }
  .footer-copy-mobile {
    display: block;
    margin-top: 18px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media(max-width:767px) {
  .footer-menus { grid-template-columns: repeat(2, 1fr); gap: 30px 30px; }
}

@media(max-width:479px) {
  .footer-menus { grid-template-columns: 1fr; }
  .footer-robot-box { display: none; }
  .footer-bar-right { flex-wrap: wrap; gap: 8px; }
}


.slogan-1 {
  font-size: 58px;
  font-weight: 200;
  color: #ffffff;
}

/* Slider videoyu lacivert tona yedir */
.slide-video-bg {
  background: #434856;
  isolation: isolate;
}

.slide-video-media {
  filter: brightness(0.95) saturate(0.9);
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.slide-video-multiply {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(
      ellipse at center,
      rgba(67, 72, 86, 0) 28%,
      rgba(67, 72, 86, 0.55) 62%,
      rgba(67, 72, 86, 1) 100%
    ),
    linear-gradient(
      to top,
      rgba(67, 72, 86, 1) 0%,
      rgba(67, 72, 86, 0.95) 20%,
      rgba(67, 72, 86, 0.55) 45%,
      rgba(67, 72, 86, 0) 75%
    );
  pointer-events: none;
}


@media (min-width:321px) {
  .sticky {
    position: fixed !important;
    z-index:999;
    margin-top: 0px;
    -moz-transition: all 0.2s ease-out;  	-o-transition: all 0.2s ease-out;  	-webkit-transition: all 0.2s ease-out;  	-ms-transition: all 0.2s ease-out; background: #2c2e35; box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  }

  .sticky .logo{ background: url('/images/logo.webp') no-repeat center left; width: 167px; background-size: 127px; height: 70px; margin-top: 0px;display: block;}
  .logo{ background: url('/images/logo.webp') no-repeat center left; width: 167px; background-size: 127px; height: 70px; display: block;margin-top: 10px; }
}
@media(min-width:1200px) {
  .sticky {
  position: fixed !important;
  z-index:999;
  margin-top: -40px;
  -moz-transition: all 0.2s ease-out;  	-o-transition: all 0.2s ease-out;  	-webkit-transition: all 0.2s ease-out;  	-ms-transition: all 0.2s ease-out; background: #2c2e35; box-shadow: 0 2px 24px rgba(0,0,0,0.45);}
  .sticky .logo{ background: url('/images/logo.webp') no-repeat center left; width: 83px; background-size: 83px; height: 99px; margin: 50px 0 10px 0;display: block;}
  .logo{ background: url('/images/logo.webp') no-repeat center center; width: 83px; background-size: 83px; height: 99px; display: block;margin-top: 56px; }


.uk-navbar-nav>li>a{ color: #ffffff; font-size: 16px; margin: 0 5px 0 5px; font-weight: 500; text-transform: uppercase;}
.uk-navbar-nav>li.uk-active>a{ color: #fff; font-size: 18px;}
.uk-navbar-dropdown-nav>li>a{ color: #000; font-size: 15px; text-align: left;}

.sticky .uk-navbar-nav>li>a{ color: #fff; font-size: 16px; margin: 0 5px 0 5px; font-weight: 500;}
.sticky .uk-navbar-nav>li.uk-active>a{ color: #fff; font-size: 16px;}
.sticky .uk-navbar-dropdown-nav>li>a{ color: #000; font-size: 15px;}
.sticky .uk-navbar-nav>li:hover>a, .uk-navbar-nav>li>a[aria-expanded=true]{ color: #e20032;}
}

.gap-30{ gap: 30px; }
/* ===== NAVBAR YENİ TASARIM ===== */

/* Header koyu arka plan */

/* Masaüstü menü alanı: üstte telefon, altta menü */
.header-desktop-right {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.header-desktop-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 30px;
}

.header-top-line {
  flex: 1;
  min-width: 0;
  border-top: 1px solid rgb(255 255 255 / 17%);
}

/* Telefon numarası linki */
.nav-phone-link {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-phone-link:hover { opacity: 0.8; }

.nav-phone-num {
  color: #d4d4d7;
  font-size: 20px;
  font-weight: 300;
}
.nav-phone-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Telefon ile menü arasındaki yatay ayraç çizgisi */
.topmenu-mt {
  flex: 1;
  margin-top: 56px;
  border-top: 0 !important;
  padding-top: 0;
}

/* Sticky durumda telefon satırını gizle */
.sticky .topmenu-top {
  display: none;
}

.sticky .topmenu-mt {
  margin-top: 35px !important;
}

.topmenu-top {
  position: static !important;
  top: auto !important;
  right: auto !important;
  z-index: 2;
  width: 100%;
  text-align: right;
}

/* Dil butonu – kırmızı daire */
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #e20032;
  color: #fff !important;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  margin-left: 0;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}

.nav-lang-btn-desktop {
  align-self: center;
}
.nav-lang-btn:hover { background: #e20032; color: #fff !important; }
.nav-lang-btn [uk-icon] { color: #fff; margin-top: 1px; }

.nav-lang-wrap {
  position: relative;
  display: inline-flex;
}

.nav-lang-dropdown {
  min-width: 92px;
  padding: 6px;
  background: #2b2f38;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.nav-lang-dropdown .uk-nav > li > a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-lang-dropdown .uk-nav > li > a:hover {
  color: #fff;
  background: rgba(226, 0, 50, 0.25);
}

.nav-lang-dropdown .uk-nav > li.uk-active > a {
  color: #fff;
  background: #e20032;
}

/* Mobil dil butonu */
@media (max-width: 1199px) {
  .nav-lang-btn {
    width: 48px;
    height: 48px;
    font-size: 14px;
    margin-left: 0;
  }

  .topmenu-mt {
    margin-top: 0;
    border-top: 0 !important;
    padding-top: 0;
  }
}