/* Avalanche Cleaning and Janitorial LLC - shared design system
   Cloned 1:1 from Wix source. Fonts: Fredoka (display headings, closest Google
   equivalent to the source's rounded Wix display face) + Poppins (body, closest
   Google equivalent to Wix Madefor). Fonts are loaded via <link> in each page head. */

:root {
  --blue: #1ba5e6;
  --blue-dark: #0d8ecf;
  --blue-deep: #1a8fdf;
  --ink: #0f1b2d;
  --heading: #101828;
  --body: #5a6472;
  --light: #eaf3fd;
  --light-2: #e6f0fc;
  --white: #ffffff;
  --line: #e3e8ef;
  --star: #f6b21b;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 18px 40px rgba(16, 42, 78, 0.10);
  --shadow-sm: 0 8px 24px rgba(16, 42, 78, 0.08);
  --container: 1200px;
  --display: "Fredoka", "Trebuchet MS", sans-serif;
  --sans: "Poppins", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--heading);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--display);
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  margin: 0 0 10px;
}

.section { padding: 84px 0; }
.section-light { background: var(--light); position: relative; }
/* faint decorative watermark carried over from the source (13_Home_Clean_House graphic) */
.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(orig/25.png) center top / 1100px auto no-repeat;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}
.section-light > .container { position: relative; z-index: 1; }

.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-text { color: var(--body); font-size: 16.5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 13px 26px;
  background: var(--blue);
  color: #fff;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(27,165,230,.35); }
.btn-pill { border-radius: 999px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-ico { width: 18px; height: 18px; flex: 0 0 auto; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(16,42,78,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding: 8px 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.brand img { height: 66px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.menu a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #1c2733;
  transition: color .2s ease;
}
.menu a:hover, .menu a.active { color: var(--blue); }
.header-phone {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--heading);
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--heading); margin: 5px 0; transition: .25s; }

/* ---------- home hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #dfeaf2;
  min-height: 597px;
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,.15) 68%, rgba(255,255,255,0) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 30px; }
.hero-copy { padding: 70px 0; max-width: 560px; }
.hero-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 18px;
  line-height: 1.08;
}
.hero-title .accent { color: var(--blue); }
.hero-sub { font-family: var(--display); font-size: 18px; color: #3a4553; font-weight: 500; margin-bottom: 26px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-help { font-family: var(--display); font-weight: 500; color: var(--heading); }
.hero-help a { color: var(--blue); }
.hero-img { position: relative; z-index: 2; justify-self: end; align-self: end; }
.hero-img img { max-height: 516px; width: auto; }

/* ---------- subpage hero ---------- */
.subhero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2b3138;
}
.subhero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.subhero::after { content: ""; position: absolute; inset: 0; background: rgba(20,26,33,.45); z-index: 1; }
.subhero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
}

/* ---------- working process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 48px; }
.step { text-align: center; padding: 10px; }
.step-num { font-family: var(--display); font-size: 34px; font-weight: 600; color: #d5e4f2; margin-bottom: 8px; }
.step-icon {
  width: 82px; height: 82px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.step:hover .step-icon { transform: translateY(-6px); background: #d9ecfb; }
.step-icon img { width: 38px; height: 38px; }
.step h5 { font-size: 18px; margin: 0 0 8px; }
.step p { font-size: 14.5px; margin: 0; }

/* ---------- about split ---------- */
.about-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 12px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 12px;
  background: var(--blue); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon img { width: 30px; height: 30px; }
.feature h5 { font-size: 16.5px; margin: 2px 0 6px; }
.feature p { font-size: 14px; margin: 0; }
.about-text p { margin-bottom: 1.1em; }

