/* İletişim modülleri: GTO'nun mevcut tipografi ve renk sistemiyle yönlendirme odaklı akış. */
.contact-page { background: var(--paper); }

/* Ortak iletisim sekme seridi: masthead'den bagimsiz, icerik konteynerinin ustunde belirgin segment/pill sekmeler.
   Her sekme gercek bir sayfa baglantisidir (gizli panel degil). */
.contact-tabs {
  position: relative;
  z-index: 1;
  margin-top: -28px; /* Masthead ile 28px'lik goruntusel bosluk: serit hero'nun altina hafifce biner */
  padding: 0;
}

.contact-tabs__track {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 14px 40px rgba(17, 20, 45, 0.10);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.contact-tabs__track::-webkit-scrollbar {
  display: none;
}

.contact-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: max-content;
  min-height: 52px;
  padding: 0 22px;
  color: var(--ink);
  background: transparent;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  scroll-snap-align: start;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--navy);
  flex: 0 0 auto;
  transition: color 160ms ease;
}

.contact-tab__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.contact-tab:hover {
  color: var(--navy);
  background: #eef0fa;
}

.contact-tab:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white);
}

.contact-tab.is-active,
.contact-tab.is-active:hover {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(60, 73, 152, 0.28);
}

.contact-tab.is-active .contact-tab__icon {
  color: var(--white);
}

/* Serit hero'nun altina bindigi icin takip eden icerigin ust boslugu kisalir */
.contact-tabs + .contact-subcontent,
.contact-tabs + .contact-records-section {
  padding-top: 48px;
}

