/* Long Lake Commercial 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);
}

/* ── HEADER ── */
.site-header {
  background: #2c2c2c;
  color: var(--white);
  padding: 0;
}
.header-top {
  background: var(--primary);
  padding: 6px 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: #b0c4d8; text-decoration: none; }
.header-top a:hover { color: var(--white); }
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.site-logo span { display: block; font-size: 0.75rem; font-weight: 400; color: #b0c4d8; }
.header-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-phone {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
}
.header-phone:hover { color: #f0a080; }
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #c94a1e; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ── NAV ── */
.site-nav { background: var(--primary); }
.site-nav ul { list-style: none; display: flex; flex-wrap: wrap; padding: 0 24px; }
.site-nav ul li a {
  display: block;
  padding: 12px 14px;
  color: #b0c4d8;
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 3px solid transparent;
}
.site-nav ul li a:hover, .site-nav ul li a.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* ── HERO ── */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.hero h1 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero p { font-size: 1.1rem; color: #b0c4d8; max-width: 620px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── QUOTE FORM ── */
.quote-form-section {
  background: var(--accent);
  padding: 32px 24px;
}
.quote-form-inner {
  max-width: 780px;
  margin: 0 auto;
}
.quote-form-section h2 {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.quote-form-section p { color: #fdf0eb; margin-bottom: 20px; font-size: 0.95rem; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.quote-form input, .quote-form select, .quote-form textarea {
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  border: none;
  border-radius: 0;
  background: var(--white);
  color: var(--text);
  width: 100%;
}
.quote-form textarea { grid-column: 1 / -1; height: 80px; resize: vertical; }
.quote-form .btn-submit {
  grid-column: 1 / -1;
  background: var(--primary);
  color: var(--white);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  padding: 14px;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.quote-form .btn-submit:hover { background: #0a2035; }
.form-note { font-size: 0.8rem; color: #fdf0eb; margin-top: 8px; }

/* ── MAIN LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.page-content { padding: 48px 24px; max-width: 1080px; margin: 0 auto; }
.section { padding: 48px 0; }
.section + .section { border-top: 1px solid var(--border); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: Arial Black, Arial, sans-serif; font-weight: 900; line-height: 1.25; }
h2 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 16px; color: var(--primary); }
h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
a { color: var(--accent); }
a:hover { color: #c94a1e; }

/* ── CARDS / GRIDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}
.card h3 { margin-bottom: 8px; }
.accent-bar { border-top: 4px solid var(--accent); }

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--primary);
  color: #b0c4d8;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 0.875rem;
}
.trust-bar strong { color: var(--white); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); padding: 12px 0; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── TOWN GRID ── */
.town-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 20px; }
.town-link {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--primary);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}
.town-link:hover { background: var(--accent-light); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--primary);
  color: var(--white);
  padding: 40px 24px;
}
.page-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 8px;
}
.page-header p { color: #b0c4d8; max-width: 620px; font-size: 1rem; }

/* ── PROCESS STEPS ── */
.process-steps { counter-reset: step; margin: 24px 0; }
.process-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-num {
  background: var(--accent);
  color: var(--white);
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }

/* ── FOOTER ── */
.site-footer {
  background: #1a1a1a;
  color: #aaaaaa;
  padding: 40px 24px 20px;
  margin-top: 48px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 1080px; margin: 0 auto 32px; }
.footer-col h4 { font-family: Arial Black, Arial, sans-serif; color: var(--white); font-size: 0.9rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #aaaaaa; text-decoration: none; font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; }
.footer-col .footer-phone { font-family: Arial Black, Arial, sans-serif; font-size: 1.2rem; color: var(--white); text-decoration: none; display: block; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.8rem; max-width: 1080px; margin: 0 auto; }
.footer-tagline { font-style: italic; color: #888; margin-bottom: 6px; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.highlight-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 20px 0;
}
.inline-cta {
  background: var(--primary);
  color: var(--white);
  padding: 28px 24px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.inline-cta p { margin: 0; font-size: 1rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .header-main { flex-direction: column; text-align: center; }
  .hero { padding: 40px 16px; }
  .page-content { padding: 32px 16px; }
  .inline-cta { flex-direction: column; }
}
