/* Sun City Recurring 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;
  --font-heading: Arial Black, Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

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

/* ---- HEADER ---- */
.site-header {
  background: #2c2c2c;
  color: var(--white);
  padding: 0;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.header-brand { display: flex; flex-direction: column; gap: 2px; }
.header-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.header-brand .brand-tagline {
  font-size: 0.78rem;
  color: #aaaaaa;
  letter-spacing: 0.02em;
}
.header-contact { text-align: right; }
.header-contact .header-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
}
.header-contact .header-phone:hover { color: #ff7a4d; }
.header-contact .header-hours {
  font-size: 0.75rem;
  color: #aaaaaa;
}
.header-nav {
  background: var(--primary);
  border-top: 1px solid #1a3d5c;
}
.header-nav ul {
  display: flex;
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  gap: 0;
}
.header-nav li a {
  display: block;
  color: #c8d8e8;
  text-decoration: none;
  padding: 11px 16px;
  font-size: 0.875rem;
  transition: color 0.15s, background 0.15s;
}
.header-nav li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* ---- HERO ---- */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 56px 24px;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.hero h1 { font-family: var(--font-heading); font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { font-size: 1.05rem; color: #c8d8e8; margin-bottom: 24px; line-height: 1.6; }
.hero-facts { list-style: none; margin-bottom: 28px; }
.hero-facts li { padding: 6px 0; padding-left: 20px; position: relative; color: #c8d8e8; font-size: 0.95rem; }
.hero-facts li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.hero-phone-large { font-family: var(--font-heading); font-size: 1.6rem; color: var(--accent); text-decoration: none; display: block; margin-bottom: 6px; }
.hero-phone-large:hover { color: #ff7a4d; }
.hero-hours-note { font-size: 0.8rem; color: #8aabcc; }

/* ---- QUOTE FORM ---- */
.quote-form-box {
  background: var(--white);
  border-top: 4px solid var(--accent);
  padding: 28px 24px;
}
.quote-form-box h2 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
  transition: background 0.15s;
}
.btn-primary:hover { background: #c94d1e; }
.form-callback { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ---- MAIN CONTENT ---- */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.page-hero { background: var(--primary); color: var(--white); padding: 40px 24px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-heading); font-size: 1.75rem; line-height: 1.2; margin-bottom: 10px; }
.page-hero p { color: #c8d8e8; font-size: 0.95rem; }
.breadcrumb { font-size: 0.8rem; color: #8aabcc; margin-bottom: 12px; }
.breadcrumb a { color: #8aabcc; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* ---- SECTIONS ---- */
.section { margin-bottom: 48px; }
.section h2 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }
.section h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--primary); margin-bottom: 10px; margin-top: 24px; }
.section p { margin-bottom: 14px; }
.section ul, .section ol { margin-left: 20px; margin-bottom: 14px; }
.section li { margin-bottom: 6px; }

/* ---- SERVICE GRID ---- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.service-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--accent); padding: 24px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.service-card a { color: var(--accent); text-decoration: none; font-size: 0.875rem; font-weight: bold; }
.service-card a:hover { text-decoration: underline; }

/* ---- TOWN GRID ---- */
.town-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.town-link { display: block; background: var(--white); border: 1px solid var(--border); padding: 12px 16px; text-decoration: none; color: var(--primary); font-size: 0.9rem; font-weight: bold; transition: border-color 0.15s, background 0.15s; }
.town-link:hover { border-color: var(--accent); background: var(--accent-light); }

/* ---- TABLE ---- */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.data-table th { background: var(--primary); color: var(--white); font-family: var(--font-heading); font-size: 0.85rem; padding: 12px 16px; text-align: left; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.data-table tr:nth-child(even) td { background: var(--white); }
.data-table tr:nth-child(odd) td { background: var(--bg); }

/* ---- CTA STRIP ---- */
.cta-strip { background: var(--accent); color: var(--white); padding: 36px 24px; text-align: center; }
.cta-strip h2 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 12px; }
.cta-strip p { margin-bottom: 20px; opacity: 0.9; }
.btn-white { display: inline-block; background: var(--white); color: var(--accent); font-family: var(--font-heading); font-size: 0.95rem; padding: 14px 32px; border: none; cursor: pointer; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; transition: background 0.15s; }
.btn-white:hover { background: #f0e0d8; }

/* ---- TWO-COL ---- */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--accent); padding: 24px; }
.sidebar-box h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); margin-bottom: 14px; }
.sidebar-box ul { list-style: none; }
.sidebar-box li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box a { color: var(--accent); text-decoration: none; }
.sidebar-box a:hover { text-decoration: underline; }
.sidebar-phone { font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent); text-decoration: none; display: block; margin: 14px 0 6px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.faq-a { color: var(--text); font-size: 0.95rem; }

/* ---- 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: 40px; height: 40px; background: var(--primary); color: var(--white); font-family: var(--font-heading); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.step-body h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.step-body p { font-size: 0.95rem; color: var(--text); }

/* ---- FOOTER ---- */
.site-footer { background: #2c2c2c; color: #aaaaaa; padding: 40px 24px 24px; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand .brand-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.85rem; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: #aaaaaa; text-decoration: none; font-size: 0.85rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #3c3c3c; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-contact a { color: #aaaaaa; text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-phone { color: var(--accent); font-family: var(--font-heading); text-decoration: none; font-size: 1rem; }
.footer-phone:hover { color: #ff7a4d; }
.years-badge { display: inline-block; background: var(--accent); color: var(--white); font-family: var(--font-heading); font-size: 0.75rem; padding: 3px 10px; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-form-box { order: -1; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .town-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-top { flex-direction: column; gap: 12px; text-align: center; }
  .header-contact { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
