/* ==========================================================================
   IC Nükleer Teknoloji — İletişim sayfası
   ========================================================================== */

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(70px, 10vw, 170px);
  padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 125px);
}

.contact-intro h2 {
  font-size: clamp(48px, 5.2vw, 82px);
}

.contact-intro > p {
  max-width: 580px;
  margin: 35px 0 0;
  color: #073d2f99;
  font-size: 16px;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   İletişim kanalları
   -------------------------------------------------------------------------- */
.contact-channels {
  margin-top: 65px;
  border-top: 1px solid #073d2f21;
}

.contact-channels a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  min-height: 82px;
  border-bottom: 1px solid #073d2f21;
  transition: padding 0.35s, background 0.35s;
}

.contact-channels a:hover {
  background: linear-gradient(90deg, #16815f0f, #0000);
  padding-left: 8px;
}

.contact-channels small {
  grid-column: 1;
  color: #073d2f73;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channels strong {
  grid-column: 1;
  margin-top: 7px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
}

.contact-channels i {
  grid-area: 1 / 2 / 3;
  align-self: center;
  color: #16815f;
  font-style: normal;
  transition: transform 0.3s;
}

.contact-channels a:hover i {
  transform: translate(3px, -3px);
}

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
  padding: clamp(34px, 4vw, 60px);
  border: 1px solid #073d2f1a;
  border-radius: 30px;
  background: #f5f9f7;
  box-shadow: 0 30px 75px #05362814;
}

.form-head,
.contact-form .wide {
  grid-column: 1 / -1;
}

.form-head {
  margin-bottom: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid #073d2f1f;
}

.form-head span {
  font-size: 25px;
  font-weight: 400;
}

.form-head p {
  margin: 8px 0 0;
  color: #073d2f80;
  font-size: 12px;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid #073d2f33;
  outline: 0;
  background: none;
  color: #073d2f;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: #16815f;
}

.contact-form textarea {
  padding-top: 8px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #073d2f8c;
  font-size: 11px;
  line-height: 1.5;
}

.consent input {
  margin-top: 2px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: #087456;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
}

.form-submit:hover {
  background: #0a8b66;
}

.form-submit i {
  font-style: normal;
}

/* Gönderim sonrası bilgilendirme */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  grid-column: 1 / -1;
  text-align: center;
}

.form-success > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0b7657;
  color: #fff;
  font-size: 26px;
}

.form-success strong {
  margin-top: 22px;
  font-size: 22px;
  font-weight: 400;
}

.form-success p {
  margin: 12px 0 0;
  color: #073d2f8c;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Duyarlı davranış
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .contact-section {
    display: block;
    padding: 75px 20px;
  }

  .contact-channels {
    margin-top: 45px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    margin-top: 65px;
    padding: 30px 22px;
  }

  .contact-form label,
  .form-head,
  .contact-form .wide {
    grid-column: 1;
  }
}
