/* ============================================
   JUNK-LESS — Premium Site Styles
   ============================================ */

:root {
  --orange: #FF8A1E;
  --orange-light: #FFA94D;
  --orange-dark: #E85D04;
  --dark: #0B0B0D;
  --dark-2: #15151A;
  --dark-3: #1F1F26;
  --light: #FAFAFA;
  --gray: #8A8A92;
  --gray-light: #D8D8DC;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   INTRO ANIMATION
   ============================================ */

.intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #181820 0%, #0a0a0c 70%, #050507 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.9s var(--ease-in-out), visibility 0.9s;
}

.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Lens glares */
.glare {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
  animation: glare-float 8s var(--ease-in-out) infinite;
}

.glare-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,138,30,0.55), transparent 70%);
  top: 12%; left: 8%;
  animation-delay: 0.2s;
}
.glare-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,169,77,0.4), transparent 70%);
  bottom: 18%; right: 12%;
  animation-delay: 1.4s;
}
.glare-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,93,4,0.35), transparent 70%);
  top: 50%; left: 60%;
  animation-delay: 2.4s;
}
.glare-4 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top: 30%; left: 40%;
  animation-delay: 0.6s;
}

@keyframes glare-float {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
  50%      { transform: translate(20px,-15px) scale(1.1); opacity: 0.65; }
}

/* Truck reveal */
.intro-truck-wrap {
  position: relative;
  width: min(560px, 80vw);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateX(-80px);
  animation: truck-in 1.6s var(--ease-out) 0.3s forwards;
}

@keyframes truck-in {
  0%   { opacity: 0; transform: translateX(-120px) scale(0.92); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.intro-truck { width: 100%; height: auto; display: block; }

/* Headlight beam */
.headlight-beam {
  position: absolute;
  top: 58%;
  right: -40%;
  width: 60%;
  height: 24%;
  background: linear-gradient(to right, rgba(255,240,180,0.6), transparent 80%);
  filter: blur(30px);
  opacity: 0;
  transform: translateY(-50%);
  animation: beam-on 0.6s ease-out 1.6s forwards;
}
@keyframes beam-on {
  to { opacity: 1; }
}

/* Brand text */
.intro-brand {
  text-align: center;
  opacity: 0;
  animation: brand-fade 1.2s var(--ease-out) 1.9s forwards;
}

@keyframes brand-fade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.brand-text {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 18px;
}

.brand-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letter-pop 0.7s var(--ease-out) forwards;
}

.brand-text .b-orange { color: var(--orange); }
.brand-text .b-white  { color: var(--light); }

.brand-text span:nth-child(1) { animation-delay: 2.0s; }
.brand-text span:nth-child(2) { animation-delay: 2.07s; }
.brand-text span:nth-child(3) { animation-delay: 2.14s; }
.brand-text span:nth-child(4) { animation-delay: 2.21s; }
.brand-text span:nth-child(5) { animation-delay: 2.28s; }
.brand-text span:nth-child(6) { animation-delay: 2.35s; }
.brand-text span:nth-child(7) { animation-delay: 2.42s; }
.brand-text span:nth-child(8) { animation-delay: 2.49s; }
.brand-text span:nth-child(9) { animation-delay: 2.56s; }

@keyframes letter-pop {
  to { opacity: 1; transform: translateY(0); }
}

.location-text {
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 500;
  opacity: 0;
  animation: brand-fade 1s var(--ease-out) 3.1s forwards;
}

.location-text .accent { color: var(--orange); }

/* Underline accent */
.intro-line {
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  margin: 20px auto;
  animation: line-grow 1s var(--ease-out) 3.4s forwards;
}
@keyframes line-grow {
  to { width: 280px; }
}

/* Skip intro button */
.skip-intro {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  opacity: 0;
  animation: skip-fade 0.6s ease-out 2s forwards;
  transition: all 0.25s ease;
}
.skip-intro:hover { color: var(--light); border-color: var(--orange); }
@keyframes skip-fade { to { opacity: 1; } }

/* ============================================
   SITE LAYOUT
   ============================================ */

.site {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.site.visible { opacity: 1; }

/* Top nav */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,11,13,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navlogo {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--light);
}
.navlogo .o { color: var(--orange); }

.navlinks {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navlinks a {
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
}
.navlinks a:hover { color: var(--light); }
.navlinks a.active { color: var(--orange); }

.navcta {
  background: var(--orange) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.navcta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,138,30,0.35);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255,138,30,0.12), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(232,93,4,0.08), transparent 50%),
    var(--dark);
  overflow: hidden;
}

