/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 90px 22px;
  color: #fff;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* ---------- Main Section ---------- */

.contact-section {
  padding: 90px 22px;
  background: #f9fefe;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ---------- Info ---------- */

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.contact-info p {
  color: #5f6f73;
  line-height: 1.8;
  margin-bottom: 26px;
}

.info-block {
  margin-bottom: 22px;
}

.info-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.info-block p,
.info-block a {
  color: #5f6f73;
  text-decoration: none;
}

/* ---------- Form ---------- */

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 22px;
  color: var(--text-dark);
}

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

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #d6e4e2;
  font-family: inherit;
  outline: none;
  transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
}

.contact-form button {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 45px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */

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

  .contact-hero h1 {
    font-size: 34px;
  }
}
