/* ── Savvi Maids — Design System: Gray / White / Black + Teal Accents ── */
:root {
  --teal: #00b8a6;
  --teal-dark: #009e8e;
  --teal-light: #f0faf9;
  --black: #111111;
  --charcoal: #1e1e1e;
  --charcoal-mid: #2c2c2c;
  --gray-50: #f9f9f9;
  --gray-100: #f2f2f2;
  --gray-200: #e0e0e0;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-700: #3d3d3d;
  --gray-900: #111111;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.13);
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1200px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 7px 24px;
}
.top-bar .tb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--teal); font-weight: 600; }
.top-bar .tb-right { display: flex; gap: 20px; align-items: center; }

/* ── Navbar ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a, .nav-drop > .drop-toggle {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
}
.nav-links > a:hover, .nav-drop > .drop-toggle:hover { background: var(--gray-100); color: var(--black); }
.nav-links > a.active { color: var(--teal); }
.nav-cta-btn {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 7px;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: .87rem !important;
  transition: background .15s !important;
}
.nav-cta-btn:hover { background: var(--charcoal-mid) !important; }

/* Dropdown */
.nav-drop { position: relative; }
.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  z-index: 200;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 9px 14px;
  font-size: .87rem;
  color: var(--gray-700);
  border-radius: 6px;
  transition: background .12s;
}
.drop-menu a:hover { background: var(--gray-50); color: var(--black); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--black);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--charcoal) center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,.87) 0%, rgba(17,17,17,.65) 52%, rgba(17,17,17,.28) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-text .eyebrow {
  display: inline-block;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,184,166,.1);
  border: 1px solid rgba(0,184,166,.28);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-text h1 span { color: var(--teal); }
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .83rem;
}
.hero-trust-item .icon { color: var(--teal); font-size: .9rem; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.hero-form-card .form-sub {
  font-size: .84rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 13px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: .91rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border .15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,184,166,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 7px;
  font-weight: 700;
  font-size: .9rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,184,166,.28); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-navy { background: var(--black); color: var(--white); }
.btn-navy:hover { background: var(--charcoal-mid); }
.btn-full { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 32px 24px;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ── Section Styles ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--charcoal); }
.section-black { background: var(--black); }

.section-label {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-dark .section-label,
.section-black .section-label { color: var(--teal); }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-dark .section-title,
.section-black .section-title { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 580px;
}
.section-dark .section-sub,
.section-black .section-sub { color: rgba(255,255,255,.6); }
.section-hd { margin-bottom: 48px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

/* ── Cards ── */
.card-grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gray-400); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.card p { font-size: .88rem; color: var(--gray-500); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: .87rem; margin-top: 14px; transition: gap .15s; }
.card-link:hover { gap: 10px; }

/* Photo Cards */
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.photo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.photo-card img { width: 100%; height: 220px; object-fit: cover; }
.photo-card-body { padding: 20px; }
.photo-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.photo-card-body p { font-size: .875rem; color: var(--gray-500); }

/* ── Feature List ── */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 700;
}
.feature-text h4 { font-size: .94rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.feature-text p { font-size: .86rem; color: var(--gray-500); }

/* ── Split Layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-img { order: -1; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 400px; object-fit: cover; }

/* ── Gallery Grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 22px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon { font-size: 1.15rem; color: var(--teal); flex-shrink: 0; font-weight: 400; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 17px; font-size: .89rem; color: var(--gray-500); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA Section ── */
.cta-section { background: var(--charcoal); text-align: center; padding: 80px 24px; }
.cta-section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); }
.footer-top { padding: 64px 24px 48px; }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 260px; margin-bottom: 16px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 64px 24px;
  text-align: center;
}
.page-hero .eyebrow { font-size: .71rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 24px; font-size: .79rem; color: var(--gray-500); }
.breadcrumb span { color: var(--gray-400); margin: 0 6px; }
.breadcrumb a { color: var(--teal); font-weight: 500; }

/* ── Badge ── */
.badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; background: var(--gray-100); color: var(--gray-700); margin-bottom: 12px; border: 1px solid var(--gray-200); }

/* ── Service Areas Grid ── */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.area-link {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--gray-700);
  text-align: center;
  transition: all .15s;
}
.area-link:hover { background: var(--gray-100); border-color: var(--gray-400); color: var(--black); }

/* ── Blog Cards ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-body { padding: 24px; }
.blog-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 8px; display: block; }
.blog-card h3 { font-size: 1.03rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: .77rem; color: var(--gray-400); display: flex; gap: 12px; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 48px 0; }

/* ── Utilities ── */
.text-teal { color: var(--teal); }
.text-black { color: var(--black); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-drop > .drop-toggle { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; align-items: center; }
  .site-nav { position: relative; }
  .drop-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .nav-drop:hover .drop-menu { display: none; }
  .nav-drop.open .drop-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .hero-text h1 { font-size: 2rem; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .top-bar .tb-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .hero-btns { flex-direction: column; }
}
