/* Peachy Clean Junk Removal — Custom styles
   ----------------------------------------------------------------
   Brand palette (matched to live logo):
     --green:      #AFC938   primary brand
     --green-dark: #8FA42D   text accent / hover
     --green-pale: #F5F9E8   tinted backgrounds
     --ink:        #1A1A1A   headings
     --dark:       #2D2D2D   body text
     --mid:        #666666   secondary text
     --cream:      #FFF8F2   warm page bg
     --peach:      #F18F2A   accent only (floating peaches, shimmer, delight)
     --peach-deep: #E26F1A
   Typography: Ubuntu (Google Fonts) — single typeface, all weights
*/

:root {
  --green:       #AFC938;
  --green-dark:  #8FA42D;
  --green-pale:  #F5F9E8;
  --green-soft:  #E5EFC0;
  --ink:         #1A1A1A;
  --dark:        #2D2D2D;
  --mid:         #666666;
  --cream:       #FFF8F2;
  --peach:       #F18F2A;
  --peach-deep:  #E26F1A;
  --border:      #E0E0E0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Reserve room at the bottom for the sticky mobile CTA bar (mobile only) */
@media (max-width: 1023px) {
  body { padding-bottom: 76px; }
}

/* Keep decorative peach mascots and blurred blobs from forcing horizontal scroll on small screens */
@media (max-width: 768px) {
  .peach-blob { display: none; }
  .peach-float-1, .peach-float-2, .peach-float-3 { font-size: clamp(2.5rem, 8vw, 4rem) !important; opacity: 0.4 !important; }
}

h1, h2, h3, h4, .display {
  font-family: 'Ubuntu', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

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

/* ========= Parallax ========= */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .parallax { background-attachment: scroll; }
}

.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ========= Floating Peaches (3D) — kept as secondary delight ========= */
@keyframes float-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(20px, -30px, 0) rotate(15deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-25px, -40px, 0) rotate(-12deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(15px, -25px, 0) rotate(10deg); }
}
.peach-float-1 { animation: float-1 8s ease-in-out infinite; }
.peach-float-2 { animation: float-2 10s ease-in-out infinite; }
.peach-float-3 { animation: float-3 12s ease-in-out infinite; }

/* ========= 3D Card Tilt ========= */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  perspective: 1000px;
}
.card-3d:hover {
  transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-10px) scale(1.025);
  box-shadow: 0 35px 70px -15px rgba(175, 201, 56, 0.45), 0 22px 40px -18px rgba(26, 26, 26, 0.18);
}

.card-3d-icon {
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.card-3d:hover .card-3d-icon {
  transform: translateZ(40px) scale(1.18);
}

/* ========= Service Area pill hover ========= */
.area-pill {
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), color 0.7s ease;
  position: relative;
  overflow: hidden;
}
.area-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}
.area-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px -8px rgba(175, 201, 56, 0.55);
}
.area-pill:hover::before { opacity: 1; }
.area-pill:hover .area-pill-text { color: #fff; }
.area-pill-text { position: relative; z-index: 1; transition: color 0.7s ease; }

/* ========= CTA Buttons ========= */
.btn-peachy {
  background: var(--green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
  box-shadow: 0 8px 25px -5px rgba(175, 201, 56, 0.5);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green);
}
.btn-peachy::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1), height 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-peachy:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px -5px rgba(143, 164, 45, 0.6);
}
.btn-peachy:hover::after { width: 500px; height: 500px; }

.btn-lime {
  background: var(--green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
  box-shadow: 0 8px 25px -5px rgba(175, 201, 56, 0.5);
  border: 2px solid var(--green);
}
.btn-lime:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px -5px rgba(143, 164, 45, 0.65);
}

.btn-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -5px rgba(175, 201, 56, 0.4);
}

/* ========= Underline link animation ========= */
.nav-link {
  position: relative;
  transition: color 0.6s ease;
  color: var(--ink);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--green-dark); }
.nav-link.active { color: var(--green-dark); }

/* ========= Reveal on scroll ========= */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Hero text shimmer (peach accent kept as delight) ========= */
@keyframes shimmer-in {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 28%, var(--green-dark) 50%, var(--ink) 72%, var(--ink) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-in 7s ease-in-out infinite;
}

