.gd-contact-wrapper {
  padding: clamp(40px, 6vw, 64px) 16px;
  background: radial-gradient(circle at top left, #FFE5DA 0, #FFF7F2 45%, #ffffff 100%);
  display: flex;
  justify-content: center;
}

.gd-contact-card {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
}

.gd-contact-title {
  font-size: 1.75rem;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #FF5F6D, #FFC371);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gd-contact-intro {
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #4b5563;
}

.gd-field-group {
  margin-bottom: 18px;
}

.gd-field-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.gd-required {
  color: #EF4444;
  margin-left: 4px;
}

.gd-field-group input,
.gd-field-group textarea,
.gd-field-group select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  outline: none;
  background-color: #f9fafb;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.gd-field-group select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg fill='%236b7280' height='14' width='14' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7l4.5 4.5L14.5 7'/%3E%3C/svg%3E");
}

.gd-field-group input:focus,
.gd-field-group textarea:focus,
.gd-field-group select:focus {
  border-color: #FF7A3C;
  box-shadow: 0 0 0 1px rgba(255, 122, 60, 0.25);
  background-color: #ffffff;
}

.gd-input-error {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.06);
}

.gd-error-msg {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #B91C1C;
  min-height: 16px;
}

.gd-consent-group {
  margin-top: 6px;
}

.gd-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gd-checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.gd-checkbox-label {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #4b5563;
}

.gd-checkbox-label a {
  color: #FF5F6D;
  text-decoration: underline;
}

/* Optional: clearer error state for checkbox */
.gd-checkbox-row input[type="checkbox"].gd-input-error {
  outline: 2px solid #DC2626;
  outline-offset: 2px;
}

.gd-btn-primary {
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  background-image: linear-gradient(135deg, #FF5F6D, #FFC371);
  color: #111827;
  box-shadow: 0 16px 28px rgba(248, 113, 113, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.gd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(248, 113, 113, 0.32);
  filter: brightness(1.03);
}

.gd-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 20px rgba(248, 113, 113, 0.25);
  filter: brightness(0.97);
}

.gd-success-msg {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #166534;
  display: none;
}

@media (max-width: 640px) {
  .gd-contact-card {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .gd-contact-title {
    font-size: 1.5rem;
  }
}