/* ============================================================
   VISORA — iletisim.css
   Contact page — info cards + contact form
   ============================================================ */

.contact-section {
  padding: 88px 0 140px;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* ======================== INFO CARDS ======================== */

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition:
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

a.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-card--static {
  cursor: default;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gold-dim);
  color: var(--gold);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-card-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ======================== FORM ======================== */

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

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

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

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

.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  resize: vertical;
  transition: border-color 0.25s ease, background 0.5s ease;
}

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

.contact-form-submit {
  width: fit-content;
  margin-top: 4px;
}

.contact-form-note {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.contact-form-note.is-success {
  color: var(--gold);
}

/* ======================== RESPONSIVE ======================== */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .contact-section { padding: 64px 0 96px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
}