@media (max-width: 860px) {
  .contact-tab {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  .contact-tabs {
    margin-top: -24px;
  }

  .contact-tabs__track {
    gap: 4px;
    padding: 5px;
    border-radius: calc(var(--radius) + 4px);
  }

  .contact-tab {
    min-height: 46px;
    padding: 0 15px;
    gap: 8px;
  }

  .contact-tabs + .contact-subcontent,
  .contact-tabs + .contact-records-section {
    padding-top: 36px;
  }
}

/* Masthead: yalniz eyebrow + baslik + kisa aciklama; alt bosluk sekme seridine yer acar */
.contact-hero { background: var(--navy); color: #fff; margin: 0; }
.contact-hero__inner { align-items: stretch; display: grid; gap: 64px; grid-template-columns: minmax(0, 1fr) 300px; min-height: 304px; padding-bottom: 48px; padding-top: 48px; }
.contact-hero__copy { align-self: center; max-width: 790px; }
.contact-hero .eyebrow { color: #b9c0ee; }
.contact-hero h1 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(35px, 5.1vw, 66px); font-weight: 800; letter-spacing: -.055em; line-height: 1.02; margin: 14px 0 16px; max-width: 760px; }
.contact-hero p { color: #d8dcf4; font-size: 17px; line-height: 1.65; margin: 0; max-width: 650px; }
.contact-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-hero .button--outline { border-color: rgba(255,255,255,.48); color: #fff; }
.contact-hero .button--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.contact-hero__signal { align-self: stretch; background: rgba(255,255,255,.08); display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.contact-hero__signal span { color: #b9c0ee; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-hero__signal span svg { display: inline; height: 15px; margin-right: 5px; vertical-align: -3px; width: 15px; }
.contact-hero__signal small { color: rgba(255,255,255,.64); font-size: 12px; margin-top: 15px; }
.contact-hero__signal strong { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; margin-top: 3px; }
.contact-hero__signal a { color: #e7e9fb; font-size: 13px; margin-top: 5px; overflow-wrap: anywhere; }

.contact-routing { background: #fff; padding: 64px 0 70px; }
.contact-routing__heading { align-items: end; display: grid; gap: 48px; grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr); margin-bottom: 32px; }
.contact-routing h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(29px, 3.6vw, 46px); letter-spacing: -.05em; line-height: 1.06; margin: 9px 0 0; max-width: 650px; }
.contact-routing__heading p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }
.contact-routing__grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-route { align-items: center; background: #f2f4fa; color: var(--ink); display: grid; gap: 14px; grid-template-columns: 30px 48px minmax(0, 1fr) 18px; min-height: 154px; padding: 22px 20px; text-decoration: none; transition: background .18s ease, color .18s ease, transform .18s ease; }
.contact-route:hover { background: var(--navy); color: #fff; transform: translateY(-4px); }
.contact-route--accent { background: var(--accent); color: #fff; }
.contact-route--accent:hover { background: #b80810; }
.contact-route__number { align-self: start; color: var(--accent); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .08em; padding-top: 3px; }
.contact-route--accent .contact-route__number, .contact-route:hover .contact-route__number { color: rgba(255,255,255,.7); }
.contact-route__icon { align-items: center; background: #fff; border-radius: 50%; color: var(--navy); display: grid; height: 48px; justify-items: center; width: 48px; }
.contact-route__icon svg { height: 21px; width: 21px; }
.contact-route--accent .contact-route__icon { background: rgba(255,255,255,.18); color: #fff; }
.contact-route__body { display: grid; gap: 5px; min-width: 0; }
.contact-route__body strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; line-height: 1.25; }
.contact-route__body small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.contact-route:hover .contact-route__body small { color: rgba(255,255,255,.72); }
.contact-route--accent .contact-route__body small { color: rgba(255,255,255,.78); }
.contact-route__arrow { color: var(--accent); height: 18px; transition: transform .18s ease; width: 18px; }
.contact-route:hover .contact-route__arrow { color: #fff; transform: translate(2px, -2px); }
.contact-route--accent .contact-route__arrow { color: #fff; }

.contact-main { background: var(--paper); padding: 78px 0 88px; }
.contact-main__grid { align-items: start; display: grid; gap: clamp(42px, 8vw, 110px); grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); }
.contact-details h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(27px, 3.1vw, 42px); letter-spacing: -.045em; line-height: 1.1; margin: 10px 0 15px; }
.contact-details__intro { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 32px; max-width: 560px; }
.contact-lines { max-width: 700px; }
.contact-line { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 15px; grid-template-columns: 48px minmax(0, 1fr) 20px; min-height: 94px; padding: 15px 0; text-decoration: none; }
.contact-line:first-child { border-top: 1px solid var(--line); }
.contact-line__icon { align-items: center; background: #eef1ff; border-radius: 50%; color: var(--navy); display: grid; height: 48px; justify-items: center; width: 48px; }
.contact-line__icon svg { height: 20px; width: 20px; }
.contact-line__body { display: grid; gap: 2px; min-width: 0; }
.contact-line__body small, .contact-details__secondary small { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.contact-line__body strong { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-line__body em { color: var(--muted); font-size: 12px; font-style: normal; }
.contact-line__arrow { color: var(--navy); height: 18px; transition: transform .18s ease; width: 18px; }
.contact-line:hover .contact-line__arrow { transform: translate(2px, -2px); }
.contact-details__secondary { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 27px; max-width: 700px; }
.contact-details__secondary div { display: grid; gap: 4px; min-width: 0; }
.contact-details__secondary strong { color: var(--ink); font-size: 13px; overflow-wrap: anywhere; }

.contact-door { background: #eef1ff; padding: 36px; }
.contact-door__topline { align-items: center; color: var(--navy); display: flex; font-size: 11px; font-weight: 800; gap: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-door__mark { align-items: center; background: var(--accent); border-radius: 50%; color: #fff; display: grid; height: 36px; justify-items: center; width: 36px; }
.contact-door__mark svg { height: 18px; width: 18px; }
.contact-door h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.045em; line-height: 1.08; margin: 22px 0 14px; }
.contact-door > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 21px; }
.contact-door address { align-items: start; color: var(--ink); display: flex; font-size: 14px; font-style: normal; font-weight: 700; gap: 9px; line-height: 1.6; margin-bottom: 23px; }
.contact-door address svg { color: var(--accent); flex: 0 0 auto; height: 18px; margin-top: 2px; width: 18px; }
.contact-door__map { background: #dce1f1; height: 220px; margin: 0 -36px; overflow: hidden; }
.contact-door__map iframe { border: 0; display: block; height: 100%; width: 100%; }
.contact-door__footer { align-items: end; display: flex; gap: 16px; justify-content: space-between; padding-top: 25px; }
.contact-door__footer > span { display: grid; gap: 3px; }
.contact-door__footer > span svg { color: var(--navy); height: 17px; margin-bottom: 3px; width: 17px; }
.contact-door__footer small { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.contact-door__footer strong { color: var(--ink); font-size: 13px; }

.contact-subhero { background: #17215a; color: #fff; padding: 58px 0 86px; }
.contact-subhero h1 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.055em; line-height: 1.05; margin: 15px 0 14px; }
.contact-subhero p { color: #d8dcf4; font-size: 16px; line-height: 1.7; margin: 0; max-width: 680px; }
.contact-subcontent { background: #fff; padding: 72px 0 92px; }
.contact-richtext { color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 780px; }
.contact-richtext h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 25px; letter-spacing: -.03em; margin: 0 0 12px; }
.contact-richtext p { margin: 0 0 15px; }
.contact-richtext--notice { background: #fff7e6; color: #6c572e; margin-bottom: 38px; max-width: none; padding: 20px 24px; }
.contact-richtext--notice p { margin: 0; }
.office-grid { display: grid; gap: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 42px; }
.office-entry { min-width: 0; padding: 25px 28px 0 0; }
.office-entry + .office-entry { margin-left: 28px; padding-left: 28px; }
.office-entry__heading { align-items: start; display: flex; gap: 14px; }
.office-entry__number { color: var(--accent); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; }
.office-entry h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; letter-spacing: -.03em; line-height: 1.2; margin: 5px 0 0; }
.office-entry__details { display: grid; gap: 11px; margin: 27px 0; }
.office-entry__details p, .office-entry__details a { align-items: start; color: var(--muted); display: flex; font-size: 13px; gap: 9px; line-height: 1.55; margin: 0; text-decoration: none; }
.office-entry__details svg { color: var(--navy); flex: 0 0 auto; height: 16px; margin-top: 2px; width: 16px; }
.office-entry__details a:hover { color: var(--navy); }
.office-entry__map { font-size: 12px; min-height: 37px; padding: 0 12px; }
.bank-table-wrap { overflow-x: auto; }
.bank-table { border-collapse: collapse; min-width: 760px; width: 100%; }
.bank-table th { background: var(--navy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; padding: 14px 15px; text-align: left; text-transform: uppercase; }
.bank-table td { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; padding: 17px 15px; vertical-align: middle; }
.bank-table tbody tr:hover { background: #f7f8fc; }
.bank-table td strong { color: var(--ink); font-size: 14px; }
.bank-table .mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .01em; }
.bank-iban { color: var(--navy) !important; font-weight: 700; white-space: nowrap; }
.bank-currency { background: #eef1ff; color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 5px 7px; }
.bank-copy { align-items: center; background: transparent; border: 0; color: inherit; cursor: pointer; display: inline-flex; font: inherit; gap: 8px; max-width: 100%; padding: 3px 0; text-align: left; }
.bank-copy:hover .bank-copy__value, .bank-copy:focus-visible .bank-copy__value { color: var(--accent); }
.bank-copy > svg { flex: 0 0 auto; height: 14px; width: 14px; }
.bank-copy__value { overflow: hidden; text-overflow: ellipsis; transition: color 160ms ease; }
.bank-copy__status { color: #147443; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; white-space: nowrap; }
.bank-copy.is-copy-failed .bank-copy__status { color: #a92828; }
.bank-copy-helper { height: 1px; opacity: 0; pointer-events: none; position: fixed; width: 1px; }
.feedback-layout { align-items: start; display: grid; gap: 76px; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); }
.feedback-info { padding-top: 5px; }
.feedback-info__route { align-items: start; background: #eef1ff; color: var(--navy); display: flex; gap: 14px; margin-top: 38px; padding: 20px; }
.feedback-info__route > svg { flex: 0 0 auto; height: 22px; margin-top: 2px; width: 22px; }
.feedback-info__route strong { color: var(--ink); font-size: 14px; }
.feedback-info__route p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 4px 0 0; }
.feedback-form-wrap { background: #f4f5fa; padding: 31px; }
.feedback-form__heading h2 { color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; letter-spacing: -.04em; margin: 8px 0 6px; }
.feedback-form__heading p { color: var(--muted); font-size: 13px; margin: 0 0 24px; }
.feedback-form__grid { display: grid; gap: 17px 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feedback-form .field { display: grid; gap: 7px; }
.feedback-form .field--full { grid-column: 1 / -1; }
.feedback-form label { color: var(--ink); font-size: 12px; font-weight: 800; }
.feedback-form label > span, .feedback-consent b { color: var(--accent); }
.feedback-form input:not([type=checkbox]), .feedback-form select, .feedback-form textarea { background: #fff; border: 1px solid #dce0eb; border-radius: 0; color: var(--ink); font-size: 13px; min-height: 44px; outline: 0; padding: 10px 12px; width: 100%; }
.feedback-form textarea { min-height: 145px; resize: vertical; }
.feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(60,73,152,.14); }
.feedback-consent { align-items: start; display: flex; font-weight: 400 !important; gap: 9px; line-height: 1.55; }
.feedback-consent input { accent-color: var(--navy); flex: 0 0 auto; height: 17px; margin: 1px 0 0; width: 17px; }
.feedback-honeypot { height: 0; left: -9999px; overflow: hidden; position: absolute; width: 0; }
.feedback-form__actions { align-items: center; color: var(--muted); display: flex; font-size: 11px; gap: 15px; justify-content: space-between; }
.feedback-form__actions .button { flex: 0 0 auto; }
.feedback-success, .feedback-errors { align-items: start; display: flex; gap: 12px; margin-bottom: 22px; padding: 15px; }
.feedback-success { background: #eaf8f0; color: #147443; }
.feedback-success svg { flex: 0 0 auto; height: 21px; margin-top: 2px; width: 21px; }
.feedback-success strong { color: #147443; display: block; font-size: 14px; }
.feedback-success p { font-size: 12px; line-height: 1.55; margin: 3px 0 0; }
.feedback-errors { background: #fff0f0; color: #a92828; flex-direction: column; font-size: 12px; gap: 4px; }
.feedback-errors strong { font-size: 13px; }

@media (max-width: 900px) {
  .contact-hero__inner, .contact-routing__heading, .contact-main__grid, .feedback-layout { grid-template-columns: 1fr; }
  .contact-hero__signal { max-width: 360px; min-height: 150px; }
  .contact-routing__grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; gap: 35px; }
  .office-entry + .office-entry { margin-left: 0; padding-left: 0; }
}

@media (max-width: 600px) {
  .contact-hero__inner { min-height: 0; padding-bottom: 38px; padding-top: 42px; }
  .contact-hero h1 { font-size: 39px; }
  .contact-routing, .contact-main, .contact-subcontent { padding: 55px 0 62px; }
  .contact-routing__heading { gap: 16px; }
  .contact-route { min-height: 135px; padding: 18px 15px; }
  .contact-main__grid { gap: 52px; }
  .contact-door { padding: 26px 20px; }
  .contact-door__map { margin-left: -20px; margin-right: -20px; }
  .contact-door__footer { align-items: start; flex-direction: column; }
  .contact-details__secondary, .feedback-form__grid { grid-template-columns: 1fr; }
  .feedback-form-wrap { padding: 22px 18px; }
  .feedback-form__actions { align-items: stretch; flex-direction: column; }
  .feedback-form__actions .button { justify-content: center; width: 100%; }
  .contact-subhero { padding: 42px 0 70px; }
  .contact-subhero h1 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-route, .contact-route__arrow, .contact-line__arrow { transition: none; }
}

/* İrtibat büroları: tüm kartlarda aynı bilgi hiyerarşisi ve merkezi aksiyon. */
.office-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.office-list .office-entry {
  align-items: stretch;
  background: #fff;
  border: 1px solid #e1e6f0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(30, 43, 82, .07);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 442px;
  min-width: 0;
  padding: 30px 26px 26px;
  text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.office-list .office-entry:hover { border-color: rgba(60, 73, 152, .35); box-shadow: 0 16px 34px rgba(30, 43, 82, .11); transform: translateY(-3px); }

.office-list .office-entry__heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.office-list .office-entry__marker {
  align-items: center;
  background: #eef1ff;
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.office-list .office-entry__marker svg { height: 20px; width: 20px; }

.office-list .office-entry__identity { display: grid; gap: 5px; justify-items: center; }

.office-list .office-entry__heading .eyebrow { color: var(--accent); font-size: 10px; }

.office-list .office-entry h2 { font-size: 21px; margin: 0; }

.office-list .office-entry__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 27px 0 24px;
  text-align: center;
}

.office-list .office-entry__detail {
  align-items: flex-start;
  color: var(--muted);
  display: grid;
  font-size: 12.5px;
  gap: 9px;
  grid-template-columns: 17px minmax(0, 1fr);
  line-height: 1.5;
  padding: 8px 4px;
  text-align: left;
  text-decoration: none;
}

.office-list .office-entry__detail svg { color: var(--navy); height: 16px; margin-top: 2px; width: 16px; }

.office-list .office-entry__detail span { display: grid; gap: 1px; min-width: 0; overflow-wrap: anywhere; }

.office-list .office-entry__detail small { color: #8a94a8; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.office-list .office-entry__detail[href]:hover { color: var(--navy); }

.office-list .office-entry__detail[href]:hover svg { color: var(--accent); }

.office-list .office-entry__map {
  align-self: stretch;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.office-list .office-entry__map:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.office-list .office-entry__map:focus-visible { outline: 3px solid rgba(60, 73, 152, .3); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .office-list .office-entry { transition: none; }
}

@media (max-width: 900px) {
  .office-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-list .office-entry:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .office-list {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .office-list .office-entry {
    min-height: 0;
    padding: 25px 20px 20px;
  }

  .office-list .office-entry__details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .office-list .office-entry__details p {
    grid-row: auto;
  }

  .office-list .office-entry__map {
    grid-column: auto;
  }

  .office-list .office-entry:nth-child(3) { grid-column: auto; }
}

/* ---- Mobil duzeltmeleri (2026-09-08 responsive denetimi). Masaustu gorunumu degismez. ---- */
@media (max-width: 720px) {
  /* iOS 16px altinda alana odaklaninca sayfayi otomatik buyutuyor. */
  .feedback-form input:not([type=checkbox]),
  .feedback-form select,
  .feedback-form textarea {
    font-size: 16px;
  }

  .feedback-form label {
    font-size: 13px;
  }

  .feedback-consent {
    align-items: center;
    min-height: 44px;
    font-size: 14px;
  }

  .feedback-consent input {
    width: 24px;
    height: 24px;
    margin: 0;
  }

  .feedback-form__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
  }

  .feedback-form__actions .button {
    min-height: 48px;
  }

  /* Iletisim bilgileri tablosu mobilde anahtar/deger olarak alt alta. */
  .bank-table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 720px) {
  /* IBAN/hesap kopyalama dugmeleri 25px yuksekligindeydi. */
  .bank-copy {
    min-height: 44px;
    padding-block: 8px;
    text-align: left;
  }
}
