/* ═══════════════════════════════════════════
   JUNK BROS OC — Global Stylesheet
   junkbrosoc.com
═══════════════════════════════════════════ */

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

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

:root {
  --navy:      #0d1b3e;
  --navy-mid:  #1a2f6b;
  --red:       #c0182a;
  --red-dark:  #9b0f1f;
  --gold:      #f5c518;
  --white:     #ffffff;
  --off-white: #f4f5f7;
  --gray:      #6b7280;
  --gray-lt:   #9ca3af;
  --light:     #e5e7eb;
  --text:      #1a1a2e;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,24,42,.35); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #e0b010; transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.2rem; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--navy); line-height: 1.05; text-transform: uppercase;
}
.section-title span { color: var(--red); }
.section-sub {
  color: var(--gray); line-height: 1.7; margin-top: 12px;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── TOP BAR ── */
.topbar { background: rgba(13,27,62,.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 8px 20px; }
.topbar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar, .topbar a { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600; text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.pill { background: var(--red); padding: 3px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: #fff; }
.pill-gold { background: var(--gold); color: var(--navy); }

/* ── NAV ── */
nav.site-nav {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 999;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 54px; width: auto; }
.nav-logo-fallback {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1.1;
}
.nav-logo-fallback small { color: var(--red); font-size: .65rem; display: block; letter-spacing: .1em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; font-weight: 700;
  letter-spacing: .05em; color: var(--navy); text-decoration: none; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: rgba(192,24,42,.07); }
.nav-phone {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900;
  color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: var(--navy); flex-direction: column; padding: 90px 32px 40px;
  gap: 0; overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; color: rgba(255,255,255,.85); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s;
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 18px; right: 20px; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── SITE BACKGROUND VIDEO (fixed behind entire page, all pages) ── */
.site-bg-video { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.site-bg-video video {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  object-fit: cover; transform: translate(-50%, -50%);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, rgba(13,27,62,.62) 0%, rgba(26,47,107,.55) 60%, rgba(13,27,62,.65) 100%);
  padding: 70px 20px 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: 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.03'%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/g%3E%3C/svg%3E");
}
.page-hero-accent {
  position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,24,42,.2) 0%, transparent 70%); pointer-events: none;
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.55);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 14px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.65; max-width: 600px; }
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── TRUST BAR ── */
.trust-bar { background: rgba(192,24,42,.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 16px 20px; }
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: .95rem;
  font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.25); }

/* ── SECTION WRAPPERS ── */
.section-white  { padding: 90px 20px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.section-gray   { padding: 90px 20px; background: rgba(244,245,247,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.section-navy   { padding: 90px 20px; background: rgba(13,27,62,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.section-header { margin-bottom: 52px; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: 14px; padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07); transition: all .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem;
  font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 10px;
}
.card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(192,24,42,.88) 0%, rgba(155,15,31,.9) 100%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 72px 20px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff; text-decoration: none; display: block; margin-bottom: 30px;
}
.cta-phone:hover { color: var(--gold); }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PRICING TABLE ── */
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px; border-radius: 10px; gap: 16px;
  transition: all .2s; cursor: default;
}
.price-row:hover { background: rgba(255,255,255,.13); transform: translateX(5px); }
.price-row-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em;
}
.price-row-label small { display: block; font-size: .75rem; font-weight: 400; color: rgba(255,255,255,.5); text-transform: none; margin-top: 2px; letter-spacing: 0; }
.price-icon { font-size: 1.4rem; flex-shrink: 0; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--gold); white-space: nowrap; }
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

/* ── FLOAT CALL ── */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 9997;
  background: var(--red); color: #fff; padding: 14px 22px; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900;
  text-decoration: none; box-shadow: 0 6px 30px rgba(192,24,42,.5);
  animation: pulse 2.5s infinite; transition: all .2s;
}
.float-call:hover { background: var(--red-dark); transform: scale(1.05); animation: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 30px rgba(192,24,42,.5); }
  50%      { box-shadow: 0 6px 54px rgba(192,24,42,.78); }
}

/* ── FOOTER ── */
footer.site-footer { background: rgba(13,27,62,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; padding: 64px 20px 28px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.7; margin: 14px 0 22px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: .85rem; font-weight: 700;
  transition: all .2s;
}
.social-btn:hover { background: var(--red); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900; color: var(--red); text-transform: uppercase; letter-spacing: .04em; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--light); padding: 20px 0; }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800;
  color: var(--navy); text-transform: uppercase; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}
.faq-q .arrow { font-size: 1.2rem; transition: transform .3s; color: var(--red); flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { font-size: .9rem; color: var(--gray); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a.open { max-height: 400px; padding-top: 12px; }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--light);
  border-radius: 8px; font-family: 'Barlow', sans-serif; font-size: .95rem;
  color: var(--text); outline: none; transition: border-color .2s; background: #fff;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { background: #d1fae5; border: 2px solid #10b981; color: #065f46; padding: 18px 20px; border-radius: 10px; font-weight: 600; display: none; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section-white, .section-gray, .section-navy { padding: 60px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}
@media (max-width: 480px) {
  .float-call .float-label { display: none; }
  .float-call { padding: 15px; border-radius: 50%; }
  .page-hero { padding: 50px 20px 44px; }
}
