/* ============================================================
   CONTACT LAYOUT
   ============================================================ */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

/* FORM */
.contact-form h2 { font-size: 1.5rem; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-navy);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-light); }

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; cursor: pointer; }

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

.form-note {
  font-size: 0.8125rem;
  color: var(--color-light);
  margin-top: 10px;
}

/* Success confirmation */
.contact-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
}

.contact-success.visible { display: block; }

.contact-success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-success h3 {
  font-size: 1.25rem;
  color: #166534;
  margin-bottom: 8px;
}

.contact-success p {
  color: #15803d;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-success a {
  font-size: 0.9375rem;
  color: var(--color-blue);
  font-weight: 500;
}

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

/* DETAILS */
.contact-details h2 { font-size: 1.25rem; margin-bottom: 24px; }

.detail-block {
  margin-bottom: 28px;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-light);
  margin-bottom: 6px;
}

.detail-value {
  color: var(--color-navy);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.detail-value a {
  color: var(--color-blue);
}

.detail-value a:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

/* SUPPORT CARDS */
.support-section {
  padding: 64px 0;
  background: var(--color-bg);
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.support-card h3 { font-size: 1rem; margin-bottom: 8px; }
.support-card p  { font-size: 0.875rem; color: var(--color-gray); margin-bottom: 16px; }
.support-card a  { font-size: 0.875rem; color: var(--color-blue); font-weight: 500; }
.support-card a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .support-cards { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
