/* ============================================
   ZOE CLEANING SERVICE — Global Stylesheet
   Professional Corporate Design
   Colors: Plum #7B6BA8 | Teal #4AACAC | Ink #1C1B2E
============================================ */

:root {
  --plum:rgb(170, 143, 246);
  --plum-deep:rgb(152, 129, 233);
  --plum-mid:   #9B8EC4;
  --plum-soft:  #EAE6F4;
  --plum-pale:  #F6F4FC;
  --teal:       #4AACAC;
  --teal-deep:  #52cdcd;
  --teal-soft:  #E4F4F4;
  --ink:        #1C1B2E;
  --ink-mid:    #3D3C52;
  --ink-light:  #6B6A82;
  --stone:      #F3F2F7;
  --white:      #FFFFFF;
  --aqua:       #e1fbfbd9;
  --rule:       rgba(123,107,168,0.14);
  --shadow:     0 4px 32px rgba(74,63,114,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.inner { max-width: 1160px; margin: 0 auto; padding: 0 5%; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.tag-label {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal-deep);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 4px; margin-bottom: 18px;
}
.tag-plum { color: var(--plum); border-color: var(--plum); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 500; line-height: 1.08;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 500; line-height: 1.1;
  letter-spacing: -0.3px;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; line-height: 1.2;
}
h4 { font-size: 14px; font-weight: 600; color: var(--ink); }
p { font-size: 14px; color: var(--ink-light); line-height: 1.85; }
em { font-style: italic; color: var(--plum); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; text-decoration: none;
  padding: 13px 28px; border-radius: 2px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-dark   { background: var(--ink);       color: var(--white); }
.btn-dark:hover   { background: var(--plum-deep); }
.btn-plum   { background: var(--plum-deep); color: var(--white); }
.btn-plum:hover   { background: var(--plum); }
.btn-teal   { background: var(--teal-deep); color: var(--white); }
.btn-teal:hover   { background: var(--teal); }
.btn-white  { background: var(--white);     color: var(--plum-deep); }
.btn-white:hover  { background: var(--plum-soft); }
.btn-outline {
  background: transparent; color: var(--plum-deep);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover { background: var(--plum-soft); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 20px; font-size: 11px; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; color: var(--plum-deep); line-height: 1;
}
.nav-logo-sub {
  font-size: 8.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ink-light); margin-top: 3px;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--ink-mid);
  text-decoration: none; padding: 8px 16px;
  position: relative; transition: color 0.15s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 16px; right: 16px; height: 2px;
  background: var(--plum); transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--plum); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--plum); }
.nav-link.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ── FLOATING BUTTONS ── */
.float-bar {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 999;
}
.float-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.float-call { background: var(--plum-deep); color: var(--white); }
.float-call:hover { background: var(--plum); }
.float-sms  { background: var(--teal-deep); color: var(--white); }
.float-sms:hover  { background: var(--teal); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 0 72px;
  background: var(--ink);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(123,107,168,0.2) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.6); }
.page-hero h1 { color: var(--white); font-size: 48px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; }

/* ── DIVIDER ── */
hr.rule { border: none; border-top: 1px solid var(--rule); }

/* ── SECTION ── */
.section { padding: 100px 0; }
.section-alt { background: var(--stone); }
.section-dark {
  background: var(--plum-deep);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(74,172,172,0.1) 0%, transparent 50%);
}
.section-ink { background: var(--ink); }
.section-head { margin-bottom: 60px; }
.section-head-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
}

/* ── CARDS ── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.card {
  background: var(--white); padding: 40px 36px;
  transition: background 0.2s;
}
.card-alt { background: var(--stone); }
.card:hover { background: var(--plum-pale); }
.card-no-hover:hover { background: var(--white); }
.card-dark { background: rgba(255,255,255,0.04); }
.card-dark:hover { background: rgba(255,255,255,0.07); }

/* ── STAT ── */
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 500; line-height: 1;
  color: var(--ink);
}
.stat-num-light { color: var(--white); }
.stat-unit { color: var(--teal); }
.stat-label { font-size: 11px; letter-spacing: 0.5px; color: var(--ink-light); margin-top: 8px; }
.stat-label-light { color: rgba(255,255,255,0.4); }

/* ── CHECKLIST ── */
.checklist { list-style: none; margin: 16px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--ink-light);
  padding: 8px 0; border-bottom: 1px solid var(--rule);
}
.checklist li:last-child { border-bottom: none; }
.check-icon { width: 18px; height: 18px; border: 1px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 9px; height: 9px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.checklist-light li { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.08); }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(123,107,168,0.2);
  background: var(--white);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--ink); outline: none; border-radius: 0;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--plum); }
.form-group textarea { height: 110px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); }
.footer-main {
  max-width: 1160px; margin: 0 auto; padding: 80px 5% 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.footer-nap { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 2.1; margin-top: 20px; }
.footer-nap a { color: var(--teal); text-decoration: none; }
.footer-nap a:hover { color: var(--white); }
.footer-col h5 {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  margin-bottom: 10px; transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-seo-text { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-menu { display: none; }
  .float-bar { bottom: 16px; right: 16px; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  h1 { font-size: 30px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}