/* ---------- dark stat band ---------- */
.stat-band {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 210px;
  display: flex;
  align-items: center;
}
.stat-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stat-band::after { content: ""; position: absolute; inset: 0; background: rgba(18,22,28,.55); z-index: 1; }
.stat-band .container { position: relative; z-index: 2; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { display: flex; gap: 16px; align-items: flex-start; color: #fff; }
.stat img { width: 46px; height: 46px; flex: 0 0 auto; }
.stat h5 { color: #fff; font-size: 19px; margin: 0 0 6px; }
.stat p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 46px; }
.service-card {
  position: relative;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 34px 24px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: #fff; }
.service-icon {
  width: 84px; height: 84px; margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.service-icon img { width: 46px; height: 46px; }
.service-card h5 { font-size: 19px; margin: 0 0 12px; }
.service-card p { font-size: 14.5px; margin: 0 0 22px; }
.services-note { text-align: center; margin-top: 36px; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.services-note p { margin: 0; }
.services-note a { color: var(--blue); font-weight: 600; }
.services-note img { width: 70px; height: auto; }

/* ---------- cta photo band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(16,30,46,.34); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band .eyebrow { color: #eaf3fd; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); max-width: 560px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 500px; margin-bottom: 24px; }

/* ---------- why choose us ---------- */
.why-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.why-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin-top: 28px; max-width: 420px; }
.check { display: flex; gap: 12px; align-items: center; }
.check img { width: 26px; height: 26px; }
.check h5 { margin: 0; font-size: 16px; }
.why-media img { border-radius: 12px; }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.tcard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard .qmark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.tcard .qmark img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.stars { color: var(--star); letter-spacing: 3px; font-size: 15px; margin-bottom: 10px; }
.tcard h5 { color: var(--blue); font-size: 17px; margin: 0 0 12px; }
.tcard p { font-size: 14.5px; margin: 0 0 16px; }
.tcard .tname { font-family: var(--display); font-weight: 600; color: var(--heading); font-size: 15px; }

/* ---------- gallery ---------- */
.gallery-grid {
  columns: 4;
  column-gap: 16px;
  margin-top: 44px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
  break-inside: avoid;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ---------- portfolio carousel (home) ----------
   Columns reproduce the source gallery's collage; the strip pages horizontally. */
.gallery-carousel { position: relative; margin-top: 44px; }
.gc-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gc-viewport::-webkit-scrollbar { display: none; }
.gc-track { display: flex; gap: 5px; width: max-content; align-items: flex-start; }
.gc-col { display: flex; flex-direction: column; gap: 5px; }
.gc-row { display: flex; gap: 5px; }
.gc-track img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  border-radius: 8px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gc-track img:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  color: var(--heading);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background .2s ease;
}
.gc-arrow:hover { background: #fff; }
.gc-arrow[hidden] { display: none; }
.gc-arrow svg { width: 16px; height: 16px; fill: currentColor; }
.gc-prev { left: -10px; }
.gc-next { right: -10px; }

/* ---------- contact ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 500; color: #3a4553; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--heading);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,165,230,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-info .section-title { margin-bottom: 14px; }
.info-list { margin-top: 30px; display: grid; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: center; }
.info-ico {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.info-ico svg { width: 24px; height: 24px; }
.info-item .lbl { font-family: var(--display); font-weight: 600; color: var(--heading); margin: 0; }
.info-item .val { margin: 0; color: var(--body); }
.info-item .val a { color: var(--body); }
.info-item .val a:hover { color: var(--blue); }

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 68px 0 0;
  background: linear-gradient(120deg, #35a9ef 0%, #1c94e2 55%, #1a8fdf 100%);
}
.site-footer .footer-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; z-index: 0; mix-blend-mode: soft-light; }
.footer-inner { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 34px;
  padding-bottom: 46px;
}
.footer-logo { background: #fff; border-radius: 8px; padding: 8px 12px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 62px; width: auto; }
.footer-brand p { color: rgba(255,255,255,.92); font-size: 14px; }
.footer-col h4 { color: #fff; font-family: var(--display); font-size: 18px; letter-spacing: .5px; margin: 4px 0 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,.92); font-size: 14.5px; transition: color .2s ease, padding-left .2s ease; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-col p { color: rgba(255,255,255,.92); font-size: 14.5px; margin: 0 0 12px; }
.footer-col p a { color: rgba(255,255,255,.92); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.35); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center;
  padding: 20px 0;
  background: #000;
  font-size: 13.5px;
  color: rgba(255,255,255,.9);
}

/* ---------- motion (pure-CSS on-load reveals; always end visible) ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.reveal { animation: fadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-2 { animation: fadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) .12s both; }
.reveal-3 { animation: fadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) .24s both; }
.reveal-4 { animation: fadeUp .7s cubic-bezier(0.22, 1, 0.36, 1) .36s both; }
.fade-in { animation: fadeIn 1s ease both; }
.float { animation: floaty 5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .float { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero-bg-overlay { background: rgba(255,255,255,.82); }
  .steps, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split, .why-split, .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 100%; right: 0; left: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(16,42,78,.08); display: none; }
  .nav.open { display: flex; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; }
  .menu li { border-bottom: 1px solid var(--line); }
  .menu a { display: block; padding: 14px 0; }
  .header-phone { padding: 12px 0 4px; }
  .nav .btn { margin-top: 12px; justify-content: center; }
  .section { padding: 56px 0; }
  .steps, .services-grid, .tgrid, .about-features, .why-checks, .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
