/* Custom styles for Concrete Polishing Pros */

:root {
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #f59e0b;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f9fafb;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

.city-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: box-shadow 0.15s ease;
}

.city-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.partner-form {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.partner-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.partner-form select,
.partner-form button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.partner-form button {
  background: var(--brand);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.partner-form button:hover {
  background: var(--brand-dark);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
