/* Pricing estimate page — extends styles.css brand variables */

.estimate-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}

.estimate-hero h1 { color: #fff; margin-bottom: 0.4em; }

.estimate-subhead {
  color: #d7e2e8;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.estimate-section {
  padding: 48px 0 64px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 800px) {
  .estimate-layout {
    grid-template-columns: 1fr;
  }
}

.estimate-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
  padding: 0;
  margin: 0;
}

.field-group > label,
.field-group > legend {
  font-weight: 600;
  color: var(--navy);
  padding: 0;
}

.field-group select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.field-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.checkbox-group {
  gap: 10px;
  min-width: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  min-width: 0;
}

.checkbox-label input {
  margin-top: 4px;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.estimate-result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: sticky;
  top: 96px;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin: 0 0 10px;
}

.result-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.estimate-disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: #fbf6e9;
  border: 1px solid #e8dcb0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.estimate-disclaimer p { margin: 0 0 0.6em; }
.estimate-disclaimer p:last-child { margin-bottom: 0; }
.estimate-disclaimer strong { color: var(--text); }

@media (max-width: 480px) {
  .estimate-result { position: static; }
}
