/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 02 2026 | 05:10:04 */
 /* ========== LAYOUT ========== */
.k-header {
  width: 100%;
}

.k-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== DESKTOP ORDER ===== */
.k-logo {
  order: 1;
}

.k-nav {
  order: 2;
}

.k-contact-btn {
  order: 3;
}

.k-burger {
  order: 4;
}

/* ========== TOPBAR ========== */
.k-topbar {
  background: #1C426C;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.k-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 10px 5px;
  max-width: 1345px;
  margin: 0 auto;
  padding-left: var(--wp--preset--spacing--30);
  padding-right: var(--wp--preset--spacing--30);
}

.k-lang,
.k-office {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-lang-btn,
.k-office-btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 10px;
/*   border: 1px solid rgba(0, 0, 0, 0.12); */
	border: 1px solid #1C426CCC;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;

  font: inherit;
  line-height: 1;
}

/* .k-lang-btn::after,
.k-office-btn::after {
  content: "";
  font-size: 12px;
  opacity: 0.75;
} */

/* Dropdowns */
.k-lang-menu,
.k-office-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -60%;

  min-width: 100%;
  margin: 0;
  padding: 4px 10px;
  list-style: none;

  background: #fff;
  color: #152746;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);

  display: none;
  z-index: 2001;
}

.k-office-menu {
  min-width: 150px;
}

.k-lang.is-open .k-lang-menu,
.k-office.is-open .k-office-menu {
  display: inline-block;
}

.k-lang-menu a,
.k-office-menu button {
  display: block;
  width: 100%;
  padding: 8px 10px;

  text-align: left;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;

  text-decoration: none;
  color: inherit;
  font: inherit;
}

.k-lang-menu a {
  width: 90%;
}

.k-lang-menu123 a:hover,
.k-office-menu button:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Office info */
.k-office-info {
  display: none;
  align-items: center;
  gap: 14px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.k-office-info.is-active {
  display: flex;
}

.k-office-info a {
  text-decoration: none;
  color: inherit;
}

/* ========== HEADER MAIN ========== */
.k-header-main {
  position: relative;
/*   background: #fafbfd; */
}

.k-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 14px 5px;
  max-width: 1345px;
  margin: 0 auto;
  padding-left: var(--wp--preset--spacing--30);
  padding-right: var(--wp--preset--spacing--30);
}

.k-logo {
  margin-right: auto;
}

.k-logo img {
  display: block;
  max-width: 170px;
  height: auto;
}

.k-nav {
  flex: 0 0 auto;
}

/* Socials */
.k-socials {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}

.k-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.k-socials i {
  font-size: 16px;
}

/* Burger */
.k-burger {
  display: none;
  width: 44px;
/*   height: 44px; */

  padding: 10px;
  background: transparent;
  border: none;
/*   border-radius: 12px; */
  cursor: pointer;
}

.k-burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  
}

.k-burger i {
  font-size: 32px;
  color: #1C426C;
}

/* ========== MENU BASE ========== */
.k-menu {
  display: flex;
  align-items: center;
  gap: 18px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.k-menu > li {
  position: relative;
}

.k-menu > li > a {
  display: inline-block;
  padding: 10px 6px;

  font-size: 18px;
  text-decoration: none;
  color: inherit;
}

/* Submenus */
.k-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 250px;
  margin: 0;
  padding: 8px;
  list-style: none;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);

  display: none;
  z-index: 2000;
}

.k-menu .sub-menu a {
  display: block;
  padding: 8px 10px;

  font-size: 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
}

