/* ================================
   CONTACT PAGE – PREMIUM UI
================================ */

/* Layout */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  margin-top: 20px;
  align-items: start;
}

/* Intro alignment */
.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Labels */
.contact-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 4px;
}

/* Why list */
.why-list {
  margin-top: 10px;
  padding-left: 18px;
}

.why-list li {
  margin-bottom: 6px;
  color: #374151;
}

/* Form card */
.contact-form.card {
  margin-top: 30px; /* aligns with Email */
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.form-intro {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

/* Inputs */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.form-group label span {
  color: #ef4444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: #1d4ed8;
}

/* Notes */
.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
  text-align: center;
}

.success-msg {
  margin-top: 12px;
  font-size: 14px;
  color: #16a34a;
}

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

  .contact-form.card {
  margin-top: 0; /* aligns with Get in Touch */
  background: #ffffff;
  padding: 0px;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

}

/* Reduce space above "Get in Touch" */
.contact-info h2 {
  margin-top: 0;
}

.contact-info h2,
.contact-form h2 {
  margin-top: 0;
}

