/* ── SOLID HOME CLEANING — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #2d6a4f; --green-mid: #40916c; --green-light: #d8f3dc;
  --green-pale: #f0faf2; --accent: #52b788; --text: #1b2e22;
  --muted: #6b8070; --border: #ddeee3; --white: #ffffff; --cream: #f8fdf9;
}
body { padding-top: 104px; font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 40px; left: 0; right: 0; z-index: 101; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0 5%; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--green) !important; color: white !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; }

/* TYPOGRAPHY */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 38px); color: var(--text); margin-bottom: 10px; letter-spacing: -0.3px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 540px; font-weight: 300; margin-bottom: 40px; }

/* BUTTONS */
.btn-primary { background: var(--green); color: white; font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 8px; text-decoration: none; white-space: nowrap; display: inline-block; transition: all 0.2s; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--green); font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 8px; text-decoration: none; background: white; white-space: nowrap; display: inline-block; }
.btn-white-solid { background: white; color: var(--green); font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 8px; text-decoration: none; display: inline-block; }
.btn-accent { background: var(--accent); color: white; font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; white-space: nowrap; display: inline-block; text-align: center; }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: white; font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; white-space: nowrap; display: inline-block; text-align: center; }

/* TRUST BAR */
.trust-bar { background: var(--green); padding: 18px 5%; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.92); }
.tcheck { width: 20px; height: 20px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; flex-shrink: 0; }

/* PAGE HERO (interior pages) */
.page-hero { background: var(--green); padding: 120px 5% 80px; }
.page-hero-inner { max-width: 720px; }
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); color: white; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.5px; }
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 560px; font-weight: 300; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* CONTENT SECTIONS */
.content-section { padding: 80px 5%; }
.content-section.cream { background: var(--cream); }
.content-section.white { background: white; }
.content-section.pale { background: var(--green-pale); }
.content-section.dark { background: var(--green); }
.content-section.dark .section-label { color: rgba(255,255,255,0.55); }
.content-section.dark .section-title { color: white; }
.content-section.dark .section-sub { color: rgba(255,255,255,0.6); }

/* SERVICE CARDS GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 40px; }
.service-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 24px; transition: all 0.2s; background: white; cursor: pointer; text-decoration: none; display: block; }
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,106,79,0.1); }
.service-card.featured { background: var(--green); border-color: var(--green); }
.service-card.featured .service-name { color: white; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); }
.service-badge { display: inline-block; background: rgba(255,255,255,0.2); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; margin-bottom: 12px; }
.service-num { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 1px; margin-bottom: 8px; }
.service-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); margin-bottom: 7px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* FEATURE SPLIT */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.feature-split-img { overflow: hidden; }
.feature-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-split-content { background: var(--green); padding: 80px 6%; display: flex; flex-direction: column; justify-content: center; }
.feature-split-content .section-label { color: rgba(255,255,255,0.55); }
.feature-split-content .section-title { color: white; margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 14px; font-weight: 300; line-height: 1.6; }
.feature-list li::before { content: '✓'; background: rgba(255,255,255,0.15); color: white; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* TWO COL CONTENT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { width: 100%; border-radius: 14px; object-fit: cover; height: 400px; }

/* NEIGHBORHOOD LINKS */
.neighborhood-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-top: 32px; }
.neighborhood-pill { background: white; border: 1.5px solid var(--border); border-radius: 10px; padding: 16px 18px; text-decoration: none; transition: all 0.2s; display: flex; align-items: center; justify-content: space-between; }
.neighborhood-pill:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(45,106,79,0.1); }
.neighborhood-name { font-size: 14px; font-weight: 500; color: var(--text); }
.neighborhood-tag { font-size: 11px; color: var(--muted); margin-top: 2px; }
.pill-arrow { font-size: 16px; color: var(--accent); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.stars { color: #f4a732; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--green); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 600; color: var(--text); }
.author-loc { font-size: 11px; color: var(--muted); }

/* FAQ */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { font-size: 15px; font-weight: 500; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-arrow { color: var(--accent); font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
.faq-answer { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-top: 12px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* CTA STRIP */
.cta-strip { position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.3); }
.cta-content { position: relative; z-index: 1; padding: 80px 5%; width: 100%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 38px); color: white; max-width: 540px; letter-spacing: -0.3px; line-height: 1.2; }
.cta-content p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 10px; font-weight: 300; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-direction: column; }

/* STATS */
.stats-strip { background: var(--green-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 52px 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.5; }

/* FOOTER */
footer { background: var(--text); padding: 56px 5% 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 20px; color: white; margin-bottom: 12px; text-decoration: none; display: block; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 240px; font-weight: 300; margin-bottom: 20px; }
.footer-market-tag { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.market-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col img { height: 260px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split-img { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .trust-bar { gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .cta-content { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
