:root {
  --navy: #062b63;
  --blue: #0b5fae;
  --teal: #0795b4;
  --mint: #e8f8f7;
  --light: #f5fbfd;
  --white: #ffffff;
  --ink: #183153;
  --gray: #65748a;
  --line: rgba(6, 43, 99, 0.1);
  --shadow: 0 18px 45px rgba(6, 43, 99, 0.13);
  --soft-shadow: 0 12px 28px rgba(6, 43, 99, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
p { color: var(--gray); line-height: 1.65; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 43, 99, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.navbar-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(6, 43, 99, 0.08);
}
.navbar { min-height: 74px; display: flex; align-items: center; gap: 18px; transition: min-height 0.25s ease; }
.site-header.navbar-scrolled .navbar { min-height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}
.brand strong { font-size: 20px; line-height: 1; }
.brand strong span { color: var(--teal); }
.brand small { display: block; text-transform: uppercase; letter-spacing: 1.1px; font-size: 9px; margin-top: 3px; color: var(--gray); }
.nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; font-weight: 700; font-size: 14px; }
.nav-links a, .nav-register, .nav-dropdown-toggle {
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 0;
  font-weight: 750;
  position: relative;
}
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-links a::after, .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover, .nav-register:hover, .nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after, .nav-dropdown:hover .nav-dropdown-toggle::after, .nav-dropdown:focus-within .nav-dropdown-toggle::after, .nav-dropdown-toggle.active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 8px 18px rgba(7, 149, 180, 0.18);
}
.nav-links .nav-cta:hover { color: var(--white); transform: translateY(-1px); box-shadow: 0 12px 22px rgba(7, 149, 180, 0.22); }
.nav-links .nav-cta::after { display: none; }
.nav-dropdown { position: relative; }
.nav-chevron { font-size: 10px; line-height: 1; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-chevron, .nav-dropdown:focus-within .nav-chevron, .nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.services-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 340px;
  padding: 8px;
  border: 1px solid rgba(6, 43, 99, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 43, 99, 0.14);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown:hover .services-dropdown, .nav-dropdown:focus-within .services-dropdown, .nav-dropdown.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.service-menu-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.18s ease, color 0.18s ease;
}
.service-menu-item:hover, .service-menu-item:focus-visible { background: rgba(7, 149, 180, 0.08); color: var(--navy); outline: none; }
.service-menu-icon, .service-icon-badge {
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  font-weight: 900;
}
.service-menu-icon { width: 34px; height: 34px; border-radius: 50%; font-size: 12px; background: rgba(7, 149, 180, 0.12); color: var(--teal); transition: background 0.18s ease, color 0.18s ease; }
.service-menu-item:hover .service-menu-icon, .service-menu-item:focus-visible .service-menu-icon { background: var(--teal); color: var(--white); }
.service-menu-copy { min-width: 0; }
.service-menu-item strong { display: block; font-size: 14px; line-height: 1.2; }
.service-menu-item small { display: block; color: var(--gray); line-height: 1.3; margin-top: 3px; font-size: 12px; }
.service-menu-arrow { color: rgba(6, 43, 99, 0.36); font-weight: 900; transition: transform 0.18s ease, color 0.18s ease; }
.service-menu-item:hover .service-menu-arrow, .service-menu-item:focus-visible .service-menu-arrow { color: var(--teal); transform: translateX(3px); }
.phone-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 2px solid var(--teal);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.phone-btn, .btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 28px rgba(7, 149, 180, 0.24);
}
.phone-btn {
  min-height: 38px;
  padding: 0 15px;
  border-width: 1px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}
.phone-btn:hover { background: var(--light); transform: translateY(-1px); }
.btn.outline { color: var(--teal); background: var(--white); }
.btn.light { color: var(--teal); background: var(--white); border-color: var(--white); }
.btn:hover { transform: translateY(-2px); }
.nav-toggle { display: none; margin-left: auto; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; color: var(--navy); font-weight: 900; }
.nav-links a:focus-visible, .nav-register:focus-visible, .nav-dropdown-toggle:focus-visible, .phone-btn:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid rgba(7, 149, 180, 0.22);
  outline-offset: 4px;
}

.hero {
  overflow: hidden;
  background: linear-gradient(115deg, #ffffff 0%, #f6fcfd 58%, #e7f8fb 100%);
}
.hero-grid, .quote-hero-grid { min-height: 640px; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 46px; }
.hero h1, .page-hero h1, .quote-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}
.hero-rule { width: 88px; height: 5px; background: var(--teal); border-radius: 999px; margin: 24px 0; }
.hero p, .page-hero p, .quote-hero p { color: #24436b; font-size: 20px; line-height: 1.65; max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; max-width: 680px; }
.trust-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
}
.trust-row strong { display: block; color: var(--navy); font-size: 13px; text-transform: uppercase; }
.trust-row span { display: block; margin-top: 6px; color: var(--gray); font-size: 13px; line-height: 1.45; }

.clean-image-frame {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 38, 88, 0.14);
  background: #eefaff;
  animation: fadeSlide 0.7s ease both;
}
.clean-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 38, 88, 0.14);
  background: #eefaff;
}
.clean-image-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 15%, rgba(7, 149, 180, 0.18), transparent 56%);
  filter: blur(8px);
}
.clean-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, rgba(255,255,255,.32), rgba(0,153,185,.10));
  pointer-events: none;
}
.clean-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, rgba(7, 149, 180, 0.18), rgba(6, 43, 99, 0.08));
  pointer-events: none;
  opacity: 0.82;
}
.clean-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}
.clean-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}
.card:hover .clean-image-frame img,
.service-card:hover .clean-image-frame img,
.clean-image-frame:hover img,
.clean-image-wrap:hover img { transform: scale(1.07); }
.hero-image, .hero-photo { min-height: 560px; }
.service-photo { height: 230px; min-height: 0; border-radius: 18px 18px 0 0; box-shadow: none; overflow: hidden; }
.service-photo img { display: block; min-height: 0; border-radius: 0; }
.service-photo::before { display: none; }
.service-icon-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  box-shadow: 0 12px 26px rgba(6, 43, 99, 0.18);
}
.photo-panel, .detail-photo { min-height: 360px; }
.photo-crop-kitchen { --crop-position: 0% 0%; }
.photo-crop-office { --crop-position: 50% 0%; }
.photo-crop-bathroom { --crop-position: 0% 100%; }
.photo-crop-window { --crop-position: 50% 100%; }
.photo-crop-store { --crop-position: 100% 100%; }

