:root {
  --bg: #08090b;
  --panel: rgba(18, 20, 24, .88);
  --panel-2: rgba(26, 29, 34, .92);
  --text: #f6f7f9;
  --muted: #b8bec8;
  --line: rgba(255,255,255,.12);
  --accent: #e53935;
  --accent-2: #ff5a52;
  --shadow: 0 20px 55px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  align-items: center;
  background: url("assets/hero-truck-dog.jpg") center 58% / cover no-repeat;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.24) 100%),
              linear-gradient(0deg, rgba(8,9,11,.68) 0%, transparent 45%);
  z-index: -1;
}
.hero-content { padding: 120px 0 100px; max-width: 1120px; }
.hero-content h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-content p { max-width: 650px; margin: 0 0 32px; color: #e6e9ed; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .78rem; color: #ff7770; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 10px 28px rgba(229,57,53,.28); }
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary { border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.28); backdrop-filter: blur(8px); }

.section { padding: 88px 0; }
.section-dark { background: #0b0d10; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .info-card h2, .cta-card h2 { margin: 6px 0 0; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; letter-spacing: -.035em; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.service-card.featured { border-color: rgba(229,57,53,.6); box-shadow: 0 20px 55px rgba(229,57,53,.09); }
.package-badge { display: inline-block; margin-left: 8px; padding: 4px 9px; border-radius: 999px; font-size: .68rem; line-height: 1; letter-spacing: .08em; font-weight: 800; vertical-align: middle; white-space: nowrap; }
.package-badge.best-value { color: #fff; background: var(--accent); box-shadow: 0 5px 14px rgba(229,57,53,.22); }
.package-badge.premium { color: #fff; border: 1px solid rgba(229,57,53,.7); background: rgba(229,57,53,.14); }
.service-topline { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.service-card h3 { margin: 0; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-card .service-description { margin-bottom: 18px; color: #f2f3f5; }
.service-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.service-features li { position: relative; padding-left: 24px; color: var(--muted); line-height: 1.45; }
.service-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; font-weight: 800; }
.service-features strong { color: #fff; }
.price { font-size: 1.6rem; font-weight: 800; color: #fff; }
.size-note { margin: 22px 0 0; color: var(--muted); text-align: center; }

.gallery-section {
  background: linear-gradient(rgba(8,9,11,.9), rgba(8,9,11,.9)), url("assets/hero-truck-dog.jpg") center / cover fixed;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-grid img { height: 360px; object-fit: cover; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow); }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); box-shadow: var(--shadow); }
.info-card h2 { margin-bottom: 22px; font-size: 2rem; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: #e8eaed; }
.price-list small { color: var(--muted); }
.price-list strong { white-space: nowrap; font-size: 1.1rem; }
.fine-print { margin: 18px 0 0; color: var(--muted); font-size: .92rem; }

.cta-section {
  position: relative;
  background: url("assets/hero-truck-dog.jpg") center 58% / cover no-repeat;
}
.cta-section::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.73); }
.cta-card { position: relative; text-align: center; padding: 70px 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(5,6,8,.58); backdrop-filter: blur(10px); }
.cta-card p { color: #d3d7dd; font-size: 1.1rem; }
.phone-note { opacity: .65; font-size: .78rem !important; margin-top: 14px; }
code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 6px; }

footer { border-top: 1px solid var(--line); background: #050607; padding: 28px 0 90px; color: #9fa6b2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-inner p { margin: 0; }
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(0,0,0,.4);
}

@media (max-width: 820px) {
  .hero { min-height: 78vh; background-position: 56% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,0,0,.84), rgba(0,0,0,.38) 65%, rgba(0,0,0,.25)); }
  .hero-content { align-self: end; padding-bottom: 70px; }
  .service-grid, .two-column { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { height: 290px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .hero-content h1 { font-size: 3.2rem; }
  .service-card, .info-card { padding: 22px; }
  .service-topline { align-items: flex-start; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}


.pricing-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.service-size-pricing,
.service-addons { margin: 0; max-width: none; }
.service-size-pricing h3,
.service-addons h3 { margin: 0 0 8px; font-size: 1.35rem; }

.contact-qr-grid {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
  gap: 18px;
}
.contact-qr-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  text-align: center;
}
.contact-qr-card img {
  width: 142px;
  height: 142px;
  margin: 0 auto 10px;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}
.contact-qr-card strong { display: block; font-size: 1.1rem; }
.contact-qr-card span { display: block; color: var(--muted); font-size: .86rem; }
.contact-qr-card p { margin: 4px 0 0; font-size: .92rem; color: #fff; }
.qr-help { margin: 14px 0 0 !important; font-size: .86rem !important; color: var(--muted) !important; }

@media (max-width: 820px) {
  .pricing-pair { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .contact-qr-grid { grid-template-columns: 1fr; }
}


.pricing-disclaimer {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}
.price sup {
  margin-left: 2px;
  font-size: .55em;
  vertical-align: super;
}
