:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-2: #181818;
  --text: #f6f6f6;
  --muted: #cfcfcf;
  --gold: #f4b400;
  --gold-2: #ffd24d;
  --green: #72d94b;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(244,180,0,0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(114,217,75,0.14), transparent 25%),
    var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.82);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); }
.brand-name { font-weight: 800; letter-spacing: 0.2px; }
.brand-sub { color: var(--muted); font-size: 0.92rem; }
.nav { display: flex; gap: 22px; color: var(--muted); }
.nav a:hover { color: var(--gold-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.16); box-shadow: none;
}
.btn-sm { padding: 10px 16px; border-radius: 12px; }

.hero { padding: 72px 0 36px; }
.hero-grid {
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 32px; align-items: center;
}
.eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px;
  background: rgba(244,180,0,0.12); color: var(--gold-2); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
}
.hero h1, .section h2 { margin: 0 0 16px; line-height: 1.02; }
.hero h1 { font-size: clamp(2.35rem, 5vw, 4.6rem); max-width: 10.5ch; }
.hero p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; max-width: 61ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 18px; }
.hero-points {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--muted);
}
.hero-points li::before { content: "✓"; color: var(--green); margin-right: 10px; font-weight: 900; }

.hero-card, .service-card, .quote-box, .step, .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 24px; }
.hero-logo { width: min(100%, 380px); margin: 0 auto 18px; border-radius: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { padding: 18px; border-radius: 18px; background: var(--panel); border: 1px solid var(--border); }
.stat strong { display: block; margin-bottom: 6px; color: var(--gold-2); }
.stat span { color: var(--muted); font-size: 0.94rem; }

.trust-bar { padding: 10px 0 34px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-grid > div {
  padding: 16px 18px; border-radius: 16px; text-align: center; font-weight: 700;
  color: #111; background: linear-gradient(135deg, rgba(244,180,0,0.95), rgba(114,217,75,0.88));
}

.section { padding: 72px 0; }
.section-alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head p { color: var(--muted); }
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card { padding: 24px; }
.service-card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.two-col {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 10px; font-weight: 900; }
.quote-box { padding: 30px; text-align: center; }
.quote-mark { font-size: 5rem; margin: 0; line-height: 0.8; color: var(--gold); }
.quote-text { font-size: 1.5rem; font-weight: 800; margin: 6px 0 24px; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.step { padding: 24px; }
.step span {
  width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--green)); color: #111; font-weight: 900; margin-bottom: 18px;
}
.step h3 { margin: 0 0 10px; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; }

.cta-band { padding: 54px 0; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: start; }
.contact-card { padding: 24px; }
.contact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row span { color: var(--muted); }
.contact-row a { color: var(--gold-2); font-weight: 700; }

.site-footer { padding: 24px 0 36px; }
.footer-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.footer-wrap p { color: var(--muted); margin: 6px 0 0; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .card-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  .cta-content, .nav-wrap, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .nav { display: none; }
  .hero h1 { max-width: 14ch; }
}

@media (max-width: 640px) {
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .brand-name { font-size: 0.98rem; }
  .brand-sub { font-size: 0.82rem; }
  .btn, .btn-outline, .btn-sm { width: 100%; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions > *, .cta-actions > * { flex: 1 1 100%; }
}

.slogan { font-size: 1.3rem; font-weight: 800; color: var(--gold-2); margin-bottom: 12px; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Animated junk rain background */
.junk-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.junk-rain span {
  position: absolute;
  top: -10vh;
  font-size: clamp(18px, 2.2vw, 34px);
  opacity: 0.12;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
  animation: junkFall linear infinite;
}
.junk-rain span:nth-child(1){ left: 4%; animation-duration: 15s; animation-delay: 0s; }
.junk-rain span:nth-child(2){ left: 12%; animation-duration: 19s; animation-delay: -2s; }
.junk-rain span:nth-child(3){ left: 20%; animation-duration: 13s; animation-delay: -6s; }
.junk-rain span:nth-child(4){ left: 28%; animation-duration: 17s; animation-delay: -10s; }
.junk-rain span:nth-child(5){ left: 36%; animation-duration: 14s; animation-delay: -5s; }
.junk-rain span:nth-child(6){ left: 46%; animation-duration: 20s; animation-delay: -12s; }
.junk-rain span:nth-child(7){ left: 55%; animation-duration: 16s; animation-delay: -4s; }
.junk-rain span:nth-child(8){ left: 64%; animation-duration: 18s; animation-delay: -9s; }
.junk-rain span:nth-child(9){ left: 73%; animation-duration: 14s; animation-delay: -7s; }
.junk-rain span:nth-child(10){ left: 81%; animation-duration: 19s; animation-delay: -3s; }
.junk-rain span:nth-child(11){ left: 89%; animation-duration: 15s; animation-delay: -11s; }
.junk-rain span:nth-child(12){ left: 95%; animation-duration: 21s; animation-delay: -8s; }

@keyframes junkFall {
  0% { transform: translate3d(0,-12vh,0) rotate(0deg); }
  100% { transform: translate3d(20px,115vh,0) rotate(340deg); }
}

/* Keep site above background */
.site-header, main, footer { position: relative; z-index: 1; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

/* Extra motion polish */
.btn {
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
}
.brand-logo, .hero-logo {
  animation: floatLogo 4.2s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.stat, .service-card, .step, .contact-card, .quote-box {
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stat:hover, .service-card:hover, .step:hover, .contact-card:hover, .quote-box:hover {
  transform: translateY(-6px);
  border-color: rgba(244,180,0,0.35);
}

.slogan {
  animation: pulseGlow 2.7s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { text-shadow: 0 0 0 rgba(255,210,77,0.0); }
  50% { text-shadow: 0 0 18px rgba(255,210,77,0.35); }
}
.deposit-note {
  margin: 8px 0 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(114,217,75,0.10);
  border: 1px solid rgba(114,217,75,0.22);
  color: #e8f7df;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .junk-rain span,
  .brand-logo, .hero-logo, .slogan {
    animation: none !important;
  }
  .reveal, .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.deposit-cta {
  display: inline-block;
  margin: 10px 0 20px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

#junk-splash-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.junk-splash {
  position: absolute;
  font-size: 22px;
  animation: splash 1s ease-out forwards;
}

@keyframes splash {
  0% { opacity:1; transform: scale(1) translate(0,0); }
  100% { opacity:0; transform: scale(1.5) translate(60px,-60px) rotate(360deg); }
}


/* Go crazier upgrades */
.sticky-booking-bar {
  position: sticky;
  top: 86px;
  z-index: 45;
  padding: 10px 0 0;
}
.sticky-booking-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(244,180,0,0.18);
  background: linear-gradient(135deg, rgba(244,180,0,0.14), rgba(114,217,75,0.10), rgba(0,0,0,0.7));
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
}
.sticky-copy {
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: 0.01em;
}
.sticky-btn {
  white-space: nowrap;
  animation: pulseButton 2.2s ease-in-out infinite;
}
@keyframes pulseButton {
  0%,100% { box-shadow: 0 0 0 0 rgba(244,180,0,0.0), var(--shadow); }
  50% { box-shadow: 0 0 0 12px rgba(244,180,0,0.0), 0 0 24px rgba(244,180,0,0.22), var(--shadow); }
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ba-card {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(244,180,0,0.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
}
.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.ba-label.before {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.ba-label.after {
  background: rgba(114,217,75,0.18);
  color: #dfffd2;
}
.ba-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: #d7d7d7;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 16px, transparent 16px 32px),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18));
}
.ba-placeholder.clean {
  color: #efffe8;
  background:
    radial-gradient(circle at center, rgba(114,217,75,0.10), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.18));
}

.mega-cta {
  padding: 36px;
  text-align: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(244,180,0,0.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.mega-cta h2 {
  margin-bottom: 12px;
}
.mega-cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 22px;
}
.mega-cta-btn {
  max-width: 800px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
}

/* Crazier click FX */
#junk-splash-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

#cleanup-flash {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  background:
    linear-gradient(100deg,
      rgba(255,255,255,0) 15%,
      rgba(255,255,255,0.10) 45%,
      rgba(114,217,75,0.09) 50%,
      rgba(255,255,255,0.0) 80%);
  transform: translateX(-110%) skewX(-18deg);
}
#cleanup-flash.active {
  animation: cleanupSweep .7s ease-out forwards;
}
@keyframes cleanupSweep {
  0% { opacity: 0; transform: translateX(-110%) skewX(-18deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%) skewX(-18deg); }
}

.junk-splash {
  position: absolute;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  animation: wildSplash 1s cubic-bezier(.16,.84,.26,.99) forwards;
  filter: drop-shadow(0 12px 14px rgba(0,0,0,0.35));
}

@keyframes wildSplash {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(.6) rotate(0deg);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.45) rotate(460deg);
  }
}

.nav a, .service-card, .stat, .step, .contact-card {
  position: relative;
  overflow: hidden;
}
.nav a::after, .service-card::after, .stat::after, .step::after, .contact-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -140% -40%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,210,77,0.14), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  transform: translateY(20px);
}
.nav a:hover::after, .service-card:hover::after, .stat:hover::after, .step:hover::after, .contact-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .before-after-grid,
  .sticky-booking-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .sticky-btn, .mega-cta-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cleanup-flash, .sticky-btn, .junk-splash {
    animation: none !important;
  }
}


/* Real truck intro */
#truck-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 70%, #171717 100%);
}
#truck-intro.fade-out {
  animation: truckIntroFadeOut .8s ease forwards;
}
@keyframes truckIntroFadeOut {
  to { opacity: 0; visibility: hidden; }
}
.truck-intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.10), transparent 22%),
    radial-gradient(circle at 68% 10%, rgba(244,180,0,0.16), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(114,217,75,0.12), transparent 20%);
}
.truck-intro-title {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--gold-2);
  text-shadow: 0 0 22px rgba(244,180,0,0.28);
  opacity: 0;
}
#truck-intro.play .truck-intro-title {
  animation: introTitleReal .8s ease .15s forwards;
}
@keyframes introTitleReal {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.truck-intro-image {
  position: absolute;
  bottom: 7%;
  left: -68%;
  width: min(88vw, 1280px);
  max-width: none;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.55));
}
#truck-intro.play .truck-intro-image {
  animation:
    truckDrivePhoto 2.4s cubic-bezier(.12,.86,.24,1) forwards,
    truckDumpBounce .6s ease 2.35s 1;
}
@keyframes truckDrivePhoto {
  from { left: -68%; }
  to { left: 4%; }
}
@keyframes truckDumpBounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@media (max-width: 900px) {
  .truck-intro-image {
    width: 150vw;
    left: -110%;
    bottom: 11%;
  }
  #truck-intro.play .truck-intro-image {
    animation: truckDrivePhotoMobile 2.35s cubic-bezier(.12,.86,.24,1) forwards;
  }
  @keyframes truckDrivePhotoMobile {
    from { left: -110%; }
    to { left: -12%; }
  }
}

@media (prefers-reduced-motion: reduce) {
  #truck-intro { display: none; }
}


/* Clean transparent floating logo */
.hero-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.hero-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: min(100%, 430px) !important;
  margin: 0 auto 18px !important;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.45)) drop-shadow(0 0 18px rgba(244,180,0,0.18));
}
