@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --orange: #FF6200;
  --orange-dim: rgba(255,98,0,0.15);
  --gold: #FFB300;
  --gold-dim: rgba(255,179,0,0.12);
  --black: #090909;
  --charcoal: #111111;
  --card: #191919;
  --border: #252525;
  --border-lit: #333;
  --warm-white: #FAF7F2;
  --text-muted: #777;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --ease: 0.25s ease;
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex; align-items: baseline; gap: 0;
}
.nav-logo .j { color: var(--orange); }
.nav-logo .p { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: #999; text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: white; }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: #e05500 !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  width: 22px; height: 2px; background: white; display: block;
  transition: var(--ease);
}

/* ─── PAGE SHELL ─────────────────────────────────── */
.page { padding-top: 68px; }
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* ─── TYPE ───────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; }
h1 { font-size: clamp(3.2rem, 9vw, 6.5rem); font-weight: 900; }
h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h3 { font-size: 1.55rem; font-weight: 700; }

.gradient-text {
  background: linear-gradient(110deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: all var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #e55900; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,98,0,0.35); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #e0a000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 2rem;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 115%, rgba(255,98,0,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 75% 105%, rgba(255,179,0,0.18) 0%, transparent 50%),
    var(--black);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
/* Horizon line */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
  opacity: 0.6;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
}

.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.2rem; color: #bbb; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-trust {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: #aaa;
}
.trust-item .ti { font-size: 1.3rem; }
.trust-item strong { color: white; }

/* ─── SECTION HEADERS ────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 540px; font-size: 1rem; }

/* ─── HOW IT WORKS ───────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: all var(--ease);
}
.step-card:hover { border-color: var(--border-lit); transform: translateY(-4px); }

.step-num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 900;
  color: var(--orange); opacity: 0.09; line-height: 1; pointer-events: none;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ─── SERVICE CARDS ──────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--ease); cursor: default;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,98,0,0.08); }
.svc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; }
.svc-pill {
  display: inline-block; margin-top: 1rem;
  background: var(--orange-dim); color: var(--orange);
  border-radius: 100px; padding: 0.25rem 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}

/* ─── PRICING CARDS ──────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.25rem;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.pricing-card:hover { border-color: var(--border-lit); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--orange); background: linear-gradient(160deg, rgba(255,98,0,0.1) 0%, var(--card) 60%); }
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--orange); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px; text-align: center;
}
.pc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pc-tier { font-size: 0.75rem; color: #777; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pc-price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.pc-from { font-size: 0.7rem; color: #666; }
.pc-desc { font-size: 0.82rem; color: #888; margin-top: 0.75rem; line-height: 1.5; }

.pricing-note {
  margin-top: 2rem;
  background: var(--gold-dim); border: 1px solid rgba(255,179,0,0.2);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  font-size: 0.9rem; color: #ccc; line-height: 1.6;
}
.pricing-note strong { color: var(--gold); }

/* ─── QUOTE ESTIMATOR ────────────────────────────── */
.quote-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  margin-top: 3rem;
}
.quote-box h3 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.quote-box .sub { color: var(--text-muted); margin-bottom: 1.5rem; }
.quote-row { display: flex; gap: 1rem; align-items: flex-end; }
.quote-row textarea {
  flex: 1; min-height: 90px; resize: none;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: white;
  padding: 1rem; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--ease);
}
.quote-row textarea:focus { border-color: var(--orange); }
.quote-row textarea::placeholder { color: #555; }

.quote-result {
  display: none; margin-top: 1.5rem;
  background: rgba(255,179,0,0.06); border: 1px solid rgba(255,179,0,0.2);
  border-radius: var(--radius); padding: 1.5rem;
}
.quote-result.show { display: block; }
.quote-result h4 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.2rem; }
.quote-result p { color: #ccc; font-size: 0.9rem; line-height: 1.75; }

/* ─── REVIEWS ────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: #555; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.875rem; color: #aaa; line-height: 1.7; }

/* ─── STATS ──────────────────────────────────────── */
.stats-band {
  background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.82rem; color: #777; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── ECO BANNER ─────────────────────────────────── */
.eco-banner {
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--orange-dim) 100%);
  border: 1px solid rgba(255,179,0,0.2); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.eco-num { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.eco-label { color: #ccc; margin-top: 0.5rem; }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; font-weight: 600; gap: 1rem;
}
.faq-q .arrow { color: var(--orange); font-size: 1.3rem; transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 1.4rem; color: #999; font-size: 0.9rem; line-height: 1.75; }
.faq-a.ai-loading { color: #666; font-style: italic; }
.faq-item.open .faq-a { display: block; }

/* ─── COVERAGE MAP ───────────────────────────────── */
#map-container {
  height: 420px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}

.cities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 0.75rem; margin-top: 2rem;
}
.city-tag {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.6rem 1rem;
  text-align: center; font-size: 0.875rem;
  transition: all var(--ease); cursor: default;
}
.city-tag:hover { border-color: var(--orange); color: var(--orange); }

/* ─── TEAM ───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: white;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--border);
}
.team-card h3 { font-size: 1.5rem; }
.team-role { color: var(--orange); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 0.25rem 0 0.75rem; }
.team-card p { color: #999; font-size: 0.875rem; }

/* ─── CONTACT FORM ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact-info { padding-right: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: #999; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail .cd-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail .cd-label { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail .cd-value { font-weight: 600; }
.contact-detail a { color: var(--warm-white); text-decoration: none; }
.contact-detail a:hover { color: var(--orange); }

.booking-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.booking-form h3 { margin-bottom: 2rem; font-size: 1.8rem; }

.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.ff { display: flex; flex-direction: column; gap: 0.4rem; }
.ff.full { grid-column: 1 / -1; }
.ff label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #888; }
.ff input, .ff select, .ff textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: white;
  padding: 0.875rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--ease);
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--orange); }
.ff select option { background: #1a1a1a; }
.ff textarea { resize: vertical; min-height: 110px; }
.ff input::placeholder, .ff textarea::placeholder { color: #444; }

/* ─── JUNKBOT WIDGET ─────────────────────────────── */
#junkbot {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
}
#jb-bubble {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.75rem;
  box-shadow: 0 8px 32px rgba(255,98,0,0.45);
  border: 2px solid rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease-spring), box-shadow var(--ease);
  position: relative;
}
#jb-bubble:hover { transform: scale(1.1); box-shadow: 0 12px 42px rgba(255,98,0,0.55); }
#jb-bubble .jb-dot {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #4ade80; border: 2px solid var(--black);
}
#jb-panel {
  display: none; position: absolute;
  bottom: 80px; right: 0;
  width: 360px; max-height: 520px;
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  flex-direction: column; overflow: hidden;
}
#jb-panel.open { display: flex; }

