/* RapidMaid — Des Moines House Cleaning */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0d9488;
  --blue-dark: #0f766e;
  --blue-light: #e6faf8;
  --green: #27ae60;
  --text: #1a1a2e;
  --muted: #555;
  --border: #e0e6ef;
  --white: #fff;
  --bg: #f7f9fc;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(26,111,196,0.10);
}

body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

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

/* NAV */
nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 8px rgba(0,0,0,0.07); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--blue); letter-spacing: -0.5px; }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a { font-weight: 500; color: var(--text); font-size: 0.95rem; }
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--blue-dark); text-decoration: none !important; }

/* HERO */
.hero { background: linear-gradient(135deg, #0d9488 0%, #065f59 100%); color: var(--white); padding: 72px 20px 64px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: #ffd166; }
.hero .subtitle { font-size: 1.2rem; opacity: 0.92; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 6px 16px; font-size: 0.88rem; font-weight: 600; }

/* CTA BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 800; font-size: 1.05rem; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); text-decoration: none; }
.btn-primary { background: #ffd166; color: #1a1a2e; }
.btn-white { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* QUOTE FORM */
.quote-bar { background: var(--white); border-radius: var(--radius); padding: 24px 32px; max-width: 680px; margin: 0 auto; box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.quote-bar h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 16px; font-weight: 700; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form input, .quote-form select { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 1rem; color: var(--text); background: #fff; }
.quote-form input:focus, .quote-form select:focus { outline: none; border-color: var(--blue); }
.quote-form button { grid-column: 1 / -1; }

/* TRUST BAR */
.trust-bar { background: var(--blue-light); border-bottom: 1px solid var(--border); padding: 16px 20px; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--text); }
.trust-item .icon { font-size: 1.2rem; }

/* SECTIONS */
section { padding: 64px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
h2.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin-bottom: 40px; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow 0.2s, border-color 0.2s; }
.service-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.service-card .icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.service-card p { font-size: 0.93rem; color: var(--muted); margin-bottom: 14px; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.review-stars { color: #f4a116; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 14px; line-height: 1.55; }
.review-author { font-size: 0.88rem; font-weight: 700; color: var(--muted); }
.review-coach { background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: 6px; padding: 16px 20px; margin-top: 32px; }
.review-coach h4 { font-size: 0.95rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.review-coach p { font-size: 0.88rem; color: var(--text); }

/* PROCESS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { text-align: center; padding: 24px; }
.step-num { width: 52px; height: 52px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; margin: 0 auto 16px; }
.step h3 { font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--bg); border-radius: var(--radius); }
.why-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-item h4 { font-weight: 800; font-size: 0.97rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--muted); }

/* NEIGHBORHOODS */
.neigh-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.neigh-card { background: var(--blue-light); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.neigh-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.neigh-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, #0d9488, #065f59); color: var(--white); text-align: center; padding: 64px 20px; }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.cta-band p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.phone-link { font-size: 1.4rem; font-weight: 900; color: #ffd166; letter-spacing: 0.5px; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(135deg, #0d9488, #065f59); color: var(--white); padding: 48px 20px 40px; text-align: center; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto 24px; }

/* CONTENT */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.5rem; font-weight: 800; margin: 32px 0 12px; }
.content-block p { margin-bottom: 16px; color: var(--text); line-height: 1.7; }
.content-block ul { margin-bottom: 16px; padding-left: 20px; }
.content-block ul li { margin-bottom: 8px; color: var(--muted); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pricing-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.pricing-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.pricing-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.pricing-features li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { background: var(--blue-light); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--blue); }
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h4 { font-weight: 800; margin-bottom: 8px; font-size: 1rem; }
.faq-item p { font-size: 0.93rem; color: var(--muted); }

/* FOOTER */
footer { background: #0e1a2e; color: rgba(255,255,255,0.75); padding: 48px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); font-weight: 800; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 0.88rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-nap { font-size: 0.92rem; line-height: 1.8; }
.footer-nap strong { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.schema-stars { color: #f4a116; }

/* BREADCRUMB */
.breadcrumb { background: var(--bg); padding: 10px 20px; font-size: 0.85rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb a { color: var(--blue); }



/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 48px 16px 40px; }
  .quote-form { grid-template-columns: 1fr; }
  section { padding: 44px 16px; }
}