.hero .glare-bg {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,138,30,0.18), transparent 70%);
  top: -10%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  animation: glare-float 12s var(--ease-in-out) infinite;
}

.hero-logo {
  width: min(780px, 92vw);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade 1.2s var(--ease-out) 0.2s forwards;
  filter: drop-shadow(0 20px 60px rgba(255,138,30,0.15));
}
.hero-logo img, .hero-logo svg { width: 100%; height: auto; }

@keyframes hero-fade {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: hero-fade 1.2s var(--ease-out) 0.6s forwards;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--dark);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  animation: hero-fade 1.2s var(--ease-out) 0.9s forwards;
  box-shadow: 0 14px 40px rgba(255,138,30,0.4), 0 0 0 0 rgba(255,138,30,0.7);
  position: relative;
  overflow: hidden;
}
.cta-button:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(255,138,30,0.5);
}
.cta-button .arrow {
  transition: transform 0.3s var(--ease-out);
}
.cta-button:hover .arrow { transform: translateX(6px); }

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: hero-fade 1.2s var(--ease-out) 1.2s forwards;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
.hero-trust span:first-child::before { display: none; }
.hero-trust .stars { color: var(--orange); font-size: 15px; }

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 100px 48px;
  position: relative;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.section-title .o { color: var(--orange); }

.section-lead {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Features grid */
.features {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.features-head { text-align: center; }
.features-head .section-lead { margin-left: auto; margin-right: auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,30,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { color: var(--gray-light); font-size: 15px; }

/* Service areas */
.areas {
  text-align: center;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.area-pill {
  padding: 12px 22px;
  background: rgba(255,138,30,0.08);
  border: 1px solid rgba(255,138,30,0.25);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--light);
  transition: all 0.25s ease;
}
.area-pill:hover {
  background: rgba(255,138,30,0.2);
  transform: translateY(-2px);
}

/* CTA Band */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--dark);
  padding: 80px 48px;
}
.cta-band .section-title { color: var(--dark); }
.cta-band p { font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band .cta-button {
  background: var(--dark);
  color: var(--orange);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  animation: none;
  opacity: 1;
}
.cta-band .cta-button:hover { background: var(--dark-2); }

/* ============================================
   SERVICES PAGE
   ============================================ */

.page-hero {
  padding: 160px 48px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255,138,30,0.12), transparent 50%),
    var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero .glare-bg {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,138,30,0.18), transparent 70%);
  top: -20%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.35s var(--ease-out);
}
.service-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.service-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-item .emoji {
  font-size: 28px;
  filter: grayscale(0.2);
}
.service-item p { color: var(--gray-light); font-size: 15px; }

.process {
  background: var(--dark-2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-step { text-align: center; }
.process-step .num {
  font-family: 'Impact', sans-serif;
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}
.process-step h4 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--gray-light); font-size: 14px; }

.pricing {
  text-align: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.35s var(--ease-out);
  position: relative;
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(255,138,30,0.1), rgba(255,138,30,0.02));
  transform: scale(1.02);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--orange);
  color: var(--dark);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 800;
}
.price-tier { font-size: 14px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }
.price-amount { font-family: 'Impact', sans-serif; font-size: 48px; margin: 10px 0 4px; }
.price-amount .currency { font-size: 24px; vertical-align: top; color: var(--gray); }
.price-amount .unit { font-size: 14px; color: var(--gray); font-family: inherit; }
.price-desc { color: var(--gray-light); margin-bottom: 22px; }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-list li::before { content: '✓ '; color: var(--orange); font-weight: 800; }

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 48px;
}

@media (max-width: 880px) {
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
}

