/* ----------------------------------------------------
   ISO 9001 Specific Styles - Quality Management Navy/Blue Theme
   Overrides default blue with QMS navy for 9001 pages
   Header/footer colors are preserved
---------------------------------------------------- */

:root {
  --brand-9001-primary: #294476;   /* QMS navy blue */
  --brand-9001-secondary: #1a2d50; /* darker for hover states */
  --brand-9001-accent: #3d5e94;    /* medium blue for accents */
  --brand-9001-light: #5a7bb0;     /* lighter blue for secondary buttons */
}

/* Hero section headings */
.hero h1,
.hero h2,
.hero-title {
  color: var(--brand-9001-primary) !important;
}

/* Section headings */
.section h2 {
  color: var(--brand-9001-primary) !important;
}

/* Card headings */
.card h3 {
  color: var(--brand-9001-primary) !important;
}

/* Price styling */
.price {
  color: var(--brand-9001-primary) !important;
}

/* Primary buttons */
.btn-primary {
  background: var(--brand-9001-primary) !important;
  color: var(--bg-white) !important;
}

.btn-primary:hover {
  background: var(--brand-9001-accent) !important;
  color: var(--bg-white) !important;
  text-decoration: underline !important;
}

/* Secondary buttons */
.btn-secondary {
  background: var(--brand-9001-light) !important;
  border-color: var(--brand-9001-light) !important;
  color: var(--bg-white) !important;
}

.btn-secondary:hover {
  background: var(--brand-9001-accent) !important;
  color: var(--bg-white) !important;
  text-decoration: underline !important;
}

/* Author section heading */
.author-bio h3 {
  color: var(--brand-9001-primary) !important;
}

/* Form focus states */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-9001-primary) !important;
}

/* Submit button */
.submit-btn {
  background: var(--brand-9001-primary) !important;
}

.submit-btn:hover {
  background: var(--brand-9001-secondary) !important;
}

/* Link colors within 9001 content */
.section a:not(.btn-primary):not(.btn-secondary):not(.btn-pdf):not(.btn-paypal):not(.btn-9001):not(.card):not(.iso-tile) {
  color: var(--brand-9001-primary) !important;
}

.section a:not(.btn-primary):not(.btn-secondary):not(.btn-pdf):not(.btn-paypal):not(.btn-9001):not(.card):not(.iso-tile):hover {
  color: var(--brand-9001-secondary) !important;
}
