/* ─── Contact Page Styles ─────────────────────────────────────────── */

.contact-hero {
  background: linear-gradient(135deg, #6E2038 0%, #8B2842 40%, #5A1D32 100%);
}

.contact-form-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(45, 35, 25, 0.06);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6E604A;
  margin-bottom: 0.375rem;
}

.contact-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #EBE2D6;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #3A3228;
  background: #FAF8F5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

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

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #8B2842, #6E2038);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(139, 40, 66, 0.2);
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #6E2038, #5A1D32);
  box-shadow: 0 4px 16px rgba(139, 40, 66, 0.3);
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ─── Contact Info ────────────────────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(45, 35, 25, 0.06);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: #FFF9EB;
  color: #B8860B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-quick-links {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(45, 35, 25, 0.06);
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #524838;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.contact-quick-link:hover {
  background: #FAF8F5;
}