.section { padding: 76px 0; }
.soft-section, .journey-band { background: var(--light); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.eyebrow { color: var(--teal); text-transform: uppercase; font-weight: 900; letter-spacing: 1px; font-size: 13px; }
h2 { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.12; margin: 8px 0 14px; font-weight: 900; }
.section-title { text-align: center; font-size: 36px; margin: 0 0 34px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-grid.preview { grid-template-columns: repeat(3, 1fr); }
.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-body { padding: 22px; display: flex; flex: 1; flex-direction: column; }
.service-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; }
.service-card p { margin: 0 0 18px; font-size: 14px; }
.included-list { display: grid; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; color: var(--ink); font-size: 13px; }
.included-list li { position: relative; padding-left: 18px; }
.included-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.card-actions { display: flex; gap: 12px; margin-top: auto; flex-wrap: wrap; align-items: center; }
.card-actions a { color: var(--teal); font-weight: 900; font-size: 14px; }
.mini-quote-btn {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.fade-card { animation: fadeSlide 0.65s ease both; }

.feature-grid, .contact-grid, .support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card, .prompt-card, .quote-intro-card, .success-panel {
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.premium-grid .feature-card { min-height: 220px; }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-grid article {
  padding: 24px;
  min-height: 160px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.steps-grid h3 { margin: 18px 0 0; font-size: 17px; line-height: 1.35; }
.support-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f4fbfd);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.trust-section { background: linear-gradient(135deg, #f7fcfd, #ecf9f8); }
.trust-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trust-list span {
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  color: var(--ink);
}

.before-after-section { background: linear-gradient(135deg, #f8fcfd, #e8f8f7); }
.before-after-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.before-after-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6, 43, 99, 0.88), rgba(11, 95, 174, 0.86));
  color: var(--white);
  box-shadow: var(--shadow);
}
.before-after-card.after { grid-column: span 2; background: linear-gradient(135deg, rgba(7, 149, 180, 0.86), rgba(6, 43, 99, 0.84)); }
.before-after-card span { font-size: 28px; font-weight: 900; }
.before-after-card p { color: rgba(255, 255, 255, 0.86); }
blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  line-height: 1.7;
}
cite { display: block; margin-top: 18px; color: var(--teal); font-style: normal; font-weight: 900; }
.final-cta, .cta-strip {
  color: var(--white);
  background: linear-gradient(135deg, #05285c, #073a76 48%, #0795b4);
  padding: 46px 0;
}
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.final-cta h2 { color: var(--white); max-width: 780px; }
.final-cta .eyebrow { color: #bdf6ff; }

.home-cta-section { background: var(--white); }
.home-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.home-cta-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-cta-card:hover,
.home-cta-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(7, 149, 180, 0.32);
  box-shadow: var(--shadow);
  outline: none;
}
.home-cta-card span {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.12;
}
.home-cta-card p {
  margin: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}
.home-cta-card strong {
  align-self: end;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.about-grid, .detail-grid, .quote-layout, .service-hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: center; }
.page-hero, .quote-hero {
  padding: 64px 0;
  background: linear-gradient(110deg, var(--light), var(--white) 55%, rgba(7, 149, 180, 0.16));
}
.service-hero {
  padding: 64px 0;
  background: linear-gradient(110deg, var(--white), var(--light) 52%, rgba(7, 149, 180, 0.14));
}
.service-content-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 24px; align-items: stretch; }
.intro-card { grid-row: span 1; }
.faq-section { background: var(--light); }
.faq-grid { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item {
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.faq-item summary { cursor: pointer; font-weight: 900; color: var(--navy); }
.page-hero.compact { padding: 46px 0; }
.service-detail-hero { padding: 78px 0; }

.form-shell { max-width: 760px; }
.form-card {
  padding: 34px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
label { display: grid; gap: 8px; margin-bottom: 18px; font-weight: 800; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(6, 43, 99, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(7, 149, 180, 0.18); border-color: var(--teal); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-layout { align-items: start; }
.quote-builder-layout { grid-template-columns: 0.75fr 1.25fr; }
.quote-intro-card { position: sticky; top: 112px; }
.form-section-label {
  margin: 8px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 13px;
}
.disabled-upload input { opacity: 0.55; cursor: not-allowed; }
.disabled-upload small { color: var(--gray); font-weight: 600; }
.check-list { padding-left: 18px; color: var(--gray); line-height: 1.8; }
.success-panel { max-width: 780px; grid-column: 1 / -1; margin: 0 auto; text-align: center; }
.success-icon { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #e7f8ef; color: #15945b; font-size: 28px; font-weight: 900; }
.account-reason { max-width: 660px; margin: 18px auto 0; color: var(--ink); font-weight: 700; }

.social-row, .modal-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.social-row button, .choice-btn {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfd;
  color: var(--ink);
  font-weight: 900;
}
.choice-btn:disabled { color: #9aa6b5; cursor: not-allowed; }
.auth-link { text-align: center; }
.auth-link a, .link-button { color: var(--teal); font-weight: 900; }
.link-button { border: 0; background: transparent; cursor: pointer; padding: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 27, 61, 0.58);
}
.modal-overlay.open { display: grid; }
.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(3, 27, 61, 0.3);
  animation: modalIn 0.25s ease both;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}
.modal-register-form { display: none; }
.modal-register-form.open { display: block; }
.modal-message { display: none; padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-weight: 800; }
.modal-message.show { display: block; background: #ffe7e7; color: #8a1f1f; }

.flash-wrap { padding-top: 18px; }
.flash { padding: 14px 16px; border-radius: 10px; margin-bottom: 12px; background: #e9f8fb; color: var(--navy); font-weight: 800; }
.flash.success { background: #e7f8ef; }
.flash.warning { background: #fff7df; }
.flash.danger { background: #ffe7e7; }
.flash.info { background: #e9f8fb; }

.dashboard-actions { margin-bottom: 22px; }
.table-wrap { margin-bottom: 34px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--soft-shadow); border-radius: 14px; overflow: hidden; }
th, td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
th { background: var(--navy); color: var(--white); text-transform: uppercase; font-size: 12px; }
.status { display: inline-block; padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--teal); font-weight: 900; font-size: 12px; }

.footer { padding: 44px 0; background: #031b3d; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer p, .footer a { color: rgba(255, 255, 255, 0.78); }
.footer .brand small { color: rgba(255, 255, 255, 0.72); }
.footer-brand .brand-mark { background: rgba(255, 255, 255, 0.14); }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 30px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 42px rgba(6, 43, 99, 0.1);
  }
  .site-header.navbar-scrolled .nav-links { top: 66px; }
  .nav-links.open { display: flex; }
  .nav-dropdown, .nav-dropdown-toggle, .nav-links a, .nav-register { width: 100%; text-align: left; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-links .nav-cta { width: auto; }
  .phone-btn { display: none; }
  .services-dropdown {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    margin-top: 8px;
    padding: 6px;
    border-radius: 16px;
    background: var(--light);
  }
  .nav-dropdown.open .services-dropdown { display: block; transform: none; }
  .nav-dropdown:hover .services-dropdown { transform: none; }
  .hero-grid, .quote-hero-grid, .about-grid, .detail-grid, .quote-layout, .service-hero-grid, .trust-grid, .service-content-grid { grid-template-columns: 1fr; }
  .hero-grid, .quote-hero-grid { min-height: auto; padding: 54px 0; }
  .hero-image, .hero-photo { min-height: 420px; }
  .service-grid, .service-grid.preview { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .feature-grid, .contact-grid, .footer-grid, .testimonial-grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .quote-intro-card { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .navbar { min-height: 70px; }
  .site-header.navbar-scrolled .navbar { min-height: 64px; }
  .brand strong { font-size: 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { font-size: 8px; letter-spacing: 0.8px; }
  .nav-links { top: 70px; padding-inline: 20px; }
  .site-header.navbar-scrolled .nav-links { top: 64px; }
  .services-dropdown { width: 100%; }
  .hero h1, .page-hero h1, .quote-hero h1 { font-size: 40px; }
  .hero p, .page-hero p, .quote-hero p { font-size: 17px; }
  .trust-row, .service-grid, .service-grid.preview, .steps-grid, .feature-grid, .contact-grid, .footer-grid, .two-col, .social-row, .modal-choice-grid, .testimonial-grid, .before-after-grid, .final-cta-grid, .home-cta-grid, .support-grid, .trust-list { grid-template-columns: 1fr; }
  .before-after-card.after { grid-column: auto; }
  .section { padding: 54px 0; }
  .form-card, .modal-panel { padding: 24px; }
  .hero-image, .hero-photo, .photo-panel, .detail-photo { min-height: 320px; }
  .service-photo { height: 180px; }
}

/* Premium UI completion layer */
:root {
  --radius-card: 24px;
  --radius-large: 30px;
  --section-pad: clamp(58px, 7vw, 96px);
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(7, 149, 180, 0.08), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(6, 43, 99, 0.07), transparent 26%),
    var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav-toggle {
  width: 46px;
  height: 42px;
  padding: 0;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--navy);
}

.services-dropdown {
  width: min(720px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.section { padding: var(--section-pad) 0; }

.page-hero,
.quote-hero,
.service-hero,
.hero {
  position: relative;
  isolation: isolate;
}

.page-hero::before,
.quote-hero::before,
.service-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(7, 149, 180, 0.16), transparent 32%),
    radial-gradient(circle at 14% 78%, rgba(6, 43, 99, 0.08), transparent 28%);
}

.feature-card,
.prompt-card,
.quote-intro-card,
.success-panel,
.support-card,
.form-card,
blockquote,
.steps-grid article,
.service-card {
  border-radius: var(--radius-card);
}

.service-card {
  min-height: 540px;
}

.service-card h3,
.feature-card h3,
.support-card h3 {
  color: var(--navy);
}

.hero-media-stack { overflow: visible; }

.hero-media-stack img {
  border-radius: 24px;
}

.floating-trust-card {
  position: absolute;
  z-index: 4;
  width: min(220px, 42%);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(6, 43, 99, 0.18);
  backdrop-filter: blur(12px);
}

.floating-trust-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.floating-trust-card span {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.35;
}

.rating-card { left: -22px; top: 42px; }
.check-card { right: -18px; top: 112px; }
.quote-card { left: 24px; bottom: 70px; }
.guarantee-card { right: 24px; bottom: 22px; }

.stats-band {
  padding: 26px 0;
  background: linear-gradient(135deg, var(--navy), #083b79 54%, var(--teal));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-stats-grid { grid-template-columns: repeat(2, 1fr); }

.stats-grid div,
.metric-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-grid strong,
.metric-card strong {
  display: block;
  color: inherit;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
}

.stats-grid span,
.metric-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.comparison-grid,
.dashboard-summary,
.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dashboard-summary {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}

.metric-card {
  background: linear-gradient(145deg, var(--white), #f4fbfd);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

.metric-card span { color: var(--gray); }

.dashboard-actions {
  display: grid;
  align-items: center;
  justify-items: start;
  margin: 0;
}

.image-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.image-collage img:first-child {
  grid-row: span 2;
}

.trust-badge-grid {
  grid-template-columns: repeat(6, 1fr);
}

.trust-badge-grid span,
.flow-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  text-align: center;
}

.flow-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.sticky-quote-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--navy), #073b78);
  color: var(--white);
  box-shadow: var(--shadow);
}

.sticky-quote-card h2,
.sticky-quote-card p { color: var(--white); }

.related-list {
  display: grid;
  gap: 14px;
}

.related-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-list a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
}

.related-list strong,
.related-list small { display: block; }

.related-list small {
  color: var(--gray);
  line-height: 1.45;
}

.stars {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7df;
  color: #9a6a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white);
}

.footer-cta .eyebrow { color: #d7fbff; }

.footer {
  padding: 58px 0;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}

.footer h3 {
  margin-top: 0;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.footer-locations {
  font-size: 13px;
}

.premium-table table,
.table-wrap table {
  border: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "-";
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .services-dropdown {
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .nav-dropdown.open .services-dropdown { display: grid; }

  .stats-grid,
  .dashboard-summary,
  .trust-badge-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-quote-card { position: static; }
}

@media (max-width: 680px) {
  .floating-trust-card {
    position: static;
    width: auto;
    margin: 10px;
  }

  .hero-media-stack {
    display: grid;
    gap: 0;
    overflow: hidden;
  }

  .stats-grid,
  .dashboard-summary,
  .trust-badge-grid,
  .comparison-grid,
  .footer-cta-grid {
    grid-template-columns: 1fr;
  }

  .image-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 190px);
  }

  .image-collage img:first-child { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-cta-grid { text-align: left; }

}

/* Focused premium nav and homepage hero refinement */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(6, 43, 99, 0.08);
  box-shadow: 0 12px 34px rgba(6, 43, 99, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.navbar-scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(6, 43, 99, 0.12);
}

.navbar {
  min-height: 76px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.site-header.navbar-scrolled .navbar {
  min-height: 70px;
}

.brand {
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(7, 149, 180, 0.24);
  letter-spacing: 0.4px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.7px;
}

.brand-clean {
  color: var(--navy);
  font-weight: 900;
}

.brand-office,
.brand strong .brand-office {
  color: var(--teal);
  font-weight: 900;
}

.brand small {
  margin-top: 1px;
  color: rgba(24, 49, 83, 0.62);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1.35px;
}

.nav-links {
  gap: 22px;
}

.nav-links a,
.nav-register,
.nav-dropdown-toggle {
  padding: 12px 0;
  color: rgba(24, 49, 83, 0.86);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-register:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-links a::after,
.nav-dropdown-toggle::after {
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.nav-links .nav-cta {
  padding: 12px 20px;
  box-shadow: 0 14px 30px rgba(7, 149, 180, 0.24);
}

.phone-btn {
  min-height: 42px;
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(7, 149, 180, 0.32);
  box-shadow: 0 10px 24px rgba(6, 43, 99, 0.08);
}

.services-dropdown {
  top: calc(100% + 18px);
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(6, 43, 99, 0.18);
}

.service-menu-item {
  border-radius: 18px;
  padding: 13px;
}

main {
  padding-top: 28px;
}

.hero {
  overflow: visible;
  background: linear-gradient(115deg, #ffffff 0%, #f7fcfd 56%, #edf9fb 100%);
}

.hero-grid {
  min-height: 670px;
  gap: clamp(38px, 5vw, 72px);
  padding: 28px 0 74px;
}

.hero h1 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.04;
  font-weight: 850;
}

.hero-rule {
  width: 76px;
  height: 4px;
  margin: 22px 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.hero p {
  max-width: 620px;
  color: rgba(24, 49, 83, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  gap: 16px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 16px;
}

.hero-actions .btn.primary:hover {
  box-shadow: 0 18px 36px rgba(7, 149, 180, 0.3);
}

.hero-actions .btn.outline {
  border-color: rgba(7, 149, 180, 0.38);
  box-shadow: 0 12px 28px rgba(6, 43, 99, 0.07);
}

.hero-media-stack {
  min-height: 560px;
  border-radius: 32px;
  background: transparent;
  box-shadow: 0 32px 80px rgba(6, 43, 99, 0.18);
  isolation: isolate;
}

.hero-media-stack::before {
  content: "";
  position: absolute;
  inset: -34px -28px -22px -28px;
  z-index: -1;
  border-radius: 44px;
  background:
    radial-gradient(circle at 72% 18%, rgba(7, 149, 180, 0.34), transparent 42%),
    radial-gradient(circle at 22% 82%, rgba(11, 95, 174, 0.16), transparent 38%);
  filter: blur(14px);
}

.hero-media-stack::after {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(135deg, rgba(7,149,180,0.13), rgba(6,43,99,0.04));
}

.hero-media-stack img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.floating-trust-card {
  width: min(214px, 44%);
  padding: 15px 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 44px rgba(6, 43, 99, 0.2);
}

.floating-trust-card strong {
  font-size: 14px;
  letter-spacing: 0.1px;
}

.rating-card {
  left: -18px;
  top: 48px;
}

.quote-card {
  right: -18px;
  left: auto;
  bottom: 114px;
}

.cleaner-card {
  left: 34px;
  bottom: 28px;
}

.check-card,
.guarantee-card {
  display: none;
}

@media (max-width: 1080px) {
  .navbar {
    border-radius: 24px;
  }

  .nav-links {
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header.navbar-scrolled .nav-links {
    top: calc(100% + 10px);
  }

  .hero-grid {
    padding-top: 18px;
  }
}

.nav-links .nav-account {
  padding: 10px 17px;
  border: 1px solid rgba(7, 149, 180, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 43, 99, 0.07);
}

.nav-links .nav-account:hover,
.nav-links .nav-account.active {
  color: var(--teal);
  border-color: rgba(7, 149, 180, 0.46);
  background: rgba(232, 248, 247, 0.76);
}

.nav-links .nav-account::after {
  display: none;
}


/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page-section { padding: 48px 0 80px; }
.auth-split {
  display: grid;
  grid-template-columns: 440px minmax(0,1fr);
  min-height: 580px;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}
.auth-form-col { display: flex; align-items: flex-start; }
.auth-form-inner { width: 100%; max-width: 380px; }
.auth-heading { font-size: 30px; font-weight: 800; color: var(--navy); margin: 0 0 6px; line-height: 1.15; }
.auth-sub { font-size: 14px; color: var(--gray); margin: 0 0 22px; }
.auth-social-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; border-radius: 10px; border: 1.5px solid rgba(6,43,99,0.14);
  background: #fff; color: var(--navy); font-size: 14px; font-weight: 700;
  transition: border-color .15s, box-shadow .15s, background .15s; cursor: pointer; text-decoration: none;
}
.auth-social-btn:hover { border-color: var(--teal); box-shadow: 0 2px 12px rgba(7,149,180,.12); background: #f8fdff; color: var(--navy); }
.auth-divider {
  display: flex; align-items: center; gap: 12px; margin: 18px 0;
  color: var(--gray); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: rgba(6,43,99,.1); }
.auth-fields { display: grid; gap: 12px; }
.auth-field { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 700; color: var(--navy); }
.auth-input {
  height: 44px; padding: 0 14px; border: 1.5px solid rgba(6,43,99,.13); border-radius: 10px;
  background: #f7f8fb; color: var(--navy); font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .15s, box-shadow .15s, background .15s; width: 100%;
}
.auth-input:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(7,149,180,.1); }
.auth-submit {
  width: 100%; height: 46px; margin-top: 4px; border: none; border-radius: 10px;
  background: var(--navy); color: #fff; font-size: 15px; font-weight: 800; cursor: pointer;
  transition: background .15s, transform .15s;
}
.auth-submit:hover { background: var(--blue); transform: translateY(-1px); }
.auth-switch { margin: 16px 0 5px; font-size: 13px; color: var(--gray); text-align: center; }
.auth-switch a { color: var(--teal); font-weight: 800; }
.auth-terms { font-size: 11px; color: var(--gray); text-align: center; margin: 0; }
.auth-terms a { color: var(--teal); }
.auth-errors {
  padding: 11px 14px; border-radius: 9px; background: rgba(220,38,38,.07);
  border: 1px solid rgba(220,38,38,.2); color: #991b1b; font-size: 13px; font-weight: 600; line-height: 1.6;
}
.auth-image-col { position: relative; border-radius: 22px; overflow: hidden; min-height: 540px; max-height: 680px; }
.auth-image-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,20,50,.88) 40%, rgba(6,20,50,.12) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.auth-image-badge {
  display: inline-flex; flex-direction: column; align-self: flex-end;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 10px 14px; margin-bottom: 18px;
}
.auth-image-badge strong { color: #fff; font-size: 12px; }
.auth-image-badge span { color: rgba(255,255,255,.6); font-size: 11px; margin-top: 2px; }
.auth-image-headline { color: #fff; font-size: clamp(17px,2.2vw,24px); font-weight: 800; line-height: 1.3; margin: 0 0 16px; }
.auth-image-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.auth-image-card {
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(255,255,255,.11); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 11px; color: #fff;
}
.auth-image-card svg { flex-shrink: 0; margin-top: 2px; opacity: .85; }
.auth-image-card strong { display: block; font-size: 12px; font-weight: 800; }
.auth-image-card span { display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }
@media (max-width: 960px) {
  .auth-split { grid-template-columns: 1fr; gap: 32px; }
  .auth-form-col { justify-content: center; }
  .auth-form-inner { max-width: 100%; }
  .auth-image-col { min-height: 300px; max-height: 340px; }
}
@media (max-width: 560px) {
  .auth-page-section { padding: 24px 0 50px; }
  .auth-heading { font-size: 24px; }
  .auth-image-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   DASHBOARD APP SHELL — Aivox-exact
   ============================================================ */

:root {
  --av-sidebar: #14192b;
  --av-sidebar-w: 248px;
  --av-accent: #4361ee;
  --av-accent-glow: rgba(67,97,238,.14);
  --av-cyan: #06b6d4;
  --av-surface: #ffffff;
  --av-bg: #f0f2f8;
  --av-border: rgba(20,25,43,.08);
  --av-text: #1a2035;
  --av-muted: #6b7a99;
  --av-green: #10b981;
  --av-red: #ef4444;
  --av-amber: #f59e0b;
  --av-radius: 14px;
  --av-shadow: 0 2px 16px rgba(20,25,43,.07);
}

.dashboard-page { min-height: 100vh; background: var(--av-bg); color: var(--av-text); }
.dashboard-page main { min-height: 100vh; padding: 0; }

/* Shell */
.dashboard-shell { display: grid; grid-template-columns: var(--av-sidebar-w) minmax(0,1fr); min-height: 100vh; }

/* ---- Sidebar ---- */
.dashboard-sidebar {
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
  background: #fff;
  border-right: 1px solid #eaedf2;
  scrollbar-width: none;
}
.dashboard-sidebar::-webkit-scrollbar { display: none; }

/* Brand */
.dashboard-brand {
  display: flex; align-items: center; gap: 11px;
  padding: 20px 18px 16px; border-bottom: 1px solid #eaedf2; flex-shrink: 0;
}
.dashboard-brand .brand-mark {
  width: 38px; height: 38px; border-radius: 10px; font-size: 13px; font-weight: 900;
  background: linear-gradient(135deg, #4361ee, #06b6d4);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(67,97,238,.35);
}
.dashboard-brand .brand-copy strong {
  color: #111827; font-size: 16px; font-weight: 900; letter-spacing: .4px;
}
.dashboard-brand .brand-copy strong .brand-clean  { color: #111827; }
.dashboard-brand .brand-copy strong .brand-office { color: #4361ee; }
.dashboard-brand .brand-copy small { color: #9ca3af; font-size: 10px; letter-spacing: .03em; }

/* Nav groups */
.db-nav-group { padding: 20px 14px 6px; }
.db-nav-group + .db-nav-group {
  margin-top: 4px;
  border-top: 1.5px solid #eaedf2;
  padding-top: 16px;
}
.db-nav-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #b0b8c8; padding: 0 6px 10px; display: block;
}

/* Nav links */
.dashboard-menu { display: flex; flex-direction: column; gap: 3px; padding: 0; }
.dashboard-menu a {
  display: flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 10px; border-radius: 10px;
  color: #6b7280; font-size: 13.5px; font-weight: 600;
  transition: background .13s, color .13s; text-decoration: none;
}
.dashboard-menu a .nav-icon {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  background: transparent; flex-shrink: 0; color: #9ca3af;
  transition: background .13s, color .13s;
}
.dashboard-menu a:hover { background: #f4f6fb; color: #111827; }
.dashboard-menu a:hover .nav-icon { background: #eaecf8; color: #4361ee; }
.dashboard-menu a.active {
  background: #111827; color: #fff; font-weight: 700;
  box-shadow: 0 2px 8px rgba(17,24,39,.18);
}
.dashboard-menu a.active .nav-icon { background: rgba(255,255,255,.14); color: #fff; }
.dashboard-menu a.active svg { color: #fff; }

/* Sidebar upgrade card */
.dashboard-sidebar-card {
  margin: 10px 12px 4px; padding: 14px; border-radius: 12px;
  background: #f8f9fe; border: 1px solid #e0e4f7; flex-shrink: 0;
}
.dashboard-sidebar-card .sc-days {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.dashboard-sidebar-card .sc-badge {
  background: #eef0fb; color: #4361ee; font-size: 11px; font-weight: 800;
  padding: 3px 8px; border-radius: 99px; border: 1px solid #c7d0f8;
}
.dashboard-sidebar-card strong { color: #111827; font-size: 12.5px; display: block; margin-bottom: 4px; }
.dashboard-sidebar-card p { color: #6b7280; font-size: 11.5px; margin: 0 0 12px; line-height: 1.5; }
.dashboard-mini-button {
  display: flex; align-items: center; justify-content: center;
  height: 32px; border-radius: 8px; background: #4361ee;
  color: #fff; font-size: 12px; font-weight: 800; text-decoration: none;
  transition: background .15s;
}
.dashboard-mini-button:hover { background: #3451d1; }

/* Logout */
.dashboard-logout {
  display: flex; align-items: center; gap: 10px;
  min-height: 42px; margin: 6px 12px 16px; padding: 0 10px;
  border-radius: 10px; border: 1px solid #fee2e2;
  color: #ef4444; font-size: 13px; font-weight: 600;
  transition: background .13s, color .13s; text-decoration: none; flex-shrink: 0;
}
.dashboard-logout:hover { background: #fef2f2; color: #dc2626; }
.dashboard-logout .nav-icon {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0;
  color: #ef4444;
}

/* ---- Top bar ---- */
.dashboard-main { min-width: 0; display: flex; flex-direction: column; height: 100vh; overflow: hidden; }

.dashboard-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 0 28px; height: 64px; background: #fff;
  border-bottom: 1px solid #eaedf2; position: sticky; top: 0; z-index: 20; flex-shrink: 0;
}
.db-topbar-left { display: flex; align-items: center; gap: 12px; }
.db-sidebar-toggle {
  display: none; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 8px; border: 1px solid #eaedf2; background: transparent; cursor: pointer; color: #374151;
}
.db-topbar-left h1 { margin: 0; font-size: 20px; font-weight: 800; color: #111827; }
.db-topbar-right { display: flex; align-items: center; gap: 8px; }

.db-topbar-icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px; border-radius: 9px;
  border: 1px solid #eaedf2; background: #fff;
  color: #374151; font-size: 13px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: background .14s;
}
.db-topbar-icon-btn:hover { background: #f5f6fa; }
.db-topbar-icon-btn.icon-only { width: 36px; padding: 0; justify-content: center; }

.db-new-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 18px; border-radius: 9px;
  background: #4361ee; color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .14s;
  box-shadow: 0 2px 8px rgba(67,97,238,.3);
}
.db-new-btn:hover { background: #3451d1; }

.db-avatar-group { display: flex; align-items: center; }
.db-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--av-accent), var(--av-cyan));
  color: #fff; font-size: 11px; font-weight: 800;
  display: grid; place-items: center; border: 2px solid #fff; margin-left: -6px;
}
.db-avatar:first-child { margin-left: 0; }

.db-notif-btn {
  position: relative; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--av-border); background: var(--av-surface);
  display: grid; place-items: center; cursor: pointer;
}
.db-notif-dot {
  position: absolute; top: 6px; right: 7px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--av-red); border: 1.5px solid #fff;
}

/* ---- Page content wrapper ---- */
.dashboard-content { padding: 24px 28px; flex: 1; min-width: 0; overflow-y: auto; background: #f7f8fc; }

/* ---- Tab bar ---- */
.av-tab-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.av-tabs {
  display: flex; gap: 2px; background: #fff; padding: 4px;
  border-radius: 11px; border: 1px solid #e8eaf0;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.av-tab {
  height: 34px; padding: 0 18px; border-radius: 8px; border: none; background: transparent;
  color: #6b7a99; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .14s, color .14s; font-family: inherit;
}
.av-tab:hover { color: #111827; background: rgba(0,0,0,.03); }
.av-tab.active {
  background: var(--av-accent); color: #fff; font-weight: 700;
  box-shadow: 0 2px 8px rgba(67,97,238,.3);
}
.av-tab-actions { display: flex; gap: 8px; align-items: center; }
.av-action-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px;
  border: 1px solid #e8eaf0; border-radius: 9px; background: #fff;
  color: #374151; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .14s;
  text-decoration: none; font-family: inherit;
}
.av-action-btn:hover { background: #f5f7fa; }
.av-action-btn.blue { background: var(--av-accent); border-color: var(--av-accent); color: #fff; }
.av-action-btn.blue:hover { background: #3451d1; }

/* ---- Stat cards ---- */
.av-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 18px; }

.av-stat {
  background: #fff; border: 1px solid #e8eaf0;
  border-radius: 14px; padding: 20px 20px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.04);
  display: flex; flex-direction: column; gap: 12px;
}
.av-stat-header { display: flex; align-items: center; justify-content: space-between; }
.av-stat-title { font-size: 13px; color: #6b7a99; font-weight: 600; }
.av-stat-menu { color: #9ca3af; cursor: pointer; }

.av-stat-body { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.av-stat-value { font-size: 34px; font-weight: 900; color: #111827; line-height: 1; flex-shrink: 0; }

/* Right side: sparkline + trend stacked */
.av-stat-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }

/* Aivox-style dot sparkline */
.av-sparkline {
  display: flex; align-items: flex-end; gap: 3px; height: 34px;
}
.av-sparkline span {
  width: 5px; border-radius: 3px 3px 2px 2px;
  background: #4361ee; opacity: .18; flex-shrink: 0;
}
.av-sparkline.pending span { background: #f59e0b; }
.av-sparkline span:last-child  { opacity: 1; }
.av-sparkline span:nth-last-child(2) { opacity: .55; }
.av-sparkline span:nth-last-child(3) { opacity: .35; }

.av-stat-trend {
  font-size: 11.5px; font-weight: 800; display: flex; align-items: center; gap: 2px;
}
.av-stat-trend.up      { color: #059669; }
.av-stat-trend.down    { color: #dc2626; }
.av-stat-trend.neutral { color: #9ca3af; }
.av-stat-sublabel { font-size: 10.5px; color: #b0b8c8; font-weight: 500; }

/* Legacy trend (keep for other templates) */
.av-stat-footer { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.av-trend {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 99px;
}
.av-trend.up      { background: rgba(16,185,129,.1); color: #059669; }
.av-trend.down    { background: rgba(239,68,68,.1);  color: #dc2626; }
.av-trend.neutral { background: rgba(107,122,153,.1); color: #6b7a99; }
.av-trend-label   { font-size: 11.5px; color: #9ca3af; }

/* ---- Two-col content grid ---- */
.av-content-grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(260px,.85fr); gap: 14px; margin-bottom: 18px; align-items: start; }

/* ---- Panel / Card ---- */
.av-card {
  background: #fff; border: 1px solid #e8eaf0;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.04);
  padding: 20px;
}
/* Chart canvas must have an explicit container height for maintainAspectRatio:false */
.av-chart-wrap { position: relative; height: 210px; }
.av-chart-wrap canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.av-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.av-card-title { font-size: 15px; font-weight: 800; color: #111827; }
.av-card-actions { display: flex; align-items: center; gap: 8px; }
.av-card-select {
  height: 30px; padding: 0 10px 0 10px; border: 1px solid var(--av-border);
  border-radius: 8px; background: #fff; font-size: 12px; font-weight: 600; color: var(--av-text);
  cursor: pointer; outline: none;
}
.av-card-icon-btn {
  width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--av-border);
  background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--av-muted);
}
.av-kicker { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--av-accent); display: block; margin-bottom: 4px; }

/* ---- Bar chart ---- */
.av-chart-wrap { position: relative; height: 200px; margin: 0 0 12px; }
.av-chart-bars { display: flex; align-items: flex-end; gap: 10px; height: 100%; padding-bottom: 24px; }
.av-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; }
.av-chart-col .bar-stack { width: 100%; display: flex; flex-direction: column; gap: 2px; border-radius: 6px 6px 0 0; overflow: hidden; }
.av-bar { width: 100%; background: var(--av-accent); opacity: .22; transition: opacity .2s; }
.av-bar.b2 { background: #1a2035; opacity: .55; }
.av-bar.b3 { background: var(--av-accent); opacity: 1; }
.av-bar.active-col .av-bar { opacity: .4; }
.av-bar.active-col .av-bar.b3 { opacity: 1; }
.av-chart-col.highlight .av-bar { opacity: .35; }
.av-chart-col.highlight .av-bar.b3 { opacity: 1; }
.av-chart-col .col-label { font-size: 10px; color: var(--av-muted); font-weight: 600; position: absolute; bottom: 0; }
.av-chart-labels { display: flex; gap: 10px; }
.av-chart-labels span { flex: 1; text-align: center; font-size: 10px; color: var(--av-muted); font-weight: 600; }
.av-chart-legend { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.av-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--av-muted); font-weight: 600; }
.av-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ---- Source / breakdown panel ---- */
.av-source-total { font-size: 36px; font-weight: 900; color: #111827; line-height: 1; }
.av-source-label { font-size: 11.5px; color: #9ca3af; font-weight: 600; margin-top: 3px; margin-bottom: 16px; }
.av-source-bar { display: flex; height: 9px; border-radius: 99px; overflow: hidden; gap: 3px; margin-bottom: 20px; }
.av-source-bar span { height: 100%; border-radius: 99px; }
.av-source-list { display: grid; gap: 12px; }
.av-source-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; }
.av-source-name { display: flex; align-items: center; gap: 8px; color: #374151; font-weight: 600; }
.av-source-name::before { content: ""; width: 3px; height: 16px; border-radius: 99px; background: var(--dot-color, var(--av-accent)); flex-shrink: 0; }
.av-source-name.c1::before { background: #4361ee; }
.av-source-name.c2::before { background: #a5b4fc; }
.av-source-name.c3::before { background: #d1d5db; }
.av-source-name.c4::before { background: #e5e7eb; }
.av-source-count { color: #111827; font-weight: 700; font-size: 13px; }
.av-source-pct { font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 99px; min-width: 36px; text-align: center; }
.av-source-pct.c1 { background: rgba(67,97,238,.12); color: #4361ee; }
.av-source-pct.c2 { background: rgba(165,180,252,.2); color: #6366f1; }
.av-source-pct.c3 { background: #f3f4f6; color: #6b7280; }
.av-source-pct.c4 { background: #f9fafb; color: #9ca3af; }
.av-source-detail-btn {
  display: flex; align-items: center; justify-content: center; height: 36px; width: 100%;
  margin-top: 14px; border: 1px solid var(--av-border); border-radius: 9px;
  background: var(--av-bg); color: var(--av-text); font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none;
}
.av-source-detail-btn:hover { background: #e4e8f2; }

/* ---- Data Table panel ---- */
.av-table-panel { background: var(--av-surface); border: 1px solid var(--av-border); border-radius: var(--av-radius); box-shadow: var(--av-shadow); }
.av-table-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--av-border); gap: 12px; flex-wrap: wrap; }
.av-table-title { font-size: 15px; font-weight: 800; color: var(--av-text); }
.av-table-toolbar { display: flex; align-items: center; gap: 8px; }
.av-search-box {
  display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px;
  border: 1px solid var(--av-border); border-radius: 8px; background: var(--av-bg); min-width: 160px;
}
.av-search-box input { border: 0; background: transparent; outline: 0; font-size: 12.5px; color: var(--av-text); width: 100%; font-family: inherit; }
.av-search-box svg { flex-shrink: 0; color: var(--av-muted); }

.av-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
.av-table thead tr { background: #f8f9fc; }
.av-table th {
  padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--av-muted);
  border-bottom: 1px solid var(--av-border); white-space: nowrap;
}
.av-table th:first-child { padding-left: 18px; border-radius: var(--av-radius) 0 0 0; }
.av-table th:last-child { border-radius: 0 var(--av-radius) 0 0; }
.av-table td { padding: 13px 14px; border-bottom: 1px solid var(--av-border); vertical-align: middle; color: var(--av-text); }
.av-table td:first-child { padding-left: 18px; }
.av-table tbody tr:last-child td { border-bottom: 0; }
.av-table tbody tr:hover { background: #f7f9fc; }

/* Table cell helpers */
.av-cell-name { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.av-cell-sub { font-size: 11.5px; color: var(--av-muted); margin-top: 2px; display: block; }
.av-company-dot {
  width: 28px; height: 28px; border-radius: 8px; display: inline-grid; place-items: center;
  font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0;
  background: linear-gradient(135deg, var(--av-accent), var(--av-cyan));
}
.av-owner { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; }
.av-owner-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#f59e0b,#ef4444);
  display: grid; place-items: center; font-size: 9px; font-weight: 800; color: #fff; flex-shrink: 0;
}

/* Status/stage chips */
.av-chip {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border-radius: 99px; font-size: 11px; font-weight: 800;
  background: rgba(107,122,153,.1); color: var(--av-muted);
}
.av-chip.pending { background: rgba(245,158,11,.1); color: var(--av-amber); }
.av-chip.confirmed { background: rgba(16,185,129,.1); color: var(--av-green); }
.av-chip.completed { background: rgba(67,97,238,.1); color: var(--av-accent); }
.av-chip.cancelled { background: rgba(239,68,68,.09); color: var(--av-red); }
.av-chip.new-stage { background: rgba(6,182,212,.1); color: var(--av-cyan); }

.av-row-menu { color: var(--av-muted); opacity: .5; cursor: pointer; padding: 0 4px; }
.av-row-menu:hover { opacity: 1; }

/* ---- Status chip coloring (legacy .status class) ---- */
.status { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 99px; font-size: 11px; font-weight: 800; background: rgba(107,122,153,.1); color: var(--av-muted); }
.status[data-status="Pending Review"] { background: rgba(245,158,11,.1); color: var(--av-amber); }
.status[data-status="Confirmed"] { background: rgba(16,185,129,.1); color: var(--av-green); }
.status[data-status="Completed"] { background: rgba(67,97,238,.1); color: var(--av-accent); }
.status[data-status="Cancelled"] { background: rgba(239,68,68,.09); color: var(--av-red); }

/* ---- Support / detail panels ---- */
.av-support-list { display: grid; gap: 9px; }
.av-support-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 11px 14px; border-radius: 10px; background: var(--av-bg); border: 1px solid var(--av-border);
}
.av-support-row span { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--av-muted); letter-spacing: .06em; }
.av-support-row strong { font-size: 13px; color: var(--av-text); font-weight: 700; }

/* ---- Booking current card ---- */
.av-booking-card {
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: 14px; align-items: center;
  padding: 16px; border-radius: 12px; background: linear-gradient(135deg,#f0f4ff,#e8f4fd);
  border: 1px solid rgba(67,97,238,.14);
}
.av-date-block {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 10px;
  background: var(--av-accent); color: #fff; flex-shrink: 0;
}
.av-date-block.muted { background: rgba(67,97,238,.12); color: var(--av-accent); }
.av-date-block strong { font-size: 24px; line-height: 1; font-weight: 900; }
.av-date-block span { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.av-booking-card h3 { margin: 0; font-size: 14px; font-weight: 800; color: var(--av-text); }
.av-booking-card p { margin: 5px 0 0; font-size: 12.5px; color: var(--av-muted); }
.av-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.av-chip-row .av-chip { background: rgba(67,97,238,.1); color: var(--av-accent); }

/* ---- Inquiry cards ---- */
.av-inquiry-list { display: grid; gap: 10px; }
.av-inquiry-card {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--av-border); border-radius: 11px; background: var(--av-surface);
}
.av-inquiry-card h3 { margin: 0; font-size: 13.5px; font-weight: 800; }
.av-inquiry-card p { margin: 5px 0 0; font-size: 12.5px; color: var(--av-muted); }
.av-inquiry-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.av-inquiry-meta small { font-size: 11px; color: var(--av-muted); font-weight: 700; }

/* Empty states */
.av-empty { padding: 28px; border: 1px dashed var(--av-border); border-radius: 11px; background: var(--av-bg); text-align: center; }
.av-empty h3 { margin: 0 0 6px; font-size: 14px; }
.av-empty p { margin: 0 0 14px; font-size: 13px; }
.av-empty-row { padding: 20px; text-align: center; color: var(--av-muted); font-size: 13px; }

/* Flash */
.dashboard-flash-wrap {
  position: fixed; top: 12px; left: 50%; z-index: 99;
  width: min(500px, calc(100% - 28px)); transform: translateX(-50%);
}
.flash {
  padding: 11px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 700;
  margin-bottom: 8px; background: var(--av-surface); border: 1px solid var(--av-border);
  color: var(--av-text); box-shadow: var(--av-shadow);
}
.flash.success { background: rgba(16,185,129,.09); border-color: rgba(16,185,129,.22); color: #065f46; }
.flash.danger { background: rgba(239,68,68,.07); border-color: rgba(239,68,68,.2); color: #991b1b; }
.flash.info { background: rgba(67,97,238,.07); border-color: rgba(67,97,238,.18); color: #1e3a8a; }

/* ---- Dashboard quote form ---- */
.dq-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 18px; align-items: start; }
.dq-info { display: flex; flex-direction: column; gap: 14px; }
.dq-steps { margin: 10px 0 0; padding: 0 0 0 16px; display: grid; gap: 9px; }
.dq-steps li { font-size: 12.5px; color: var(--av-muted); line-height: 1.5; }
.dq-steps li strong { color: var(--av-text); }
.dq-support-types { display: grid; gap: 9px; margin-top: 8px; }
.dq-support-item { padding: 11px 13px; border-radius: 9px; background: var(--av-bg); border: 1px solid var(--av-border); }
.dq-support-item strong { display: block; font-size: 13px; color: var(--av-text); font-weight: 700; }
.dq-support-item span { font-size: 11.5px; color: var(--av-muted); }
.dq-form { display: grid; gap: 13px; }
.dq-section-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--av-accent); padding-top: 5px; border-top: 1px solid var(--av-border); margin-top: 3px;
}
.dq-form .dq-section-label:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.dq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.dq-field { display: flex; flex-direction: column; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--av-text); }
.dq-input {
  height: 40px; padding: 0 12px; border: 1px solid var(--av-border); border-radius: 9px;
  background: var(--av-bg); color: var(--av-text); font-size: 13px; font-family: inherit;
  outline: none; transition: border-color .14s, box-shadow .14s, background .14s; width: 100%;
}
.dq-input:focus { border-color: var(--av-accent); background: #fff; box-shadow: 0 0 0 3px rgba(67,97,238,.1); }
textarea.dq-input { height: auto; padding: 10px 12px; resize: vertical; }
select.dq-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 11px center; padding-right: 30px; }
.dq-errors { display: flex; gap: 9px; padding: 11px 14px; border-radius: 9px; background: rgba(239,68,68,.07); border: 1px solid rgba(239,68,68,.2); color: var(--av-red); font-size: 13px; }
.dq-errors ul { margin: 0; padding: 0 0 0 14px; }
.dq-submit-row { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.dq-submit-note { font-size: 12px; color: var(--av-muted); }
.dq-success-wrap { display: flex; justify-content: center; padding: 36px 0; }
.dq-success-card { background: var(--av-surface); border: 1px solid var(--av-border); border-radius: var(--av-radius); box-shadow: var(--av-shadow); padding: 36px; max-width: 520px; width: 100%; text-align: center; }
.dq-success-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(16,185,129,.1); color: var(--av-green); display: grid; place-items: center; margin: 0 auto 18px; border: 2px solid rgba(16,185,129,.22); }
.dq-success-card h2 { margin: 0 0 8px; font-size: 20px; }
.dq-success-card > p { margin: 0 0 22px; font-size: 13.5px; color: var(--av-muted); }
.dq-success-detail { display: grid; border: 1px solid var(--av-border); border-radius: 10px; overflow: hidden; margin-bottom: 22px; text-align: left; }
.dq-success-detail div { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid var(--av-border); font-size: 13px; }
.dq-success-detail div:last-child { border-bottom: 0; }
.dq-success-detail span { color: var(--av-muted); font-weight: 700; }
.dq-success-detail strong { color: var(--av-text); }
.dq-success-actions { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   Premium Confirmation Screen  (.conf-*)
   ════════════════════════════════════════════════════ */
.conf-wrap { display: flex; justify-content: center; padding: 20px 0 40px; }
.conf-card {
  background: var(--av-surface); border: 1px solid var(--av-border);
  border-radius: 16px; box-shadow: 0 8px 40px rgba(20,25,43,.1);
  padding: 36px 40px; max-width: 620px; width: 100%;
}

/* Hero area */
.conf-hero { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.conf-check {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.1); border: 2px solid rgba(16,185,129,.25);
  color: var(--av-green); display: grid; place-items: center;
}
.conf-ref { display: flex; flex-direction: column; gap: 2px; }
.conf-ref-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--av-muted); }
.conf-ref-id { font-size: 22px; font-weight: 900; color: var(--av-text); letter-spacing: -.5px; font-family: monospace; }

.conf-title { font-size: 22px; font-weight: 900; margin: 0 0 8px; color: var(--av-text); }
.conf-sub   { font-size: 13.5px; color: var(--av-muted); margin: 0 0 20px; line-height: 1.6; }

/* Email notice */
.conf-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px; margin-bottom: 24px;
  background: rgba(67,97,238,.06); border: 1px solid rgba(67,97,238,.18);
  font-size: 13px; color: var(--av-text); line-height: 1.5;
}
.conf-notice svg { color: var(--av-accent); flex-shrink: 0; margin-top: 2px; }
.conf-notice strong { display: block; margin-bottom: 2px; color: var(--av-accent); }

/* Booking summary block */
.conf-summary {
  border: 1px solid var(--av-border); border-radius: 12px;
  overflow: hidden; margin-bottom: 24px;
}
.conf-summary-header {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: var(--av-bg);
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--av-accent);
  border-bottom: 1px solid var(--av-border);
}
.conf-row {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px; border-bottom: 1px solid var(--av-border);
}
.conf-row:last-of-type { border-bottom: 0; }
.conf-row-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.conf-row-content { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.conf-row-content span   { font-size: 11px; color: var(--av-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.conf-row-content strong { font-size: 13.5px; color: var(--av-text); font-weight: 700; }

.conf-status-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--av-bg);
}
.conf-status-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.conf-status-badge.pending { background: rgba(245,158,11,.1); color: #d97706; border: 1px solid rgba(245,158,11,.2); }
.conf-status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
.conf-status-note { font-size: 12px; color: var(--av-muted); }

/* What happens next */
.conf-next { margin-bottom: 28px; }
.conf-next-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--av-muted); margin-bottom: 14px; }
.conf-next-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 13px; color: var(--av-muted); line-height: 1.4; }
.conf-next-step strong { display: block; color: var(--av-text); font-weight: 700; font-size: 13.5px; margin-bottom: 2px; }
.conf-next-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  background: var(--av-bg); border: 2px solid var(--av-border); color: var(--av-muted);
}
.conf-next-dot.done    { background: rgba(16,185,129,.1); border-color: var(--av-green); color: var(--av-green); }
.conf-next-dot.pending { background: rgba(245,158,11,.1); border-color: #f59e0b; color: #d97706; }

/* Actions */
.conf-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.conf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; transition: opacity .15s;
  border: 1.5px solid var(--av-border); color: var(--av-text); background: var(--av-bg);
}
.conf-btn:hover { opacity: .82; }
.conf-btn.primary { background: var(--av-accent); border-color: var(--av-accent); color: #fff; }

@media (max-width: 640px) {
  .conf-card { padding: 24px 18px; }
  .conf-ref-id { font-size: 18px; }
}

/* ── Admin respond modal ── */
/* ── Admin nav badges ────────────────────────────────── */
.adm-nav-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ef4444; color: #fff; font-size: 10px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 99px; padding: 0 5px;
  margin-left: auto;
}
.adm-tab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ef4444; color: #fff; font-size: 9.5px; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 99px; padding: 0 4px;
  margin-left: 5px; vertical-align: middle;
}
.adm-urgent-badge {
  display: inline-flex; align-items: center;
  background: #fef3c7; color: #d97706; font-size: 11px; font-weight: 700;
  padding: 2px 9px; border-radius: 99px; margin-left: 8px;
}
.av-table-count { color: var(--av-muted); font-weight: 600; font-size: 13px; margin-left: 6px; }

/* ── Status filter pills ────────────────────────────── */
.adm-status-filter { display: flex; gap: 4px; }
.adm-filter-pill {
  padding: 5px 11px; border-radius: 99px; border: 1.5px solid #e5e7eb;
  background: none; font-size: 12px; font-weight: 600; color: #6b7280;
  cursor: pointer; font-family: inherit; transition: all .15s;
}
.adm-filter-pill:hover  { border-color: #4361ee; color: #4361ee; }
.adm-filter-pill.active { background: #4361ee; border-color: #4361ee; color: #fff; }

/* ── Urgency pill ──────────────────────────────────── */
.adm-urgency-pill {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: 11.5px; font-weight: 700;
  background: #f3f4f6; color: #6b7280;
}
.adm-urgency-pill.urgent { background: #fee2e2; color: #dc2626; }

/* ── Admin tag ─────────────────────────────────────── */
.adm-admin-tag {
  display: inline-block; margin-left: 6px; padding: 1px 7px;
  background: #ede9fe; color: #7c3aed; font-size: 10px; font-weight: 700;
  border-radius: 4px; vertical-align: middle;
}

/* ── Modal overlay ─────────────────────────────────── */
.adm-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 200; align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.adm-modal-overlay.open { display: flex; }
.adm-modal {
  background: #fff; border-radius: 16px; padding: 0;
  max-width: 540px; width: 100%; margin: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  overflow: hidden;
}

/* Modal header */
.adm-modal-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px 18px; border-bottom: 1px solid #f0f0f4;
  background: #fafbff;
}
.adm-modal-avatar {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #4361ee, #7c3aed);
  color: #fff; font-size: 15px; font-weight: 800;
  display: grid; place-items: center;
}
.adm-modal-head-info { flex: 1; min-width: 0; }
.adm-modal-title { font-size: 15px; font-weight: 800; color: #111827; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-modal-ref   { font-size: 12px; color: #9ca3af; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-modal-close {
  width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid #e5e7eb;
  background: none; cursor: pointer; display: grid; place-items: center;
  color: #6b7280; transition: all .15s; flex-shrink: 0;
}
.adm-modal-close:hover { background: #f3f4f6; color: #111827; }

/* Context strip */
.adm-modal-context {
  display: flex; gap: 0; border-bottom: 1px solid #f0f0f4;
}
.adm-ctx-item {
  flex: 1; padding: 12px 16px; display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid #f0f0f4;
}
.adm-ctx-item:last-child { border-right: none; }
.adm-ctx-label { font-size: 10.5px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
.adm-ctx-item strong { font-size: 13px; font-weight: 700; color: #111827; }

/* Modal body */
.adm-modal-body { padding: 20px 26px 0; }
.adm-modal-label {
  font-size: 12.5px; font-weight: 700; color: #374151;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.adm-label-hint { font-size: 11px; font-weight: 500; color: #9ca3af; margin-left: auto; }

/* Status option buttons */
.adm-status-row { display: flex; gap: 6px; margin-bottom: 18px; }
.adm-status-opt {
  flex: 1; padding: 8px 10px; border-radius: 8px;
  border: 1.5px solid #e5e7eb; background: none;
  font-size: 12px; font-weight: 600; color: #6b7280;
  cursor: pointer; font-family: inherit; text-align: center; transition: all .15s;
}
.adm-status-opt:hover { border-color: #4361ee; color: #4361ee; }
.adm-status-opt.active[data-val="Confirmed"]     { background: #dcfce7; border-color: #16a34a; color: #15803d; }
.adm-status-opt.active[data-val="Pending Review"]{ background: #fef9c3; border-color: #ca8a04; color: #a16207; }
.adm-status-opt.active[data-val="Cancelled"]     { background: #fee2e2; border-color: #dc2626; color: #b91c1c; }

/* Textarea */
.adm-modal-body textarea {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 12px 14px; font-size: 13px; font-family: inherit; color: #111827;
  background: #fafafa; outline: none; box-sizing: border-box;
  resize: vertical; min-height: 100px; transition: border-color .15s;
}
.adm-modal-body textarea:focus { border-color: #4361ee; background: #fff; box-shadow: 0 0 0 3px rgba(67,97,238,.08); }
.adm-modal-body textarea.adm-field-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.adm-char-count { font-size: 11px; color: #9ca3af; text-align: right; margin-top: 4px; padding-bottom: 4px; }

/* Modal footer */
.adm-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 26px 22px;
}
.adm-modal-cancel {
  padding: 10px 20px; border: 1.5px solid #e5e7eb; border-radius: 9px;
  background: none; font-size: 13px; font-weight: 600; color: #6b7280;
  cursor: pointer; font-family: inherit; transition: all .15s;
}
.adm-modal-cancel:hover { border-color: #d1d5db; background: #f9fafb; }
.adm-modal-send {
  padding: 10px 22px; border: none; border-radius: 9px;
  background: linear-gradient(135deg, #4361ee, #5b6ef5);
  font-size: 13px; font-weight: 700; color: #fff;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(67,97,238,.35);
  transition: all .15s;
}
.adm-modal-send:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(67,97,238,.45); }
.adm-modal-send:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ════════════════════════════════════════════════════
   Wizard Quote  (.wz-*)
   ════════════════════════════════════════════════════ */
.wz-shell { display: grid; gap: 16px; }

/* Step progress bar */
.wz-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 6px; }
.wz-step  { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.wz-step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #e2e5ef; background: #fff;
  color: #b0b8c8; font-size: 13px; font-weight: 800;
  display: grid; place-items: center; transition: all .22s;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.wz-step.active .wz-step-dot {
  border-color: #4361ee; background: #4361ee; color: #fff;
  box-shadow: 0 4px 14px rgba(67,97,238,.35);
}
.wz-step.done .wz-step-dot {
  border-color: #10b981; background: #10b981; color: #fff;
}
.wz-step-label  { font-size: 11.5px; color: #b0b8c8; font-weight: 700; white-space: nowrap; }
.wz-step.active .wz-step-label { color: #4361ee; }
.wz-step.done   .wz-step-label { color: #10b981; }
.wz-connector {
  flex: 1; height: 2.5px; background: #e2e5ef;
  margin: 17px 8px 0; transition: background .25s; min-width: 24px; border-radius: 99px;
}
.wz-connector.done { background: #10b981; }

/* Layout */
.wz-body { display: grid; grid-template-columns: 1fr 270px; gap: 20px; align-items: start; }
.wz-main {
  background: #fff; border: 1px solid #e8eaf0;
  border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,.06); padding: 32px 34px;
}
.wz-panel h2 { font-size: 20px; margin: 0 0 4px; color: #111827; font-weight: 900; }
.wz-panel > p { font-size: 13.5px; color: #9ca3af; margin: 0 0 26px; }

/* ── Service cards grid ── */
.wz-svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px;
}
.wz-svc-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 0;
  padding: 0 0 16px; border: 2.5px solid transparent; border-radius: 16px;
  height: 155px; overflow: hidden;
  background-size: cover; background-position: center; background-color: #1a2340;
  cursor: pointer; transition: transform .18s, box-shadow .18s, border-color .18s;
  text-align: center; font-family: inherit;
}
/* "click me" ring hint on idle */
.wz-svc-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  border: 2px solid rgba(255,255,255,.12); pointer-events: none; transition: border-color .18s;
}
.wz-svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,30,.2) 0%, rgba(8,12,30,.75) 100%);
  transition: background .18s;
}
.wz-svc-card:hover .wz-svc-overlay {
  background: linear-gradient(to bottom, rgba(67,97,238,.45) 0%, rgba(8,12,30,.82) 100%);
}
.wz-svc-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(67,97,238,.28);
  border-color: #4361ee;
}
.wz-svc-card:hover::after { border-color: rgba(255,255,255,.3); }
.wz-svc-card.selected {
  border-color: #4361ee;
  box-shadow: 0 0 0 4px rgba(67,97,238,.22), 0 8px 24px rgba(67,97,238,.2);
}
.wz-svc-card.selected .wz-svc-overlay {
  background: linear-gradient(to bottom, rgba(67,97,238,.5) 0%, rgba(8,12,30,.88) 100%);
}
/* checkmark on selected */
.wz-svc-card.selected::before {
  content: '✓'; position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 20px; height: 20px; border-radius: 50%; background: #4361ee;
  color: #fff; font-size: 11px; font-weight: 900; display: grid; place-items: center;
  line-height: 1;
}
.wz-svc-icon {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff;
  transition: background .15s, transform .15s;
  margin-bottom: 6px;
}
.wz-svc-card:hover .wz-svc-icon { transform: scale(1.1); background: rgba(255,255,255,.28); }
.wz-svc-card.selected .wz-svc-icon { background: rgba(67,97,238,.65); }
.wz-svc-name {
  position: relative; z-index: 1;
  font-size: 11.5px; font-weight: 800; color: #fff; line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,.6); letter-spacing: .01em;
}

/* "Pick a service" prompt */
.wz-choose-prompt {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: #4361ee;
  background: #f0f3ff; border: 2px dashed #c7d0f8;
  border-radius: 12px; padding: 11px 18px;
  animation: wz-pulse 2s ease-in-out infinite;
}
@keyframes wz-pulse {
  0%, 100% { border-color: #c7d0f8; background: #f0f3ff; }
  50%       { border-color: #4361ee; background: #e8ecfe; }
}

/* ── Property cards row ── */
.wz-prop-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.wz-prop-card {
  padding: 9px 16px; border: 2px solid var(--av-border); border-radius: 9px;
  background: var(--av-bg); font-size: 13px; font-weight: 600; color: var(--av-text);
  cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 7px;
  font-family: inherit;
}
.wz-prop-card:hover   { border-color: var(--av-accent); color: var(--av-accent); }
.wz-prop-card.selected { border-color: var(--av-accent); background: rgba(67,97,238,.08); color: var(--av-accent); }

/* ── Time slots ── */
.wz-time-section { display: grid; gap: 10px; margin-bottom: 20px; }
.wz-time-group   { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wz-time-group-label {
  font-size: 10.5px; font-weight: 800; color: var(--av-muted);
  text-transform: uppercase; letter-spacing: .05em; width: 66px; flex-shrink: 0;
}
.wz-time-slots { display: flex; gap: 6px; flex-wrap: wrap; }
.wz-time-slot {
  padding: 7px 13px; border: 1.5px solid var(--av-border); border-radius: 8px;
  background: var(--av-bg); font-size: 12.5px; font-weight: 600; color: var(--av-text);
  cursor: pointer; transition: all .14s; font-family: inherit;
}
.wz-time-slot:hover   { border-color: var(--av-accent); color: var(--av-accent); }
.wz-time-slot.selected { border-color: var(--av-accent); background: var(--av-accent); color: #fff; box-shadow: 0 2px 8px rgba(67,97,238,.25); }

/* ── Schedule row ── */
.wz-sched-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.wz-field { display: flex; flex-direction: column; gap: 5px; }
.wz-field-label { font-size: 12.5px; font-weight: 700; color: var(--av-text); margin-bottom: 8px; }
.wz-input {
  height: 40px; padding: 0 12px; border: 1.5px solid var(--av-border); border-radius: 9px;
  background: var(--av-bg); color: var(--av-text); font-size: 13px; font-family: inherit;
  outline: none; transition: border-color .14s, box-shadow .14s, background .14s;
  width: 100%; box-sizing: border-box;
}
.wz-input:focus { border-color: var(--av-accent); background: #fff; box-shadow: 0 0 0 3px rgba(67,97,238,.1); }
textarea.wz-input { height: auto; padding: 10px 12px; resize: vertical; }

/* ── Urgency option cards ── */
.wz-option-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.wz-option-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid var(--av-border); border-radius: 12px; background: var(--av-bg);
  cursor: pointer; transition: all .15s; text-align: left; font-family: inherit;
}
.wz-option-card:hover   { border-color: var(--av-accent); background: rgba(67,97,238,.04); }
.wz-option-card.selected { border-color: var(--av-accent); background: rgba(67,97,238,.08); box-shadow: 0 0 0 3px rgba(67,97,238,.1); }
.wz-option-card-icon { color: var(--av-accent); flex-shrink: 0; }
.wz-option-card-title { font-size: 13px; font-weight: 700; color: var(--av-text); }
.wz-option-card-sub   { font-size: 11.5px; color: var(--av-muted); margin-top: 1px; }

/* ── Supplies pills ── */
.wz-pill-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.wz-pill {
  padding: 8px 16px; border: 1.5px solid var(--av-border); border-radius: 20px;
  background: var(--av-bg); font-size: 12.5px; font-weight: 600; color: var(--av-text);
  cursor: pointer; transition: all .14s; font-family: inherit;
}
.wz-pill:hover    { border-color: var(--av-accent); color: var(--av-accent); }
.wz-pill.selected { border-color: var(--av-accent); background: var(--av-accent); color: #fff; }

/* ── Contact grid ── */
.wz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.wz-contact-grid .full { grid-column: 1 / -1; }

/* ── Step 4 recap ── */
.wz-recap { border: 1px solid var(--av-border); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.wz-recap-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--av-accent); padding: 12px 16px; border-bottom: 1px solid var(--av-border); background: rgba(67,97,238,.04); }
.wz-recap-grid  { display: grid; }
.wz-recap-row   { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 16px; border-bottom: 1px solid var(--av-border); font-size: 12.5px; }
.wz-recap-row:last-child { border-bottom: 0; }
.wz-recap-row span   { color: var(--av-muted); font-weight: 600; }
.wz-recap-row strong { color: var(--av-text); max-width: 260px; text-align: right; }

/* ── Nav row ── */
.wz-nav-row {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  padding-top: 20px; border-top: 1.5px solid #f0f1f5; margin-top: 12px;
}
.wz-hint { font-size: 12px; color: #ef4444; margin-right: auto; }
.wz-btn-back {
  background: #f5f6fa; border: 1.5px solid #e2e5ef; border-radius: 10px;
  padding: 10px 22px; font-size: 13px; font-weight: 700; color: #6b7280;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.wz-btn-back:hover { border-color: #374151; color: #111827; background: #eef0f7; }
.wz-btn-next {
  background: #4361ee; border: none; border-radius: 10px;
  padding: 11px 26px; font-size: 13.5px; font-weight: 700; color: #fff;
  cursor: pointer; transition: all .15s; font-family: inherit;
  box-shadow: 0 4px 14px rgba(67,97,238,.35);
}
.wz-btn-next:hover    { background: #3451d1; box-shadow: 0 6px 18px rgba(67,97,238,.4); transform: translateY(-1px); }
.wz-btn-next:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; transform: none; }
.wz-btn-reset {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid #fca5a5; border-radius: 10px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 700; color: #ef4444;
  cursor: pointer; transition: all .15s; font-family: inherit; margin-right: auto;
}
.wz-btn-reset:hover { background: #fef2f2; border-color: #ef4444; }
.wz-btn-submit {
  background: #10b981; border: none; border-radius: 10px;
  padding: 11px 26px; font-size: 13.5px; font-weight: 700; color: #fff;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: all .15s; font-family: inherit;
  box-shadow: 0 4px 14px rgba(16,185,129,.3);
}
.wz-btn-submit:hover { opacity: .88; }

/* ── Sidebar summary ── */
.wz-sidebar { position: sticky; top: 80px; }
.wz-summary-card {
  background: var(--av-surface); border: 1px solid var(--av-border);
  border-radius: var(--av-radius); box-shadow: var(--av-shadow); padding: 20px;
}
.wz-summary-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--av-accent); margin-bottom: 10px; }
.wz-summary-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px;
  font-weight: 700; background: rgba(67,97,238,.1); color: var(--av-accent); margin-bottom: 14px;
}
.wz-summary-rows { display: grid; gap: 0; }
.wz-summary-row  { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--av-border); font-size: 12px; }
.wz-summary-row:last-child { border-bottom: 0; }
.wz-summary-row span   { color: var(--av-muted); font-weight: 600; flex-shrink: 0; padding-right: 8px; }
.wz-summary-row strong { color: var(--av-text); text-align: right; font-size: 12px; }
.wz-summary-divider { height: 1px; background: var(--av-border); margin: 14px 0; }
.wz-summary-note {
  font-size: 11.5px; color: var(--av-muted); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 7px;
}
.wz-summary-steps { margin-top: 16px; border-top: 1px solid var(--av-border); padding-top: 14px; }
.wz-how-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--av-muted); margin-bottom: 10px; }
.wz-how-step  { display: flex; align-items: flex-start; gap: 9px; font-size: 11.5px; color: var(--av-muted); margin-bottom: 8px; line-height: 1.4; }
.wz-how-dot   { width: 18px; height: 18px; border-radius: 50%; background: rgba(67,97,238,.12); color: var(--av-accent); font-size: 10px; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }

/* ── Responsive wizard ── */
@media (max-width: 900px) {
  .wz-body { grid-template-columns: 1fr; }
  .wz-sidebar { position: static; }
  .wz-summary-steps { display: none; }
  .wz-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .wz-option-group { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wz-main { padding: 20px 16px; }
  .wz-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wz-sched-row { grid-template-columns: 1fr; }
  .wz-contact-grid { grid-template-columns: 1fr; }
  .wz-contact-grid .full { grid-column: 1; }
  .wz-time-group { flex-direction: column; align-items: flex-start; gap: 6px; }
  .wz-time-group-label { width: auto; }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: var(--av-sidebar-w); z-index: 40; transform: translateX(-100%); transition: transform .25s ease; }
  .dashboard-sidebar.open { transform: translateX(0); }
  .db-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 39; }
  .db-overlay.open { display: block; }
  .db-sidebar-toggle { display: flex; }
  .av-stat-grid { grid-template-columns: repeat(2,1fr); }
  .av-content-grid { grid-template-columns: 1fr; }
  .dashboard-content { padding: 16px 18px; }
  .dq-layout { grid-template-columns: 1fr; }
  .dq-info { display: none; }
}
@media (max-width: 640px) {
  .av-stat-grid { grid-template-columns: 1fr 1fr; }
  .av-stat-value { font-size: 22px; }
  .dashboard-topbar { padding: 0 14px; }
  .dashboard-content { padding: 14px; }
  .av-inquiry-card { grid-template-columns: 1fr; }
  .av-inquiry-meta { align-items: flex-start; }
  .av-booking-card { grid-template-columns: 1fr; }
  .dq-row { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════
   NOTIFICATION BELL DROPDOWN
   ══════════════════════════════════════════════════════ */
.db-notif-wrap {
  position: relative;
}
.db-notif-btn { position: relative; }
.db-notif-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 9px; background: #ef4444;
  color: #fff; font-size: 10px; font-weight: 700;
  line-height: 17px; text-align: center;
  border: 2px solid var(--av-bg);
  pointer-events: none;
}
.db-notif-btn.has-notif svg { color: var(--av-accent); }

.db-notif-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 340px; background: #fff;
  border: 1px solid rgba(0,0,0,.1); border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,.08), 0 24px 64px rgba(0,0,0,.14);
  z-index: 9000; overflow: hidden;
}
.db-notif-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 10px; border-bottom: 1px solid #eee;
  background: #fff;
}
.db-notif-head-title {
  font-size: 13px; font-weight: 700; color: #111827;
}
.db-notif-read-all {
  font-size: 11.5px; font-weight: 600; color: #4361ee;
  background: none; border: none; cursor: pointer; padding: 0;
}
.db-notif-read-all:hover { text-decoration: underline; }

.db-notif-list {
  max-height: 320px; overflow-y: auto; background: #fff;
}
.db-notif-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 14px; cursor: pointer; transition: background .12s;
  border-bottom: 1px solid #f0f0f0; background: #fff;
}
.db-notif-item:last-child { border-bottom: none; }
.db-notif-item:hover { background: #f5f7ff; }
.db-notif-item.read { opacity: .75; }

.db-notif-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
}
.db-notif-body { flex: 1; min-width: 0; }
.db-notif-title {
  font-size: 12.5px; font-weight: 600; color: #111827;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.db-notif-text {
  font-size: 11.5px; color: #6b7280;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}
.db-notif-time {
  font-size: 10.5px; color: #9ca3af; margin-top: 3px;
}
.db-notif-unread-dot {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: #4361ee; margin-top: 6px;
}
.db-notif-empty {
  padding: 28px 16px; text-align: center;
  font-size: 13px; color: #6b7280; background: #fff;
}
.db-notif-footer {
  display: block; text-align: center; padding: 11px;
  font-size: 12.5px; font-weight: 600; color: #4361ee;
  border-top: 1px solid #f0f0f0; background: #fafafa;
  text-decoration: none;
}
.db-notif-footer:hover { background: #f0f3ff; }

/* ══════════════════════════════════════════════════════
   NOTIFICATIONS PAGE
   ══════════════════════════════════════════════════════ */
.notif-page {
  max-width: 720px; margin: 0 auto; padding: 0 0 40px;
}
.notif-page-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--av-border);
}
.notif-page-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--av-text);
}
.notif-page-badge {
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--av-accent); border-radius: 20px;
  padding: 2px 9px;
}
.notif-page-actions {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.notif-page-sep {
  width: 1px; height: 20px; background: var(--av-border); margin: 0 4px;
}
.notif-filter-btn {
  font-size: 12px; font-weight: 600; color: var(--av-muted);
  background: none; border: 1.5px solid var(--av-border);
  border-radius: 8px; padding: 5px 12px; cursor: pointer;
  transition: all .12s; font-family: inherit;
}
.notif-filter-btn.active, .notif-filter-btn:hover {
  border-color: var(--av-accent); color: var(--av-accent);
  background: rgba(67,97,238,.06);
}

.notif-list { display: flex; flex-direction: column; gap: 0; }
.notif-date-divider {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--av-muted);
  padding: 16px 0 7px; border-bottom: 1px solid var(--av-border);
  margin-bottom: 4px;
}

.notif-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 12px; border-radius: 12px;
  transition: background .12s; position: relative;
  margin-bottom: 4px;
}
.notif-card:hover { background: rgba(67,97,238,.04); }
.notif-card.unread { background: rgba(67,97,238,.035); }

.notif-card-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
}
.notif-card-icon.icon-green { color: #10b981; background: rgba(16,185,129,.12); }
.notif-card-icon.icon-blue  { color: #4361ee; background: rgba(67,97,238,.12); }
.notif-card-icon.icon-amber { color: #f59e0b; background: rgba(245,158,11,.12); }
.notif-card-icon.icon-muted { color: var(--av-muted); background: rgba(107,122,153,.1); }

.notif-card-body { flex: 1; min-width: 0; }
.notif-card-title {
  font-size: 13.5px; font-weight: 600; color: var(--av-text); margin-bottom: 2px;
}
.notif-card.read .notif-card-title { font-weight: 500; color: var(--av-muted); }
.notif-card-text {
  font-size: 12.5px; color: var(--av-muted); line-height: 1.5;
}
.notif-card-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 5px;
}
.notif-card-time {
  font-size: 11px; color: var(--av-muted);
}
.notif-card-link {
  font-size: 11.5px; font-weight: 600; color: var(--av-accent); text-decoration: none;
}
.notif-card-link:hover { text-decoration: underline; }

.notif-card-pip {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--av-accent);
}
.notif-card-del {
  flex-shrink: 0; width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 6px;
  background: none; border: none; cursor: pointer; color: var(--av-muted);
  opacity: 0; transition: opacity .15s, background .12s;
}
.notif-card:hover .notif-card-del { opacity: 1; }
.notif-card-del:hover { background: rgba(239,68,68,.08); color: #ef4444; }

.notif-empty-state {
  text-align: center; padding: 60px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.notif-empty-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(67,97,238,.08); display: grid; place-items: center;
  color: var(--av-accent);
}
.notif-empty-state h3 { font-size: 17px; font-weight: 700; color: var(--av-text); margin: 0; }
.notif-empty-state p  { font-size: 13.5px; color: var(--av-muted); margin: 0; }

/* ════════════════════════════════════════════════════
   Public page improvements
   ════════════════════════════════════════════════════ */

.section-sub { color:#64748b;font-size:17px;line-height:1.65;max-width:580px;margin:0 auto 8px;text-align:center; }

/* Feature cards - icon redesign */
.feat-icon-wrap { width:52px;height:52px;border-radius:16px;display:grid;place-items:center;margin-bottom:18px;transition:transform .2s; }
.feature-card:hover .feat-icon-wrap { transform:scale(1.08); }
.feat-accent-1 .feat-icon-wrap { background:#ede9fe;color:#7c3aed; }
.feat-accent-2 .feat-icon-wrap { background:#dbeafe;color:#1d4ed8; }
.feat-accent-3 .feat-icon-wrap { background:#d1fae5;color:#059669; }
.feature-card { transition:transform .2s,box-shadow .2s; }
.feature-card:hover { transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.1); }

/* Steps redesigned */
.step-card { padding:28px 24px;border-radius:18px;background:#fff;border:1px solid #e8eaf0;box-shadow:0 2px 12px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:14px;transition:transform .2s,box-shadow .2s;position:relative;overflow:hidden; }
.step-card::before { content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#05285c,#0795b4);transform:scaleX(0);transform-origin:left;transition:transform .3s; }
.step-card:hover::before { transform:scaleX(1); }
.step-card:hover { transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.1); }
.step-num { display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:10px;background:var(--navy);color:#fff;font-size:13px;font-weight:900; }
.step-icon { color:var(--teal); }
.step-card h3 { margin:0;font-size:16px;line-height:1.35; }
.step-card p  { margin:0;color:#64748b;font-size:14px;line-height:1.6; }

/* Testimonials redesigned */
.testimonial-card { margin:0;padding:30px;border-radius:18px;background:#fff;border:1px solid #e8eaf0;box-shadow:0 2px 12px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:16px;transition:transform .2s,box-shadow .2s; }
.testimonial-card:hover { transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.1); }
.testimonial-stars { display:flex;gap:3px; }
.testimonial-card p { margin:0;font-size:15px;line-height:1.7;color:#374151;flex:1; }
.testimonial-card cite { display:flex;align-items:center;gap:12px;margin-top:auto;font-style:normal; }
.cite-avatar { width:40px;height:40px;border-radius:12px;flex-shrink:0;display:grid;place-items:center;color:#fff;font-size:13px;font-weight:800; }
.cite-info { display:flex;flex-direction:column;gap:2px; }
.cite-info strong { font-size:13px;font-weight:700;color:#111827; }
.cite-info small  { font-size:11.5px;color:#9ca3af; }

/* Home CTA plain white card */
.home-cta-plain {
  background: url('/static/images/services/home-cleaning.png') center/cover no-repeat;
  position: relative;
}
.home-cta-plain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.82);
}
.home-cta-plain .container { position: relative; }
.home-cta-centrecard {
  max-width:580px; margin:0 auto; text-align:center;
  background:#fff; border:1px solid #e8eaf0;
  border-radius:24px; padding:52px 48px;
  box-shadow:0 4px 32px rgba(0,0,0,.07);
}
.home-cta-centrecard h2 { font-size:clamp(24px,3vw,34px); margin:10px 0 14px; color:#0d1b35; }
.home-cta-centrecard p  { color:#64748b; font-size:16px; line-height:1.65; margin:0 0 28px; }
.home-cta-actions { display:flex;gap:12px;flex-wrap:wrap;justify-content:center; }
.large-btn { padding:14px 30px !important;font-size:15px !important; }
.home-cta-checks { display:flex;gap:20px;flex-wrap:wrap;justify-content:center;margin-top:22px; }
.home-cta-checks span { color:#6b7280;font-size:13px;font-weight:600; }

/* Section background images */
.why-choose-bg {
  background: url('/static/images/services/office-cleaning.jpg') center/cover no-repeat;
  position: relative;
}
.why-choose-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,250,252,.88);
}
.why-choose-bg .container { position: relative; }

.how-it-works-bg {
  background: url('/static/images/services/end-of-lease-cleaning.jpg') center/cover no-repeat;
  position: relative;
}
.how-it-works-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.86);
}
.how-it-works-bg .container { position: relative; }

/* index — Services */
.services-bg { background:url('/static/images/services/kitchen-cleaning.jpg') center/cover no-repeat; position:relative; }
.services-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.services-bg .container { position:relative; }

/* index — Testimonials */
.testimonials-bg { background:url('/static/images/services/bathroom-cleaning.jpg') center/cover no-repeat; position:relative; }
.testimonials-bg::before { content:''; position:absolute; inset:0; background:rgba(248,250,252,.89); }
.testimonials-bg .container { position:relative; }

/* about — Our Standard */
.about-standard-bg { background:url('/static/images/services/retail-store-cleaning.jpg') center/cover no-repeat; position:relative; }
.about-standard-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.about-standard-bg .container { position:relative; }

/* about — Mission/Values/Standards */
.about-mvs-bg { background:url('/static/images/services/hygienic-cleaning.png') center/cover no-repeat; position:relative; }
.about-mvs-bg::before { content:''; position:absolute; inset:0; background:rgba(248,250,252,.90); }
.about-mvs-bg .container { position:relative; }

/* about — Trust badges */
.about-trust-bg { background:url('/static/images/services/deep-cleaning.jpg') center/cover no-repeat; position:relative; }
.about-trust-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.about-trust-bg .container { position:relative; }

/* why choose us — Intro split */
.why-intro-bg { background:url('/static/images/services/outdoor-cleaning.png') center/cover no-repeat; position:relative; }
.why-intro-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.why-intro-bg .container { position:relative; }

/* why choose us — 6 features */
.why-feats-bg { background:url('/static/images/services/post-construction-cleaning.jpg') center/cover no-repeat; position:relative; }
.why-feats-bg::before { content:''; position:absolute; inset:0; background:rgba(248,250,252,.89); }
.why-feats-bg .container { position:relative; }

/* why choose us — Comparison table */
.why-compare-bg { background:url('/static/images/services/office-cleaning-2.png') center/cover no-repeat; position:relative; }
.why-compare-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.why-compare-bg .container { position:relative; }

/* services page — grid */
.services-grid-bg { background:url('/static/images/services/home-cleaning.jpg') center/cover no-repeat; position:relative; }
.services-grid-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.services-grid-bg .container { position:relative; }

/* services page — compare panel */
.services-compare-bg { background:url('/static/images/services/end-of-lease-cleaning.jpg') center/cover no-repeat; position:relative; }
.services-compare-bg::before { content:''; position:absolute; inset:0; background:rgba(248,250,252,.89); }
.services-compare-bg .container { position:relative; }

/* contact page */
.contact-bg { background:url('/static/images/services/office-cleaning.jpg') center/cover no-repeat; position:relative; }
.contact-bg::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,.87); }
.contact-bg .container { position:relative; }

/* About stats row */
.about-stats-row { display:flex;gap:28px;margin:28px 0 24px; }
.about-stat { display:flex;flex-direction:column;gap:3px; }
.about-stat strong { font-size:26px;font-weight:900;color:var(--navy);line-height:1; }
.about-stat span   { font-size:12.5px;color:#6b7280;font-weight:600; }

/* MVS cards */
.mvs-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:24px; }
.mvs-card { padding:32px 28px;border-radius:20px;border:1px solid #e8eaf0;transition:transform .2s,box-shadow .2s;position:relative;overflow:hidden; }
.mvs-card:hover { transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.1); }
.mvs-mission   { background:linear-gradient(145deg,#faf5ff,#fff);border-color:#e9d5ff; }
.mvs-values    { background:linear-gradient(145deg,#fdf2f8,#fff);border-color:#fbcfe8; }
.mvs-standards { background:linear-gradient(145deg,#f0fdf4,#fff);border-color:#bbf7d0; }
.mvs-icon { width:54px;height:54px;border-radius:16px;display:grid;place-items:center;margin-bottom:20px; }
.mvs-mission   .mvs-icon { background:#ede9fe;color:#7c3aed; }
.mvs-values    .mvs-icon { background:#fce7f3;color:#be185d; }
.mvs-standards .mvs-icon { background:#dcfce7;color:#16a34a; }
.mvs-card h3 { font-size:18px;font-weight:800;color:#111827;margin:0 0 10px; }
.mvs-card p  { font-size:14.5px;color:#6b7280;line-height:1.65;margin:0; }

/* Trust feature grid */
.trust-feat-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.trust-feat-card { display:flex;gap:16px;align-items:flex-start;padding:22px;border-radius:16px;background:#fff;border:1px solid #e8eaf0;box-shadow:0 2px 8px rgba(0,0,0,.04);transition:transform .2s,box-shadow .2s; }
.trust-feat-card:hover { transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.08); }
.trust-feat-icon { width:44px;height:44px;border-radius:12px;display:grid;place-items:center;flex-shrink:0; }
.trust-feat-card strong { font-size:14px;font-weight:800;color:#111827;display:block;margin-bottom:4px; }
.trust-feat-card p { font-size:13px;color:#6b7280;line-height:1.55;margin:0; }

/* Why choose us */
.why-check-list { display:flex;flex-direction:column;gap:10px;margin:22px 0 28px; }
.why-check { display:flex;align-items:center;gap:10px;font-size:14.5px;font-weight:600;color:#374151; }
.why-feat-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:22px; }
.why-feat-card { padding:28px 24px;border-radius:18px;background:#fff;border:1px solid #e8eaf0;box-shadow:0 2px 10px rgba(0,0,0,.05);transition:transform .2s,box-shadow .2s; }
.why-feat-card:hover { transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.09); }
.why-feat-icon { width:50px;height:50px;border-radius:14px;display:grid;place-items:center;margin-bottom:18px; }
.why-feat-card h3 { font-size:16px;font-weight:800;color:#111827;margin:0 0 8px; }
.why-feat-card p  { font-size:13.5px;color:#6b7280;line-height:1.6;margin:0; }

/* Comparison table */
.compare-table-wrap { border-radius:16px;overflow:hidden;border:1px solid #e5e7eb;box-shadow:0 4px 20px rgba(0,0,0,.06); }
.compare-table { width:100%;border-collapse:collapse; }
.compare-table thead tr { background:#111827; }
.compare-table th { padding:16px 20px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#9ca3af;text-align:left; }
.compare-us-col { background:rgba(67,97,238,.06); }
.compare-us-label { display:inline-flex;align-items:center;gap:6px;background:linear-gradient(135deg,#4361ee,#5b6ef5);color:#fff;padding:6px 14px;border-radius:99px;font-size:12.5px;font-weight:700;text-transform:none;letter-spacing:0; }
.compare-table td { padding:15px 20px;font-size:14px;color:#374151;border-top:1px solid #f0f0f4; }
.compare-table tbody tr:hover { background:#fafafa; }
.compare-table tbody .compare-us-col { background:rgba(67,97,238,.04); }
.compare-yes { display:inline-flex;align-items:center;gap:5px;background:#dcfce7;color:#15803d;font-size:12.5px;font-weight:700;padding:4px 12px;border-radius:99px; }
.compare-yes::before { content:"✓";font-size:11px; }
.compare-no { color:#9ca3af; }

/* Guarantee CTA */
.guarantee-grid { display:grid;grid-template-columns:auto 1fr auto;gap:32px;align-items:center; }
.guarantee-icon { width:80px;height:80px;border-radius:24px;background:rgba(255,255,255,.12);display:grid;place-items:center;color:#fff;flex-shrink:0; }
.guarantee-copy h2 { color:#fff;font-size:clamp(20px,3vw,30px);margin:8px 0 12px; }
.guarantee-copy p  { color:rgba(255,255,255,.7);font-size:15px;line-height:1.65;margin:0; }
.guarantee-action  { display:flex;flex-direction:column;align-items:center; }

@media (max-width:900px) {
  .mvs-grid,.trust-feat-grid,.why-feat-grid { grid-template-columns:repeat(2,1fr); }
  .guarantee-grid { grid-template-columns:1fr;text-align:center; }
  .guarantee-icon,.guarantee-action { margin:0 auto; }
}
@media (max-width:600px) {
  .mvs-grid,.trust-feat-grid,.why-feat-grid { grid-template-columns:1fr; }
  .home-cta-pills { flex-direction:column;align-items:center;gap:8px; }
  .about-stats-row { gap:18px; }
  .steps-grid { grid-template-columns:1fr 1fr; }
}
