/* Contact Hero */
.contact-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(131, 199, 206, 0.13), rgba(110, 169, 248, 0.10));
}

.contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-title {
  color: #0A0A0A;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-hero-title-highlight {
  color: var(--remedy-green, #457A00);
}

.contact-hero-description {
  margin-top: 16px;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}

/* Contact Section */
.contact-section {
  padding: 80px 24px;
  max-width: var(--max-width-lg, 1280px);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Contact Info */
.contact-info-title,
.contact-form-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--foreground-secondary, #101828);
  margin-bottom: 24px;
}

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--remedy-teal, #1F7F95);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-body, #4A5565);
  font-size: 16px;
  line-height: 24px;
}

.contact-info-item a {
  color: var(--remedy-teal, #1F7F95);
  font-weight: 500;
}

.contact-info-item p.contact-info-note {
  font-size: 14px;
  color: #99A1AF;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: var(--remedy-green, #457A00);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-lg, 16px);
  padding: 40px;
  box-shadow: var(--shadow-lg, 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10));
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground-secondary, #101828);
}

.form-input,
.form-textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--foreground, #111111);
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm, 8px);
  background: white;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--remedy-teal, #1F7F95);
}

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

/* Consent checkbox (visual language matches css/privacypolicy/privacy.css's .checkbox-wrapper) */
.checkbox-wrapper {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #0A0A0A;
  cursor: pointer;
}

.checkbox-wrapper input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--remedy-teal, #1F7F95);
  margin-top: 3px;
}

.checkbox-wrapper a {
  color: var(--remedy-teal, #1F7F95);
  text-decoration: underline;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 4px;
  padding: 0 32px;
  height: 52px;
  background: var(--remedy-teal, #1F7F95);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full, 999px);
  cursor: pointer;
  box-shadow: var(--shadow-sm, 0px 4px 6px -4px rgba(0, 0, 0, 0.10));
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-submit:hover {
  background: var(--remedy-green, #457A00);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(31, 127, 149, 0.35);
}

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

  .contact-hero-title {
    font-size: 36px;
  }
}
