/* Hugo Commercial Cleaners — Theme A: Direct & Operational */
:root {
  --primary: #0d2b45;
  --accent: #e85c2a;
  --accent-light: #fdf0eb;
  --bg: #f8f8f6;
  --text: #1e1e1e;
  --text-muted: #555555;
  --border: #d0ccc4;
  --white: #ffffff;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

/* HEADER */
.site-header {
  background: #2c2c2c;
  color: #ffffff;
  padding: 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-block .brand-name {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  display: block;
}
.brand-block .brand-strapline {
  font-size: 0.8rem;
  color: #cccccc;
  margin-top: 2px;
}
.header-contact {
  text-align: right;
}
.header-phone {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--accent);
  text-decoration: none;
  display: block;
}
.header-hours {
  font-size: 0.78rem;
  color: #cccccc;
}

nav {
  background: var(--primary);
  padding: 0 24px;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
nav ul li a {
  display: block;
  padding: 12px 14px;
  color: #dce8f5;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--accent);
  color: #ffffff;
}

/* HERO */
.hero {
  background: var(--primary);
  color: #ffffff;
  padding: 48px 24px;
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.05rem;
  color: #b8d0e8;
  margin-bottom: 20px;
}
.hero-proof {
  font-size: 0.9rem;
  color: #ccdde8;
}

.quote-form-box {
  background: #ffffff;
  border-radius: 0;
  padding: 24px;
  border-top: 4px solid var(--accent);
}
.quote-form-box h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 12px;
}
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 4px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  color: var(--text);
  border-radius: 0;
}
.form-field textarea { min-height: 70px; resize: vertical; }
.btn-primary {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--accent);
  color: #ffffff;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #c44d20; }
.form-note {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}
.form-status {
  display: none;
  font-size: 0.88rem;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 0;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #e6f4ea;
  color: #1e6b34;
  border: 1px solid #a7d7b5;
}
.form-status.is-error {
  background: #fbeaea;
  color: #a3281f;
  border: 1px solid #e5b3af;
}
.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* MAIN CONTENT */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

h2 {
  font-family: Arial Black, Arial, sans-serif;
  color: var(--primary);
  font-size: 1.4rem;
  margin: 32px 0 12px;
}
h3 {
  font-family: Arial Black, Arial, sans-serif;
  color: var(--primary);
  font-size: 1.1rem;
  margin: 24px 0 8px;
}
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 6px; }

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.service-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card h3 { margin-top: 0; font-size: 1rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* TOWN GRID */
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.town-link {
  display: block;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border-left: 3px solid var(--accent);
}
.town-link:hover { background: var(--accent-light); }

/* TRUST BAR */
.trust-bar {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  margin: 0;
}
.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.trust-item {
  text-align: center;
  font-size: 0.88rem;
  color: var(--primary);
}
.trust-item strong {
  display: block;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
}

/* DATA TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.93rem;
}
th {
  background: var(--primary);
  color: #ffffff;
  padding: 10px 14px;
  text-align: left;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.85rem;
}
td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tr:nth-child(even) td { background: var(--white); }

/* CTA BLOCK */
.cta-block {
  background: var(--primary);
  color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 { color: #ffffff; margin-top: 0; }
.cta-block p { color: #b8d0e8; margin-bottom: 20px; }
.btn-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--accent);
  color: #ffffff;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0;
}
.btn-cta:hover { background: #c44d20; }

/* PAGE HERO (non-home) */
.page-hero {
  background: var(--primary);
  color: #ffffff;
  padding: 32px 24px;
}
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
.page-hero p {
  color: #b8d0e8;
  font-size: 1rem;
  margin: 0;
}
.breadcrumb {
  font-size: 0.8rem;
  color: #8ab0cc;
  margin-bottom: 10px;
}
.breadcrumb a { color: #8ab0cc; }

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #aaaaaa;
  padding: 40px 24px 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.footer-col a:hover { color: var(--accent); }
.footer-phone-large {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #333333;
  font-size: 0.8rem;
  color: #666666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* PROCESS STEPS */
.process-steps { margin: 24px 0; }
.process-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #ffffff;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 { margin-top: 0; font-size: 1rem; }
.step-body p { margin: 4px 0 0; font-size: 0.92rem; color: var(--text-muted); }

/* FAQ */
.faq-item { margin-bottom: 20px; border-left: 3px solid var(--accent); padding-left: 14px; }
.faq-item h3 { margin-top: 0; font-size: 1rem; }
.faq-item p { margin: 6px 0 0; font-size: 0.92rem; color: var(--text-muted); }

/* INLINE PHONE */
.inline-phone { color: var(--accent); font-weight: bold; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; }
  .header-top { flex-direction: column; align-items: flex-start; }
  .header-contact { text-align: left; }
  nav ul { gap: 0; }
  nav ul li a { padding: 10px 10px; font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; }
  h2 { font-size: 1.2rem; }
  .hero h1 { font-size: 1.5rem; }
}
