.elementor-12 .elementor-element.elementor-element-2ef5394{padding:10px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-2ef5394 */:root {
  --aftas-navy: #0b1828;
  --aftas-navy-soft: #142235;
  --aftas-text: #172132;
  --aftas-muted: #697386;
  --aftas-border: rgba(11, 24, 40, 0.09);
  --aftas-white: #ffffff;
  --aftas-cream: #f7f5f0;
  --aftas-bronze: #b6a27d;
}

* {
  box-sizing: border-box;
}

body.aftas-menu-active {
  overflow: hidden;
}

.aftas-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.aftas-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--aftas-border);
  box-shadow: 0 18px 50px rgba(11, 24, 40, 0.07);
}

.aftas-header__inner {
  max-width: 1280px;
  height: 86px;
  margin: 0 auto;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.aftas-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.aftas-header__logo img {
  display: block;
  width: 188px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.aftas-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.aftas-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--aftas-text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.aftas-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--aftas-bronze);
  transition: width 0.25s ease;
}

.aftas-nav a:hover {
  color: var(--aftas-navy);
}

.aftas-nav a:hover::after {
  width: 100%;
}

.aftas-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.aftas-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--aftas-navy);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid var(--aftas-navy);
  box-shadow: 0 14px 30px rgba(11, 24, 40, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.aftas-header__cta:hover {
  transform: translateY(-1px);
  background: var(--aftas-navy-soft);
  box-shadow: 0 18px 38px rgba(11, 24, 40, 0.2);
}

.aftas-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--aftas-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.aftas-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--aftas-navy);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.aftas-header.is-menu-open .aftas-menu-btn span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.aftas-header.is-menu-open .aftas-menu-btn span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.aftas-mobile-panel {
  display: none;
}

/* Tablet */
@media (max-width: 1100px) {
  .aftas-header__inner {
    padding: 0 28px;
    gap: 22px;
  }

  .aftas-nav {
    gap: 22px;
  }

  .aftas-header__logo img {
    width: 170px;
  }
}

/* Mobile */
@media (max-width: 980px) {
  .aftas-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--aftas-border);
  }

  .aftas-header__inner {
    height: 76px;
    padding: 0 20px;
  }

  .aftas-header__logo img {
    width: 158px;
  }

  .aftas-nav,
  .aftas-header__cta {
    display: none;
  }

  .aftas-menu-btn {
    display: inline-flex;
  }

  .aftas-mobile-panel {
    display: block;
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--aftas-border);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,245,240,0.96));
    box-shadow: 0 30px 80px rgba(11, 24, 40, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .aftas-header.is-menu-open .aftas-mobile-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .aftas-mobile-nav {
    display: grid;
    gap: 4px;
  }

  .aftas-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    color: var(--aftas-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }

  .aftas-mobile-nav a::after {
    content: "↗";
    font-size: 13px;
    color: var(--aftas-bronze);
    opacity: 0.8;
  }

  .aftas-mobile-nav a:hover {
    background: rgba(11, 24, 40, 0.05);
    color: var(--aftas-navy);
    transform: translateX(2px);
  }

  .aftas-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 14px;
    border-radius: 18px;
    background: var(--aftas-navy);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 34px rgba(11, 24, 40, 0.16);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .aftas-header__inner {
    height: 70px;
    padding: 0 16px;
  }

  .aftas-header__logo img {
    width: 140px;
  }

  .aftas-menu-btn {
    width: 42px;
    height: 42px;
  }

  .aftas-mobile-panel {
    top: 70px;
    left: 10px;
    right: 10px;
    border-radius: 22px;
    padding: 14px;
  }

  .aftas-mobile-nav a {
    min-height: 50px;
    font-size: 14px;
  }
}
/* Mobil menü butonu pembe hover fix */
.aftas-menu-btn,
.aftas-menu-btn:hover,
.aftas-menu-btn:focus,
.aftas-menu-btn:active {
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--aftas-navy) !important;
  border-color: var(--aftas-border) !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.aftas-menu-btn:hover span,
.aftas-menu-btn:focus span,
.aftas-menu-btn:active span {
  background: var(--aftas-navy) !important;
}/* End custom CSS */