.booking-info h2 { margin-bottom: 20px; }
.booking-info p { color: var(--gray-light); margin-bottom: 28px; }
.booking-info .info-list { list-style: none; }
.booking-info .info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-info .info-list .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,138,30,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--orange);
}
.booking-info .info-list .label { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.booking-info .info-list .value { font-size: 16px; color: var(--light); }

.booking-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--light);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,138,30,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 12px;
  margin-top: 12px;
  transition: all 0.25s ease;
}
.submit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255,138,30,0.4);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 40px 28px;
}
.success-msg.show { display: block; }
.success-msg .check {
  width: 70px; height: 70px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 36px;
  color: var(--dark);
}
.success-msg h3 { font-size: 22px; margin-bottom: 10px; }
.success-msg p { color: var(--gray-light); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 48px 30px;
  text-align: center;
}
.footer-logo {
  font-family: 'Impact', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.footer-logo .o { color: var(--orange); }
.footer-text { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray-light);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  font-size: 12px;
  color: var(--gray);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
  .topnav { padding: 16px 20px; }
  .navlinks { gap: 18px; font-size: 12px; }
  .navlinks a:not(.navcta) { display: none; }
  section { padding: 70px 20px; }
  .booking-form { padding: 26px; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, select, textarea, * { cursor: none !important; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    mix-blend-mode: difference;
  }

  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin: -4px 0 0 -4px;
    transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s ease;
    box-shadow: 0 0 14px rgba(255,138,30,0.7);
  }

  .cursor-ring {
    width: 38px; height: 38px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    margin: -19px 0 0 -19px;
    transition: width 0.28s var(--ease-out),
                height 0.28s var(--ease-out),
                margin 0.28s var(--ease-out),
                background 0.25s ease,
                border-color 0.25s ease,
                opacity 0.2s ease;
    opacity: 0.85;
  }

  .cursor-ring.hover {
    width: 64px; height: 64px;
    margin: -32px 0 0 -32px;
    background: rgba(255,138,30,0.18);
    border-color: var(--orange-light);
  }
  .cursor-dot.hover {
    width: 14px; height: 14px;
    margin: -7px 0 0 -7px;
    background: #fff;
  }

  .cursor-ring.click {
    width: 26px; height: 26px;
    margin: -13px 0 0 -13px;
    background: rgba(255,138,30,0.4);
  }

  .cursor-trail {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin: -3px 0 0 -3px;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    will-change: transform, opacity;
  }
}

/* ============================================
   HERO TRUCK ANIMATION
   ============================================ */

.hero-logo {
  position: relative;
}

.hero-logo-floater {
  display: block;
  width: 100%;
  animation: float-truck 4.2s ease-in-out infinite;
}

@keyframes float-truck {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}

/* soft ground shadow */
.hero-logo::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -22px;
  height: 56px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), rgba(0,0,0,0.2) 50%, transparent 75%);
  filter: blur(18px);
  z-index: -1;
  animation: shadow-pulse 4.2s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(0.85); opacity: 0.55; }
}

/* glow halo behind logo */
.hero-logo::before {
  content: '';
  position: absolute;
  inset: -8% -4% -4% -4%;
  background: radial-gradient(ellipse at center, rgba(255,138,30,0.25), transparent 65%);
  filter: blur(40px);
  z-index: -2;
  animation: halo-pulse 6s ease-in-out infinite;
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.9; }
}

/* wheels — static, no animation */
.hero-logo .wheel { animation: none; }

/* smoke puffs */
.hero-logo .smoke {
  animation: smoke-rise 2.4s ease-out infinite;
  transform-origin: center;
}
.hero-logo .smoke.s1 { animation-delay: 0s; }
.hero-logo .smoke.s2 { animation-delay: 0.8s; }
.hero-logo .smoke.s3 { animation-delay: 1.6s; }
.hero-logo .smoke.s4 { animation-delay: 0.4s; }
.hero-logo .smoke.s5 { animation-delay: 1.2s; }

@keyframes smoke-rise {
  0%   { transform: translate(0,15px) scale(0.4); opacity: 0; }
  20%  { opacity: 0.75; }
  60%  { opacity: 0.45; }
  100% { transform: translate(-18px,-50px) scale(1.7); opacity: 0; }
}

