/* Long Lake Office Cleaning — Theme A: Direct & Operational */

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

:root {
  --primary: #0d2b45;
  --accent: #e85c2a;
  --accent-light: #fdf0eb;
  --bg: #f8f8f6;
  --text: #1e1e1e;
  --text-muted: #555555;
  --border: #d0ccc4;
  --white: #ffffff;
}

html { font-size: 16px; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }

p { margin-bottom: 1rem; color: var(--text); }

ul, ol { margin: 0.75rem 0 1rem 1.5rem; }
li { margin-bottom: 0.35rem; }

/* ── HEADER ───────────────────────────────── */
.site-header {
  background: #2c2c2c;
  color: var(--white);
  padding: 0;
}

.header-top {
  background: var(--primary);
  text-align: center;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  color: #c8d8e8;
  letter-spacing: 0.02em;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-brand {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
}

.site-brand:hover { text-decoration: none; color: #c8d8e8; }

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: #c8d8e8;
}

.header-phone {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
}

.header-phone:hover { color: var(--accent); text-decoration: none; }

.header-hours { font-size: 0.8rem; color: #aabbcc; }

/* ── NAV ──────────────────────────────────── */
.site-nav {
  background: #1a1a1a;
  border-top: 3px solid var(--accent);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav a {
  display: block;
  padding: 0.7rem 1rem;
  color: #cccccc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: var(--primary);
  text-decoration: none;
}

/* ── HERO / ABOVE FOLD ────────────────────── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 0.75rem; }
.hero .tagline { font-size: 1.1rem; color: #c8d8e8; margin-bottom: 1.5rem; }
.hero p { color: #c8d8e8; margin-bottom: 0.75rem; }

.hero-bullets { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.hero-bullets li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  color: #c8d8e8;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ── QUOTE FORM ───────────────────────────── */
.quote-form {
  background: var(--white);
  border-top: 4px solid var(--accent);
  padding: 1.5rem;
}

.quote-form h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 0 1rem;
}

.form-group { margin-bottom: 0.9rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  text-align: center;
  border-radius: 0;
}

.btn-primary:hover { background: #cc4a1e; color: var(--white); text-decoration: none; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #eaf6ec;
  border-color: #9ecfa4;
  color: #1e5c28;
}
.form-status.is-error {
  background: #fbeae7;
  border-color: #e8a999;
  color: #8a2d1a;
}
.btn-primary[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── MAIN CONTENT ─────────────────────────── */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.content-wrap.narrow {
  max-width: 800px;
}

/* ── SECTION BLOCKS ───────────────────────── */
.section { margin-bottom: 2.5rem; }

/* ── SERVICE GRID ─────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
}

.service-card h3 { margin-top: 0; font-size: 1.05rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.service-card a { font-size: 0.9rem; font-weight: bold; }

/* ── AREA GRID ────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.area-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.area-item a { color: var(--primary); font-weight: bold; }

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.trust-item span { font-size: 0.85rem; color: #c8d8e8; }

/* ── PAGE HERO (non-home) ─────────────────── */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 2rem;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--white); font-size: 1.9rem; margin-bottom: 0.5rem; }
.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: #aabbcc;
  margin-bottom: 0.5rem;
}
.page-hero .breadcrumb a { color: #aabbcc; }
.page-hero .sub { color: #c8d8e8; font-size: 0.95rem; }

/* ── TABLES ───────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  background: var(--white);
}

.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.65rem 1rem;
  text-align: left;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.9rem;
}

.data-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:nth-child(even) td { background: #f4f4f2; }

/* ── CTA BAND ─────────────────────────────── */
.cta-band {
  background: var(--accent-light);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-band h2 { color: var(--primary); margin-top: 0; }
.cta-band p { color: var(--text-muted); margin-bottom: 1.25rem; }
.cta-band .btn-primary { width: auto; display: inline-block; }

/* ── PROCESS STEPS ────────────────────────── */
.process-steps { counter-reset: step; margin: 1.5rem 0; }
.process-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 { margin-top: 0; font-size: 1rem; }
.step-body p { margin-bottom: 0; font-size: 0.95rem; }

/* ── FAQ ──────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: "Arial Black", Arial, sans-serif; font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.faq-a { color: var(--text); font-size: 0.95rem; }

/* ── INLINE CTA ───────────────────────────── */
.inline-cta {
  background: var(--white);
  border: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.inline-cta p { margin: 0; font-weight: bold; color: var(--primary); }
.inline-cta .btn-primary { width: auto; }

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: #999;
  padding: 2.5rem 2rem 1.5rem;
  margin-top: 3rem;
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: #999; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: #999; margin-bottom: 0.4rem; }

.footer-phone { font-size: 1.1rem; color: var(--white); font-weight: bold; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── RESOURCE ARTICLE ─────────────────────── */
.article-body h2 { margin-top: 2rem; }
.article-body h3 { margin-top: 1.5rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; }

/* ── CHECKLIST ────────────────────────────── */
.checklist { list-style: none; margin: 1rem 0; padding: 0; }
.checklist li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.checklist li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .header-main { padding: 0.75rem 1rem; }
  .site-nav ul { padding: 0 0.5rem; }
  .site-nav a { padding: 0.5rem 0.6rem; font-size: 0.82rem; }
  h1 { font-size: 1.6rem; }
  .hero h1 { font-size: 1.6rem; }
  .content-wrap { padding: 1.5rem 1rem; }
  .trust-bar { padding: 1rem; }
  .inline-cta { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-contact { align-items: flex-start; }
}