/* ========= Decorative blob ========= */
.peach-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.lime-blob { background: var(--green); }
.orange-blob { background: var(--peach); opacity: 0.25; }

/* ========= Number ticker ========= */
.stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

/* ========= Service grid card ========= */
.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease, box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 25px 50px -12px rgba(175, 201, 56, 0.4);
}
.service-card .icon-circle {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
}
.service-card:hover .icon-circle {
  transform: rotateY(360deg) scale(1.12);
  background: var(--green);
}
.service-card:hover .icon-circle svg { color: #fff; transition: color 0.4s ease; }

/* ========= Hero glow ========= */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(175, 201, 56, 0.45) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-orange {
  background: radial-gradient(circle, rgba(241, 143, 42, 0.35) 0%, transparent 70%);
}

/* ========= Trust marquee ========= */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 30s linear infinite;
}

/* ========= Reviews carousel (infinite loop) ========= */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reviews-carousel__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  padding-inline: 1.5rem;
}
.reviews-carousel:hover .reviews-carousel__track { animation-play-state: paused; }
.review-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.review-card__stars { color: var(--green); font-size: 1.05rem; letter-spacing: 0.06em; }
.review-card__text  { font-size: 0.95rem; color: var(--dark); font-style: italic; flex: 1; line-height: 1.6; }
.review-card__author { font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.review-card__location { font-size: 0.78rem; color: var(--mid); }
@media (max-width: 640px) {
  .review-card { flex-basis: 280px; padding: 1.25rem; }
}

/* ========= Step card connector ========= */
.step-card { position: relative; }
.step-card .step-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  opacity: 0.95;
}

/* ========= Hamburger button + Mobile menu ========= */
.hamburger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--ink);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger:hover { background: var(--green-dark); transform: scale(1.06); }
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 380px);
  background: var(--ink);
  color: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.4);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  border-bottom: 1px solid rgba(175, 201, 56, 0.25);
  transition: color 0.4s ease, padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-link:hover { color: var(--green); padding-left: 0.75rem; }
.mobile-link.active { color: var(--green); }

/* ========= Form input ========= */
.input-peachy {
  background: white;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-peachy:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(175, 201, 56, 0.2);
}

/* ========= FAQ accordion ========= */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s ease;
}
.faq-question {
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.4s ease;
}
.faq-question:hover { color: var(--green-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1), padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-icon {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ========= Trust bar ========= */
.trust-bar-item {
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
}
.trust-bar-item:hover {
  transform: translateY(-4px);
  color: var(--green-dark);
}

/* ========= Image hover lift ========= */
.lift-on-hover {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.lift-on-hover img { transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1); }
.lift-on-hover:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 35px 70px -15px rgba(26, 26, 26, 0.3);
}
.lift-on-hover:hover img { transform: scale(1.08); }

/* ========= Image frame ========= */
.photo-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--ink);
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4));
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ========= Logo animation ========= */
.logo-mark {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.logo-mark:hover { transform: rotate(-10deg) scale(1.08); }

/* ========= City service-area banner ========= */
.city-banner {
  position: relative;
  height: clamp(200px, 32vw, 360px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.city-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.55) 60%, var(--cream) 100%);
  pointer-events: none;
}
.city-banner__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}

/* ========= Sticky mobile CTA bar (Call + Get Quote, bottom-fixed below lg) ========= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.6rem max(0.75rem, env(safe-area-inset-left)) max(0.6rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
  background: rgba(255, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(175, 201, 56, 0.35);
  box-shadow: 0 -8px 24px -8px rgba(26, 26, 26, 0.18);
}
.mobile-cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 600px;
  margin-inline: auto;
}
.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease, background 0.3s ease;
}
.mobile-cta-bar a:active { transform: scale(0.97); }
.mobile-cta-bar .mcta-call {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(26, 26, 26, 0.45);
}
.mobile-cta-bar .mcta-call:hover { background: var(--green-dark); }
.mobile-cta-bar .mcta-quote {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(175, 201, 56, 0.55);
}
.mobile-cta-bar .mcta-quote:hover { background: var(--green-dark); }

@media (max-width: 1023px) {
  .mobile-cta-bar { display: block; }
}

/* ========= Reduce motion ========= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .parallax { background-attachment: scroll; }
  .reviews-carousel__track { animation: none; }
}
