/* İnsan Kaynakları — Natura benzeri, Bais renkleri */

.page-ik .site-header {
  position: absolute;
}

.ik-hero {
  position: relative;
  min-height: 420px;
  height: 48vh;
  max-height: 520px;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(115deg, rgba(20, 12, 10, 0.75) 0%, rgba(20, 12, 10, 0.4) 50%, rgba(214, 125, 92, 0.25) 100%),
    url("../../images/ik-hero.jpg") center 35% / cover no-repeat;
  color: #fff;
}

.ik-hero-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.ik-hero-title {
  color: var(--nav-active);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 18ch;
}

.ik-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.ik-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.ik-breadcrumb a:hover {
  color: var(--nav-active);
}

.ik-breadcrumb .current {
  color: var(--nav-active);
  border-bottom: 2px solid var(--nav-active);
  padding-bottom: 2px;
  font-weight: 600;
}

.ik-main {
  position: relative;
  z-index: 2;
  background: #f7f4f1;
  padding: 48px 24px 96px;
  margin-top: 0;
}

.ik-card {
  width: min(680px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 28px 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(42, 22, 18, 0.14);
  padding: clamp(28px, 4vw, 44px);
}

.ik-card h1 {
  color: #1f1a18;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}

.ik-card .ik-kicker {
  color: #8a807a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ik-card .ik-lead {
  color: #6d6460;
  font-size: 15px;
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 36px;
}

.ik-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ik-form .field {
  position: relative;
}

.ik-form .field-full {
  grid-column: 1 / -1;
}

.ik-form .field i {
  position: absolute;
  left: 2px;
  top: 14px;
  color: var(--nav-active);
  font-size: 15px;
  width: 18px;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}

.ik-form input:not([type="checkbox"]),
.ik-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d9d2cd;
  background: transparent;
  color: #2a2220;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 8px 12px 28px;
  outline: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.ik-form textarea {
  min-height: 110px;
  resize: none;
  line-height: 1.5;
  padding-top: 14px;
}

.ik-form input:not([type="checkbox"]):focus,
.ik-form textarea:focus {
  border-bottom-color: var(--nav-active);
}

.ik-form input:not([type="checkbox"])::placeholder,
.ik-form textarea::placeholder {
  color: #a59b95;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.ik-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  color: #6d6460;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  width: 100%;
}

.ik-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--nav-active);
  cursor: pointer;
  appearance: auto;
  border: none;
  padding: 0;
  background: transparent;
}

.ik-check span {
  color: #6d6460;
  flex: 1;
}

.ik-check a {
  color: var(--nav-active);
  text-decoration: underline;
  font-weight: 600;
}

.ik-submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
  border: none;
  background: var(--nav-active);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 48px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ik-submit:hover {
  background: #c46848;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .ik-main {
    padding: 32px 16px 72px;
  }

  .ik-hero {
    min-height: 320px;
    height: auto;
  }

  .ik-hero-inner {
    width: calc(100% - 32px);
    padding: 96px 0 48px;
  }

  .ik-form {
    grid-template-columns: 1fr;
  }

  .ik-submit {
    width: 100%;
    justify-self: stretch;
    border-radius: 12px;
  }
}
