/* Houlton Commercial Cleaners — Theme A: Direct & Operational */
/* Primary: #0d2b45 | Accent: #e85c2a | BG: #f8f8f6 | Text: #1e1e1e */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1e1e1e;
  background: #f8f8f6;
}

a { color: #0d2b45; text-decoration: underline; }
a:hover { color: #e85c2a; }

img { max-width: 100%; height: auto; display: block; }

/* ── HEADER ── */
.site-header {
  background: #1e1e1e;
  color: #fff;
  padding: 0;
}
.header-top {
  background: #0d2b45;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-strapline {
  font-size: 0.82rem;
  color: #c8d8e8;
  letter-spacing: 0.02em;
}
.header-strapline strong { color: #fff; }
.header-contact-bar {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.header-phone {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e85c2a;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.header-phone:hover { color: #fff; }
.header-hours {
  font-size: 0.8rem;
  color: #c8d8e8;
}
.header-main {
  background: #0d2b45;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 2px solid #e85c2a;
}
.site-logo {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo span { color: #e85c2a; }

/* ── NAV ── */
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
nav a {
  display: block;
  padding: 6px 12px;
  color: #c8d8e8;
  text-decoration: none;
  font-size: 0.88rem;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active {
  background: #e85c2a;
  color: #fff;
}

/* ── HERO / ABOVE FOLD ── */
.hero {
  background: #0d2b45;
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.hero-sub {
  font-size: 1.05rem;
  color: #c8d8e8;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ── QUOTE FORM ── */
.quote-form-box {
  background: #fff;
  border: 3px solid #e85c2a;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  text-align: left;
}
.quote-form-box h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #0d2b45;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-row { margin-bottom: 12px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0ccc4;
  background: #fff;
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #1e1e1e;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid #e85c2a;
  border-color: #e85c2a;
}
.form-row textarea { height: 80px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}
.form-status {
  font-size: 0.88rem;
  margin-top: 12px;
  padding: 10px 12px;
  line-height: 1.5;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #eaf5ec;
  border-left: 4px solid #2e7d32;
  color: #1e4620;
}
.form-status.is-error {
  background: #fdf0eb;
  border-left: 4px solid #e85c2a;
  color: #7a2c0f;
}
.form-row button[type="submit"]:disabled,
button.btn-full:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.btn-primary {
  background: #e85c2a;
  color: #fff;
}
.btn-primary:hover { background: #c94a1f; color: #fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover { background: #fff; color: #0d2b45; }
.btn-full { width: 100%; text-align: center; display: block; padding: 14px; font-size: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 52px 24px; }
.section-alt { background: #fff; }
.section-dark { background: #0d2b45; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p, .section-dark li { color: #c8d8e8; }
.section-dark a { color: #e85c2a; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.25;
  color: #0d2b45;
}
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.15rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
ul, ol { padding-left: 20px; margin-bottom: 16px; }
li { margin-bottom: 6px; }

/* ── GRID / CARDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid #d0ccc4;
  border-left: 4px solid #e85c2a;
  padding: 24px;
}
.card h3 { margin-bottom: 10px; }

/* ── SERVICE GRID ── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid #d0ccc4;
  border-left: 4px solid #e85c2a;
  padding: 24px;
}
.service-card h3 a { color: #0d2b45; text-decoration: none; }
.service-card h3 a:hover { color: #e85c2a; }

/* ── TOWN GRID ── */
.town-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.town-link {
  display: block;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #d0ccc4;
  text-decoration: none;
  color: #0d2b45;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.15s, border-color 0.15s;
}
.town-link:hover { background: #fdf0eb; border-color: #e85c2a; color: #e85c2a; }

/* ── TABLES ── */
table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.9rem; }
th {
  background: #0d2b45;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
td { padding: 10px 14px; border-bottom: 1px solid #d0ccc4; }
tr:nth-child(even) td { background: #fdf0eb; }

/* ── PROCESS STEPS ── */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e85c2a;
  color: #fff;
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 { margin-bottom: 6px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #d0ccc4; padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #0d2b45;
  margin-bottom: 10px;
}
.faq-a { color: #1e1e1e; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #f8f8f6;
  padding: 10px 24px;
  border-bottom: 1px solid #d0ccc4;
  font-size: 0.8rem;
  color: #555;
}
.breadcrumb a { color: #0d2b45; text-decoration: none; }
.breadcrumb a:hover { color: #e85c2a; }
.breadcrumb span { margin: 0 6px; color: #d0ccc4; }

/* ── TRUST BAR ── */
.trust-bar {
  background: #0d2b45;
  color: #c8d8e8;
  padding: 14px 24px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.trust-bar strong { color: #e85c2a; }

/* ── FOOTER ── */
.site-footer {
  background: #1e1e1e;
  color: #c8d8e8;
  padding: 40px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
}
.footer-col p, .footer-col address {
  font-size: 0.85rem;
  color: #999;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-col a { color: #c8d8e8; text-decoration: none; font-size: 0.85rem; }
.footer-col a:hover { color: #e85c2a; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-phone-lg {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e85c2a;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: #666;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-years { color: #e85c2a; font-weight: bold; }

/* ── PAGE INTRO ── */
.page-intro {
  background: #0d2b45;
  color: #fff;
  padding: 36px 24px;
}
.page-intro h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.page-intro p { color: #c8d8e8; margin-bottom: 0; font-size: 1.05rem; }

/* ── CALLOUT BOX ── */
.callout {
  background: #fdf0eb;
  border-left: 4px solid #e85c2a;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p { margin-bottom: 0; }
.callout strong { color: #e85c2a; }

/* ── INLINE PHONE ── */
.inline-phone { color: #e85c2a; font-weight: bold; text-decoration: none; white-space: nowrap; }
.inline-phone:hover { color: #0d2b45; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero h1 { font-size: 1.5rem; }
  .header-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .header-main { flex-direction: column; align-items: flex-start; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .trust-bar { flex-direction: column; gap: 10px; text-align: center; }
  .section { padding: 36px 20px; }
  h2 { font-size: 1.3rem; }
  .quote-form-box { padding: 20px 16px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.color-accent { color: #e85c2a; }
.text-muted { color: #555555; }