/* headlight flicker */
.hero-logo .headlight {
  animation: headlight-glow 2s ease-in-out infinite;
  transform-origin: 630px 335px;
  transform-box: fill-box;
}
@keyframes headlight-glow {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.75; }
}

/* tiny road dust under wheels */
.hero-logo .dust {
  animation: dust-poof 1.1s ease-out infinite;
  transform-origin: center;
}
.hero-logo .dust.d1 { animation-delay: 0s; }
.hero-logo .dust.d2 { animation-delay: 0.35s; }
.hero-logo .dust.d3 { animation-delay: 0.7s; }

@keyframes dust-poof {
  0%   { transform: translate(0,0) scale(0.3); opacity: 0.7; }
  100% { transform: translate(40px,-8px) scale(1.4); opacity: 0; }
}

/* ============================================
   BIGGER "Why Junk-less" EYEBROW
   ============================================ */

.features-head .section-eyebrow,
.section-eyebrow.big {
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 800;
  margin-bottom: 22px;
}
.features-head .section-title {
  font-size: clamp(48px, 6.5vw, 84px);
  margin-bottom: 28px;
}

/* ============================================
   SERVICES PAGE INTRO ANIMATION
   ============================================ */

.services-intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #181820 0%, #0a0a0c 70%, #050507 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.7s var(--ease-in-out), visibility 0.7s;
}
.services-intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.friendly-character {
  font-size: clamp(80px, 14vw, 160px);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.4);
  animation: char-bounce 0.9s var(--ease-out) 0.2s forwards, char-breathe 2.8s ease-in-out 1.1s infinite;
  filter: drop-shadow(0 12px 36px rgba(255,138,30,0.45));
}

@keyframes char-bounce {
  0%   { opacity: 0; transform: scale(0.3); }
  60%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes char-breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.06) translateY(-6px); }
}

.services-intro-text {
  text-align: center;
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--light);
}
.services-intro-text .line1 {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: line-in 0.8s var(--ease-out) 0.7s forwards;
}
.services-intro-text .line2 {
  display: block;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: line-pop 0.8s var(--ease-out) 1.1s forwards;
}
@keyframes line-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes line-pop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.services-intro .glare {
  opacity: 0;
  animation: glare-fade-in 0.6s ease-out 0.1s forwards, glare-float 6s var(--ease-in-out) 0.7s infinite;
}
@keyframes glare-fade-in {
  to { opacity: 0.6; }
}

/* ============================================
   SERVICES — RESTRUCTURED LAYOUT
   ============================================ */

.svc-category {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.svc-category:last-child { margin-bottom: 0; }

.svc-category-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-category-badge {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255,138,30,0.12);
  border: 1px solid rgba(255,138,30,0.35);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.svc-category-title {
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: 1px;
}
.svc-category-title .o { color: var(--orange); }

.svc-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.svc-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,138,30,0.45);
  background: linear-gradient(165deg, rgba(255,138,30,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,138,30,0.18), rgba(255,138,30,0.04));
  border: 1px solid rgba(255,138,30,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 22px;
  transition: all 0.35s var(--ease-out);
}
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: scale(1.08) rotate(-4deg);
}

.svc-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--light);
}
.svc-desc {
  color: var(--gray-light);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.svc-tag {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 999px;
}

.svc-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255,138,30,0.1);
  border: 1px solid rgba(255,138,30,0.3);
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
}
.svc-book-btn .arrow { transition: transform 0.25s var(--ease-out); }
.svc-book-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(255,138,30,0.35);
}
.svc-book-btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HERO — FALLING JUNK ITEMS (continuous loop)
   ============================================ */
