/* İletişim sayfası — Natura Dünyası benzeri, Bais renkleri */

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

.contact-hero {
  position: relative;
  min-height: 380px;
  height: 42vh;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 12, 10, 0.55) 0%, rgba(20, 12, 10, 0.35) 45%, rgba(20, 12, 10, 0.55) 100%),
    url("/contact-hero.php?v=20260803d") center 45% / cover no-repeat;
  color: #fff;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 24px 48px;
}

.contact-hero-title {
  color: var(--nav-active);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

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

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

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

.contact-main {
  position: relative;
  background: #f7f4f1;
  padding: 72px 24px 100px;
  overflow: hidden;
}

.contact-main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: min(720px, 90vw);
  aspect-ratio: 1;
  background: url("../../images/logo.png") center / 55% no-repeat;
  opacity: 0.04;
  filter: brightness(0);
  pointer-events: none;
}

.contact-center {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-center-title {
  color: #2a1612;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-offices {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px 48px;
  margin-bottom: 56px;
  text-align: left;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-office {
  min-width: 0;
}

.contact-office-title {
  color: #2a1612;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.contact-office-address {
  color: #4a433f;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.contact-office-email {
  display: inline-block;
  color: #4a433f;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.contact-office-email:hover {
  color: var(--nav-active);
}

.contact-office-phone {
  display: block;
  color: #2a1612;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 8px;
}

.contact-office-phone:hover {
  color: var(--nav-active);
}

.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 50px rgba(42, 22, 18, 0.1);
  text-align: left;
}

.contact-form-card h2 {
  color: #1f1a18;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.contact-form-card .form-kicker {
  color: #8a807a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.contact-form-card .form-desc {
  color: #8a807a;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 32px;
}

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

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

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

.contact-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;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-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;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d67d5c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  color: #8a807a;
  cursor: pointer;
}

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

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

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

.contact-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%;
}

.contact-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;
}

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

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

.contact-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: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.nav-menu > li.active > a {
  color: var(--nav-active);
  border-bottom-color: var(--nav-active);
}

@media (max-width: 900px) {
  .contact-offices {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .contact-center {
    width: min(100%, 920px);
  }

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

@media (max-width: 700px) {
  .contact-hero {
    min-height: 260px;
    height: auto;
  }

  .contact-hero-inner {
    padding: 96px 16px 40px;
  }

  .contact-main {
    padding: 40px 16px 72px;
  }

  .contact-main::before {
    width: min(420px, 80vw);
    opacity: 0.025;
    top: 4%;
  }

  .contact-center-title {
    margin-bottom: 28px;
  }

  .contact-offices {
    text-align: left;
    gap: 24px;
    margin-bottom: 40px;
  }

  .contact-office-phone {
    font-size: 22px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
    min-height: 48px;
  }

  .contact-office-address,
  .contact-office-email {
    word-break: break-word;
  }

  .contact-check {
    font-size: 13px;
  }
}
