/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */
.contact-section {
  padding: 120px 100px;
  background: #f4f4f4;
}

@media (max-width: 1280px) { .contact-section { padding: 100px 80px; } }
@media (max-width: 1024px) { .contact-section { padding: 80px 60px; } }
@media (max-width: 900px)  { .contact-section { padding: 64px 5%; } }
@media (max-width: 480px)  { .contact-section { padding: 48px 20px; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 1024px) { .contact-grid { gap: 56px; } }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
/* ----- SOL: başlık + bilgi ----- */
.contact-title {
  font-family: "Gilroy", Inter, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #000;
  margin: 0 0 28px;
}
/*
.contact-title .italic-outline-dark {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
}
*/
.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #525252;
  margin: 0;
  max-width: 460px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .contact-info-list { margin-top: 40px; padding-top: 32px; gap: 24px; }
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cd1018;
}

.contact-info-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

a.contact-info-value:hover {
  color: #cd1018;
}

/* ----- SAĞ: form kartı ----- */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 48px;
  padding: 56px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) { .contact-form-wrap { padding: 44px; border-radius: 40px; } }
@media (max-width: 480px)  { .contact-form-wrap { padding: 32px 24px; border-radius: 28px; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.005em;
}

.form-required {
  color: #cd1018;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #cd1018;
  box-shadow: 0 0 0 3px rgba(205, 16, 24, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

/* Select: custom dropdown ok */
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
  cursor: pointer;
}

/* CSS-only validation */
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #cd1018;
}

/* Checkbox satırı */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #525252;
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #cd1018;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: #cd1018;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit butonu */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 32px;
  background: #cd1018;
  border: none;
  border-radius: 9999px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 12px;
}

.form-submit:hover {
  background: #a50d13;
}

.form-submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #cd1018;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.form-submit:hover .form-submit-arrow {
  transform: translateX(4px);
}

.form-submit-arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .form-submit {
    align-self: stretch;
    justify-content: space-between;
    padding-left: 28px;
  }
}
