/* Site footer doubling as the contact section (#iletisim): contact
   details with map beside a contact form. The form is presentational
   for now — it posts nowhere. */

.site-footer {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 70px);
  color: rgba(255,255,255,.68);
  background: var(--navy);
  overflow: hidden;
  font-size: 14px;
}

/* Both columns stretch to the same height: the form starts level with
   the heading and ends level with the map. */
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.footer-contact { display: grid; gap: 26px; justify-items: start; }

.footer-contact h2 {
  margin: 0;
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}

.footer-contact dl {
  display: grid;
  gap: 0;
  margin: 0;
  width: 100%;
}

.footer-contact dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 240, .14);
}

.footer-contact dt { color: var(--gold); padding-top: 4px; }

.footer-contact dd {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 250, 240, .84);
}

.footer-contact dd a { transition: color .3s ease; }
.footer-contact dd a:hover { color: var(--gold); }

.footer-map {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, .14);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(60%) contrast(.95);
}

.map-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}

.map-link:hover { background: var(--gold); color: var(--navy); }

.footer-form {
  display: grid;
  /* The message row absorbs the extra height when the column stretches. */
  grid-template-rows: auto auto 1fr auto auto;
  gap: 20px;
  padding: clamp(26px, 3vw, 44px);
  border-radius: 6px;
  background: rgba(255, 250, 240, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, .14);
}

.footer-form label { display: grid; gap: 8px; }
.footer-form label:nth-of-type(3) { grid-template-rows: auto 1fr; }

.footer-form label > span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 13px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, .2);
  border-radius: 0;
  background: transparent;
  color: #fff;
  transition: border-color .3s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.footer-form textarea { min-height: 120px; height: 100%; resize: vertical; }

.footer-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--gold);
}

.consent span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.footer-form button {
  justify-self: start;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, transform .28s var(--ease);
}

.footer-form button:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .footer-contact dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
