/* CONTACT — design pro */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.card-head {
  margin-bottom: 12px;
}

.card-head h2 {
  margin: 0 0 6px;
}

.card-head p {
  margin: 0;
}

/* Left card */
.contact-card {
  position: sticky;
  top: 92px;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-item {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 12px 14px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(91, 108, 255, .10);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.contact-label {
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow2);
}

.contact-note-title {
  font-weight: 950;
  margin-bottom: 6px;
}

/* Form card */
.form-card .form {
  margin-top: 6px;
}

.form-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.form-actions .btn {
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(91, 108, 255, .18);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }

  .form-actions .btn {
    width: 100%;
    min-width: auto;
  }
}