.jb-head {
  background: linear-gradient(135deg, rgba(255,98,0,0.18), rgba(255,179,0,0.08));
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.jb-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.jb-head-info h4 { font-size: 0.95rem; font-weight: 600; }
.jb-head-info span { font-size: 0.75rem; color: #4ade80; }
.jb-close { margin-left: auto; background: none; border: none; color: #666; font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 2px; }
.jb-close:hover { color: white; }

.jb-msgs {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  scroll-behavior: smooth;
}
.jb-msgs::-webkit-scrollbar { width: 4px; }
.jb-msgs::-webkit-scrollbar-track { background: transparent; }
.jb-msgs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.jb-msg {
  max-width: 88%; padding: 0.75rem 1rem;
  border-radius: 12px; font-size: 0.86rem; line-height: 1.55; word-break: break-word;
}
.jb-msg.bot { background: rgba(255,255,255,0.06); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.jb-msg.user { background: var(--orange); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.jb-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.5rem;
}
.jb-chip {
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.35rem 0.8rem;
  font-size: 0.78rem; cursor: pointer; transition: all var(--ease);
  color: #ccc;
}
.jb-chip:hover { border-color: var(--orange); color: var(--orange); }

.jb-input-row {
  display: flex; gap: 0.5rem; padding: 0.75rem;
  border-top: 1px solid var(--border);
}
#jb-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; color: white;
  padding: 0.6rem 0.875rem; font-family: var(--font-body); font-size: 0.85rem;
  outline: none; resize: none; max-height: 80px;
}
#jb-input:focus { border-color: var(--orange); }
#jb-send {
  background: var(--orange); border: none; color: white;
  width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
  font-size: 1rem; flex-shrink: 0; transition: background var(--ease);
  display: flex; align-items: center; justify-content: center;
}
#jb-send:hover { background: #e05500; }

/* API Key Modal */
#api-modal {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.8); align-items: center; justify-content: center; padding: 2rem;
}
#api-modal.open { display: flex; }
.api-box {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; max-width: 480px; width: 100%;
}
.api-box h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.api-box .api-sub { color: #999; font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.6; }
.api-box input {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); color: white;
  padding: 0.875rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  margin-bottom: 1rem; outline: none;
}
.api-box input:focus { border-color: var(--orange); }
.api-note { font-size: 0.78rem; color: #555; margin-top: 0.75rem; line-height: 1.5; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--charcoal); border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { color: #666; font-size: 0.875rem; margin-top: 0.75rem; max-width: 250px; line-height: 1.65; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #888; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #666; text-decoration: none; font-size: 0.875rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: #444; font-size: 0.82rem; }
.jb-badge { display: flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.78rem; }

/* ─── BEFORE/AFTER GALLERY ───────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ba-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img {
  aspect-ratio: 1; background: #1f1f1f;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-direction: column; gap: 0.25rem; color: #555;
}
.ba-img span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #444; }
.ba-label {
  padding: 1rem; font-size: 0.875rem; color: #999;
  border-top: 1px solid var(--border);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--charcoal); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border); gap: 1rem; z-index: 999;
  }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: fit-content; }
  .hero { grid-template-columns: 1fr; padding: 6rem 2rem 2rem; }
  .hero-truck { display: none; }
  .fg { grid-template-columns: 1fr; }
  .ff.full { grid-column: 1; }
  #jb-panel { width: calc(100vw - 2rem); right: -0.5rem; }
  .quote-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  h2 { font-size: 2.2rem; }
}

/* ─── ICON SYSTEM ────────────────────────────────── */
.ico {
  display: inline-block;
  width: 1.1em; height: 1.1em;
  vertical-align: middle;
  stroke: currentColor; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; position: relative; top: -0.05em;
}
.ico-lg  { width: 1.75rem !important; height: 1.75rem !important; }
.ico-xl  { width: 2.5rem  !important; height: 2.5rem  !important; }
.ico-2xl { width: 3rem    !important; height: 3rem    !important; }
.ico-robot { width: 1.3em; height: 1.3em; }
.ico-star-fill { fill: var(--gold); stroke: none !important; width: 1.05em; height: 1.05em; top: -0.1em; }
.ico-arrow { width: 0.9em; height: 0.9em; stroke-width: 2.5; }
.trust-item .ico { width: 1.3rem; height: 1.3rem; color: var(--orange); }
.contact-detail .ico { width: 1.4rem; height: 1.4rem; color: var(--orange); flex-shrink: 0; }
.step-icon { margin-bottom: 1.25rem; }
.step-icon .ico { width: 2.5rem; height: 2.5rem; color: var(--orange); stroke-width: 1.2; display: block; }
.svc-icon { margin-bottom: 1rem; }
.svc-icon .ico { width: 2.5rem; height: 2.5rem; color: var(--orange); stroke-width: 1.2; display: block; }
.pc-icon .ico { width: 2rem; height: 2rem; color: var(--orange); display: inline-block; }
#jb-bubble .ico-robot { width: 1.6rem; height: 1.6rem; stroke: white; top: 0; }
.jb-avatar .ico-robot { width: 1.2rem; height: 1.2rem; stroke: white; top: 0; }
.jb-badge .ico { width: 1rem; height: 1rem; color: var(--gold); }
.arrow .ico { width: 1.1rem; height: 1.1rem; stroke-width: 2; transition: transform var(--ease); top: 0; }
.faq-item.open .faq-q .arrow .ico { transform: rotate(180deg); }
.jb-close .ico { width: 1rem; height: 1rem; top: 0; }
.btn .ico { width: 1rem; height: 1rem; top: -0.05em; stroke-width: 2.5; }
.stat-icon .ico { width: 1.5rem; height: 1.5rem; color: var(--orange); }
/* service-card icon context */
.service-card .svc-icon .ico { color: var(--orange); }

/* ─── UTILS ──────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
hr.section-line { border: none; border-top: 1px solid var(--border); margin: 0 2rem; }