.k-menu .sub-menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ========== DESKTOP ========== */
@media (min-width: 981px) {
  .k-menu li.has-sub:hover > .sub-menu,
  .k-menu li.has-sub:focus-within > .sub-menu {
    display: block;
  }

  .k-menu .sub-menu > li {
    position: relative;
  }

  .k-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
    margin-top: -8px;
  }

  .k-menu > li.has-sub::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
  }

  .k-menu .sub-menu > li.has-sub::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 14px;
    height: 100%;
  }

  .k-menu > li.is-mega {
    position: static;
  }

  .k-mega {
    position: absolute;
    left: 50%;
    top: calc(100% - 5px);
    transform: translateX(-50%);

    width: min(1200px, 96vw);
    padding: 24px;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    display: none;
    z-index: 3000;
  }

  .k-menu > li.is-mega.is-mega-open > .k-mega,
  .k-menu > li.is-mega:hover > .k-mega {
    display: block;
  }

  .k-mega-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #152746;
  }

  .k-mega-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .k-mega-col li a {
    display: block;
    padding: 6px 0;

    font-size: 16px;
    text-decoration: none;
    color: #333;
  }

  .k-mega-col li a:hover {
    color: #152746;
  }

  .k-mega-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 980px) {
  .k-burger {
    display: inline-block;
  }

  .k-socials,
  .k-office-info {
    display: none !important;
  }

  .k-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: none;
    padding: 16px;
    background: #FAFBFD;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 2000;
  }

  .k-header.is-mobile-open .k-nav {
    display: block;
  }

  .k-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .k-menu > li > a {
    width: 100%;
    padding: 14px 5px;
  }

  .k-menu li.has-sub > a::after {
    content: "▾";
    float: right;
    transition: transform 0.25s ease;
  }

  .k-menu li.has-sub.is-open > a::after {
    transform: rotate(180deg);
  }

  .k-menu .sub-menu {
    position: static;
    display: none;
    padding-left: 14px;

    background: transparent;
    border: none;
    box-shadow: none;
  }

  .k-menu .sub-menu .sub-menu {
    padding-left: 22px;
  }

  .k-menu .sub-menu .sub-menu .sub-menu {
    padding-left: 30px;
  }

  .k-menu li.is-open > .sub-menu {
    display: block;
  }

  .k-office-menu {
    right: 0;
    left: auto;
  }

  /* Mega menu on mobile */
  .k-mega {
    position: static;
    display: none;
    background: #f1f3f5;
    border: none;
    box-shadow: none;
    transform: none;
  }

  .k-menu li.is-open > .k-mega {
    display: block;
  }

  .k-mega-col {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .k-mega-col:last-child {
    border-bottom: none;
  }

  .k-mega-media {
    display: none;
  }
	
  .k-logo img {
  max-width: 140px;
}
}

/* ================= CONTACT BUTTON ================= */
.k-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 15px;
  margin-left: 12px;
	
	

/*   border: 1px solid #152746; */
  border-radius: 12px;

/*   font-size: 14px; */
  font-weight: 500;
  background: #1C426C ;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;

  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.k-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 39, 70, 0.25);
}

/* ================= MOBILE ORDER FIX ================= */
@media (max-width: 980px) {
  .k-logo {
    order: 1;
  }

  .k-contact-btn {
    order: 2;
    font-size: 15px;
    border-radius: 11px;
    margin-left: 0;
  }

  .k-burger {
    order: 3;
  }

  .k-nav {
    order: 4;
  }
} 



/* yeni ek versiyon */

/*Desktop sıralama */
@media (min-width: 981px) {
  .k-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .k-logo            { order: 1; }
  .k-nav             { order: 2; }
  .k-lang            { order: 3; }
  .k-desktop-contact { order: 4; }
  .k-burger          { order: 5; }

  /* Mobil versiyonu gizle */
  .k-mobile-contact {
    display: none;
  }
}

/* Mobile */
@media (max-width: 980px) {
  /* Topbar tamamen gizlenir */
  .k-topbar {
    display: none !important;
  }

  .k-header-inner {
/*     flex-wrap: wrap; */
/* 	  width:100%; */
  }

  .k-logo            { order: 1; }
  .k-lang            { order: 2; margin-left: auto; }
  .k-contact-btn     { display: none; }           /* desktop versiyonu gizle */
  .k-burger          { order: 3; margin-left: 0px; }

  .k-nav {
    order: 4;
/*     width: 100%; */
    margin-top: 0px;
  }

  .k-mobile-contact {
    margin-top: 16px;
	margin-left: 5px;
/*     padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08); */
/*     text-align: center; */
  }

  .k-mobile-contact .k-contact-btn {
    display: inline-flex;
    width: auto;
/*     min-width: 160px; */
    justify-content: center;
    margin: 0 auto;
  }
}


.k-office-info svg {
  vertical-align: middle;
}


.wpcf7-form-control[name="your-country"] {
    -webkit-appearance: none;  
    -moz-appearance: none;     
    appearance: none;          
    padding-right: 2rem;       
    background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="gray" stroke-width="1" height="12" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"><path d="M2 4 L6 8 L10 4"/></svg>') no-repeat right 0.7rem center;
    

    background-size: 1rem 1rem;

    background-color: #fff;
}