/* Sun City West Church Cleaning — Theme D (Bold & Regional) */
/* churchcleaningsuncitywest.com */

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

:root {
  --primary:      #1c1c2e;
  --accent:       #3a7bd5;
  --accent-light: #e8f0fc;
  --bg:           #f4f6fa;
  --text:         #1c1c2e;
  --text-muted:   #52526e;
  --border:       #cdd5e0;
  --white:        #ffffff;
  --font-head:    Arial Black, Arial, sans-serif;
  --font-body:    Arial, Helvetica, sans-serif;
}

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

/* ── HEADER ── */
.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-block .brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
  display: block;
}
.brand-block .strapline {
  font-size: 0.78rem;
  color: #a0aec0;
  margin-top: 2px;
}
.header-contact {
  text-align: right;
}
.header-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.header-phone:hover { color: #90cdf4; }
.header-hours {
  font-size: 0.75rem;
  color: #a0aec0;
}

/* ── NAV ── */
.site-nav {
  background: #13132a;
  border-top: 1px solid #2d2d50;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
}
.site-nav a {
  display: block;
  color: #c9d6e8;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-left: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  border-left-color: var(--accent);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1c1c2e 0%, #2d2d50 100%);
  color: var(--white);
  padding: 56px 20px 48px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero .sub {
  font-size: 1.05rem;
  color: #c9d6e8;
  max-width: 620px;
  margin: 0 auto 28px;
}

/* ── QUOTE FORM ── */
.quote-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 28px;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text);
  text-align: left;
}
.quote-box h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.quote-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  color: var(--text);
  background: var(--white);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: background 0.15s;
}
.btn-primary:hover { background: #2b65b8; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }
.callback-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

/* ── MAIN CONTENT ── */
main { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.content-wide { max-width: 780px; }

h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--primary);
  margin: 32px 0 12px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}
h2:first-child { margin-top: 0; }
h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--primary);
  margin: 24px 0 8px;
}
p { margin-bottom: 16px; color: var(--text); }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 6px; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 3px;
  padding: 20px;
}
.card h3 { margin-top: 0; font-size: 1rem; }
.card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 10px; }
.card a { font-size: 0.88rem; font-weight: bold; }

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

/* ── PROCESS STEPS ── */
.steps { counter-reset: step; margin: 24px 0; }
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.step-num {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { margin: 0 0 4px; font-size: 1rem; }
.step-body p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* ── PRICING TABLE ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}
.pricing-table th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.85rem;
}
.pricing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.pricing-table tr:last-child td { border-bottom: none; }

/* ── FAQ ── */
.faq-item { margin-bottom: 24px; }
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.faq-item p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* ── CALLOUT ── */
.callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 0 3px 3px 0;
  margin: 24px 0;
}
.callout p { margin: 0; font-size: 0.93rem; }

/* ── RESOURCE ARTICLE ── */
.article-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--primary);
  color: #c9d6e8;
  padding: 36px 20px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: #a0aec0; font-size: 0.88rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; color: #a0aec0; margin-bottom: 6px; }
.footer-phone { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); text-decoration: none; }
.footer-phone:hover { color: #90cdf4; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #2d2d50;
  padding-top: 18px;
  font-size: 0.78rem;
  color: #a0aec0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.5rem; }
  .header-top { flex-direction: column; align-items: flex-start; }
  .header-contact { text-align: left; }
  .site-nav ul { gap: 0; }
  .site-nav a { padding: 8px 10px; font-size: 0.8rem; }
  main { padding: 24px 16px; }
}

/* ── UTILITY ── */
.text-muted { color: var(--text-muted); }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
