/* =============================================================================
   NON-SURGICAL TREATMENT PAGE STYLES
   For: non-surgical-knee-pain, non-surgical-hip-pain, non-surgical-shoulder-pain,
        non-surgical-joint-degeneration
   
   NOTE: rm-* base styles are now in global.css
   Use .rm-hero--tall modifier for taller hero on these pages
============================================================================= */

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 102, 195, 0.1);
}

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

/* Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(11, 102, 195, 0.3);
}

/* Trust Bar */
.trust-logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 50px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.trust-logo-grid:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-logo-placeholder {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

/* Utility */
.bg-brand-primary {
  background-color: var(--primary);
}