.hero-logo .falling-item {
  opacity: 0;
  transform: translateY(-280px);
  transform-box: fill-box;
  transform-origin: center;
  animation: drop-into-truck 7s ease-in infinite;
  will-change: transform, opacity;
}
@keyframes drop-into-truck {
  0%   { opacity: 0; transform: translateY(-280px) rotate(0deg); }
  3%   { opacity: 0; }
  6%   { opacity: 1; }
  38%  { opacity: 1; transform: translateY(0) rotate(8deg); }
  40%  { transform: translateY(-4px) rotate(8deg); }
  43%  { transform: translateY(0) rotate(8deg); }
  85%  { opacity: 1; transform: translateY(0) rotate(8deg); }
  96%  { opacity: 0; }
  100% { opacity: 0; transform: translateY(0) rotate(8deg); }
}
/* Stagger each item so it feels random + continuous */
.hero-logo .fi-1  { animation-delay: 0s;    }
.hero-logo .fi-2  { animation-delay: 0.55s; }
.hero-logo .fi-3  { animation-delay: 1.1s;  }
.hero-logo .fi-4  { animation-delay: 1.65s; }
.hero-logo .fi-5  { animation-delay: 2.2s;  }
.hero-logo .fi-6  { animation-delay: 2.75s; }
.hero-logo .fi-7  { animation-delay: 3.3s;  }
.hero-logo .fi-8  { animation-delay: 3.85s; }
.hero-logo .fi-9  { animation-delay: 4.4s;  }
.hero-logo .fi-10 { animation-delay: 4.95s; }
.hero-logo .fi-11 { animation-delay: 5.5s;  }
.hero-logo .fi-12 { animation-delay: 6.05s; }

/* Slight rotation variety using nth-child overrides */
.hero-logo .fi-2,  .hero-logo .fi-5,  .hero-logo .fi-8  { animation-name: drop-into-truck-r; }
.hero-logo .fi-3,  .hero-logo .fi-7,  .hero-logo .fi-11 { animation-name: drop-into-truck-l; }
@keyframes drop-into-truck-r {
  0%   { opacity: 0; transform: translateY(-280px) rotate(-15deg); }
  6%   { opacity: 1; }
  38%  { opacity: 1; transform: translateY(0) rotate(18deg); }
  40%  { transform: translateY(-4px) rotate(18deg); }
  43%  { transform: translateY(0) rotate(18deg); }
  85%  { opacity: 1; transform: translateY(0) rotate(18deg); }
  96%  { opacity: 0; }
  100% { opacity: 0; transform: translateY(0) rotate(18deg); }
}
@keyframes drop-into-truck-l {
  0%   { opacity: 0; transform: translateY(-280px) rotate(20deg); }
  6%   { opacity: 1; }
  38%  { opacity: 1; transform: translateY(0) rotate(-12deg); }
  40%  { transform: translateY(-4px) rotate(-12deg); }
  43%  { transform: translateY(0) rotate(-12deg); }
  85%  { opacity: 1; transform: translateY(0) rotate(-12deg); }
  96%  { opacity: 0; }
  100% { opacity: 0; transform: translateY(0) rotate(-12deg); }
}

/* ============================================
   SERVICE AREAS — REGIONAL GROUPING
   ============================================ */
.areas-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: left;
}
.region-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 24px 24px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.region-card:hover {
  border-color: rgba(255,138,30,0.35);
  background: linear-gradient(160deg, rgba(255,138,30,0.05), rgba(255,255,255,0.02));
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.region-card:hover::before { transform: scaleX(1); }
.region-card h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,138,30,0.18);
  font-weight: 800;
}
.region-card ul {
  list-style: none;
  margin: 0; padding: 0;
}
.region-card li {
  font-size: 14.5px;
  color: var(--gray-light);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.region-card li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.portfolio-head { text-align: center; }
.portfolio-head .section-lead { margin-left: auto; margin-right: auto; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,30,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.portfolio-card img,
.portfolio-card .pf-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.portfolio-card:hover img,
.portfolio-card:hover .pf-image { transform: scale(1.07); }

/* Placeholder shown until you drop in real images */
.portfolio-card .pf-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,138,30,0.18), transparent 55%),
    linear-gradient(160deg, rgba(255,138,30,0.08), rgba(20,20,24,0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.portfolio-card .pf-placeholder .pf-icon {
  font-size: 58px;
  opacity: 0.55;
  filter: grayscale(0.1);
}
.portfolio-card .pf-placeholder .pf-hint {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 45%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 22px;
  z-index: 2;
  pointer-events: none;
}
.portfolio-overlay .pf-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.portfolio-overlay h3 {
  font-size: 18px;
  color: var(--light);
  font-weight: 800;
  letter-spacing: 0.3px;
}

