/* ===== CONTACT PAGE ===== */
.contact-section {
  margin-top: 72px;
  padding: 80px 0 100px;
  background: var(--white);
}

/* Header */
.contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.contact-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}
.contact-header p {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.75;
  max-width: 380px;
  padding-top: 12px;
}

/* Card */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border: 1.5px solid #c8d8f0;
  border-radius: 20px;
  padding: 48px;
}

/* Fields */
.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.contact-field:last-child {
  margin-bottom: 0;
}
.contact-field label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 8px;
}
.contact-field input,
.contact-field textarea {
  border: 1.5px solid #dde3ec;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  width: 100%;
  box-sizing: border-box;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--blue);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #bbb;
}
.contact-field textarea {
  resize: none;
  height: 150px;
}

/* Info cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  padding: 14px 16px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #eef1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  display: block;
  flex-shrink: 0;
}
.contact-info-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-info-card span {
  display: block;
  font-size: 0.76rem;
  color: #777;
}

/* Upload */
.contact-upload {
  border: 1.5px dashed #c0cfe0;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: #fafcff;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.contact-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.contact-upload span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}
.contact-upload:hover,
.contact-upload.drag-over {
  border-color: var(--blue);
  background: #f0f5ff;
}

/* Submit */
.contact-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
}
.contact-submit:hover {
  background: #1540a0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-header { flex-direction: column; gap: 16px; }
  .contact-card { grid-template-columns: 1fr; gap: 0; padding: 32px 24px; }
  .contact-info-cards { grid-template-columns: 1fr; }
}
