/* ═══════════════════════════════════════════════════════
   PRIME DUMPSTER LLC — style.css
   Brand Colors:
     Navy:    #1B2A4A   Gold:   #D4A017
     Orange:  #E07B39   White:  #FFFFFF
     Charcoal:#333333   Footer: #0F1B2D
═══════════════════════════════════════════════════════ */

:root {
  --navy:      #1B2A4A;
  --navy-dark: #0F1B2D;
  --navy-mid:  #243558;
  --gold:      #D4A017;
  --gold-lt:   #E8BC3A;
  --gold-dk:   #B8880F;
  --orange:    #E07B39;
  --orange-dk: #C46220;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --light:     #EEF1F7;
  --charcoal:  #333333;
  --gray:      #666877;
  --gray-lt:   #9CA3AF;
  --border:    #DDE1EA;
  --display:   'Playfair Display', serif;
  --head:      'Oswald', sans-serif;
  --body:      'Nunito Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--charcoal); font-family: var(--body); font-size: 15px; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.82); text-align: center; padding: 10px 16px; font-size: 13px; font-weight: 600; }
.topbar a { color: var(--gold); font-weight: 800; }
.topbar a:hover { text-decoration: underline; }

/* ── NAVIGATION ── */
#navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 3px solid var(--gold); box-shadow: 0 2px 20px rgba(27,42,74,0.1); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; transition: background 0.3s; }
.nav-logo-wrap { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nl-prime { font-family: var(--head); font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: 3px; text-transform: uppercase; }
.nl-dumpster { font-family: var(--head); font-size: 12px; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; }
.nl-llc { font-size: 9px; color: var(--gray-lt); letter-spacing: 2px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--charcoal); font-size: 13px; font-weight: 700; padding: 8px 11px; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--navy); background: var(--light); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-quote { background: var(--navy); color: var(--white); font-family: var(--head); font-size: 15px; font-weight: 600; padding: 10px 20px; border-radius: 6px; transition: background 0.2s; }
.btn-quote:hover { background: var(--navy-mid); }
.btn-call { background: var(--orange); color: var(--white); font-family: var(--head); font-size: 15px; font-weight: 700; padding: 10px 20px; border-radius: 6px; box-shadow: 0 4px 14px rgba(224,123,57,0.35); transition: all 0.2s; white-space: nowrap; }
.btn-call:hover { background: var(--orange-dk); transform: translateY(-1px); }

.nav-hamburger { display: none; background: none; border: none; font-size: 24px; color: var(--navy); cursor: pointer; padding: 8px; }

/* ── GLOBAL BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy-dark); font-family: var(--head); font-size: 18px; font-weight: 700; padding: 14px 30px; border-radius: 6px; transition: all 0.2s; border: none; cursor: pointer; box-shadow: 0 6px 24px rgba(212,160,23,0.35); letter-spacing: 0.3px; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--head); font-size: 18px; font-weight: 600; padding: 13px 26px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── LAYOUT HELPERS ── */
.wrap { max-width: 1280px; margin: 0 auto; }
.sec { padding: 80px 40px; }
.sec-eyebrow { font-family: var(--head); font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.sec-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); display: block; }
.sec-title { font-family: var(--display); font-size: clamp(30px,4vw,50px); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.sec-title .gold { color: var(--gold-dk); }
.sec-sub { color: var(--gray); font-size: 15px; max-width: 560px; line-height: 1.8; margin-bottom: 52px; }

/* ── HERO ── */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 70px 40px 60px; min-height: 90vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 75% 50%, rgba(212,160,23,0.07) 0%, transparent 70%); }
.hero-stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(-55deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,160,23,0.14); border: 1px solid rgba(212,160,23,0.4); border-radius: 999px; padding: 6px 18px; font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-family: var(--display); font-size: clamp(40px,5.5vw,70px); font-weight: 900; line-height: 1.08; color: var(--white); margin-bottom: 10px; }
.hero h1 .gold { color: var(--gold); }
.hero h1 .outline { display: block; -webkit-text-stroke: 2px rgba(255,255,255,0.25); color: transparent; }
.hero-tagline { font-family: var(--head); font-size: 15px; font-weight: 600; color: var(--orange); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 22px; }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase; }
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.hero-dumpster { filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); }

/* HERO FORM */
.hero-form-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(212,160,23,0.3); border-top: 3px solid var(--gold); border-radius: 12px; padding: 24px 22px; backdrop-filter: blur(8px); }
.hero-form-box h3 { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.hero-form-box p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.qform { display: grid; gap: 10px; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qf { display: flex; flex-direction: column; gap: 4px; }
.qf label { font-size: 10px; font-weight: 800; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.qf input, .qf select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 5px; padding: 10px 12px; color: var(--white); font-family: var(--body); font-size: 13px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.qf input::placeholder { color: rgba(255,255,255,0.3); }
.qf input:focus, .qf select:focus { border-color: var(--gold); }
.qf select option { background: var(--navy); color: var(--white); }
.qbtn { background: var(--orange); color: var(--white); font-family: var(--head); font-size: 17px; font-weight: 700; padding: 13px; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; margin-top: 4px; }
.qbtn:hover { background: var(--orange-dk); }

/* ── TRUST RIBBON ── */
.trust-ribbon { background: var(--gold); padding: 18px 40px; }
.trust-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.t-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--navy-dark); }

/* ── BOROUGH TABS ── */
.borough-sec { background: var(--off-white); }
.btab-bar { display: flex; border-bottom: 2px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.btab-bar::-webkit-scrollbar { display: none; }
.btab { flex-shrink: 0; padding: 16px 28px; font-family: var(--head); font-size: 16px; font-weight: 600; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; white-space: nowrap; letter-spacing: 0.5px; }
.btab:hover { color: var(--navy); }
.btab.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 700; }

.b-panel { display: none; padding: 48px 0 20px; gap: 52px; }
.b-panel.active { display: grid; grid-template-columns: 1fr 1fr; }
.bp-title { font-family: var(--display); font-size: clamp(30px,4vw,46px); font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.bp-title span { color: var(--gold-dk); }
.bp-desc { color: var(--gray); font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.kw-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.kw { background: rgba(27,42,74,0.06); border: 1px solid rgba(27,42,74,0.15); border-radius: 4px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--navy); }
.bp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.bp-stat { background: var(--navy); border-radius: 8px; padding: 16px; text-align: center; }
.bv { font-family: var(--display); font-size: 26px; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.bl { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.bp-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--navy); border-radius: 12px; padding: 28px; box-shadow: 0 4px 24px rgba(27,42,74,0.08); }
.bp-card h4 { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.zip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 20px; }
.zc { background: var(--off-white); border: 1px solid var(--border); border-radius: 5px; padding: 8px 6px; text-align: center; }
.zcode { display: block; font-family: var(--head); font-size: 13px; font-weight: 700; color: var(--navy); }
.zname { font-size: 10px; color: var(--gray-lt); }
.bp-svc { list-style: none; }
.bp-svc li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--charcoal); display: flex; align-items: center; gap: 10px; }
.bp-svc li:last-child { border-bottom: none; }
.bp-svc li::before { content: '✓'; color: var(--gold-dk); font-weight: 800; font-size: 14px; flex-shrink: 0; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 44px 40px; }
.stats-inner { display: grid; grid-template-columns: repeat(5,1fr); text-align: center; gap: 0; }
.stat-item { padding: 10px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.sv { font-family: var(--display); font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.sl { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }

/* ── DUMPSTER SIZES ── */
.sizes-sec { background: var(--white); }
.sizes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.size-card { background: var(--white); border: 2px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
.size-card:hover { border-color: var(--navy); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(27,42,74,0.15); }
.size-card.popular { border-color: var(--gold); }
.pop-tag { position: absolute; top: 0; right: 0; background: var(--gold); color: var(--navy-dark); font-family: var(--head); font-size: 10px; font-weight: 700; padding: 5px 12px; border-bottom-left-radius: 8px; letter-spacing: 1px; text-transform: uppercase; }
.size-top { background: var(--navy); padding: 24px 20px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.size-svg { margin-bottom: 8px; }
.size-num { font-family: var(--display); font-size: 64px; font-weight: 900; color: var(--gold); line-height: 1; }
.size-yd { font-family: var(--head); font-size: 15px; color: rgba(255,255,255,0.55); letter-spacing: 2px; }
.size-dim { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; font-weight: 600; }
.size-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.size-cap { background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.cv { font-family: var(--head); font-size: 15px; font-weight: 700; color: var(--navy); }
.cl { font-size: 11px; color: var(--gray-lt); }
.size-ul { list-style: none; margin-bottom: 16px; flex: 1; }
.size-ul li { font-size: 12px; color: var(--gray); padding: 4px 0 4px 14px; position: relative; }
.size-ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 11px; }
.size-cta { display: block; background: var(--navy); color: var(--white); text-align: center; font-family: var(--head); font-size: 14px; font-weight: 700; padding: 13px; transition: background 0.2s; letter-spacing: 0.5px; }
.size-cta:hover { background: var(--gold-dk); color: var(--navy-dark); }

/* ── ABOUT ── */
.about-sec { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text p { color: var(--gray); font-size: 14px; line-height: 1.85; margin-bottom: 14px; }
.est-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--navy); border-radius: 8px; padding: 14px 22px; margin-top: 10px; }
.est-yr { font-family: var(--display); font-size: 28px; font-weight: 900; color: var(--gold); }
.est-txt { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; line-height: 1.5; }
.about-points { display: flex; flex-direction: column; gap: 14px; }
.apoint { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 8px; padding: 16px 18px; }
.ap-ico { font-size: 24px; flex-shrink: 0; }
.ap-title { font-weight: 800; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
.ap-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── SERVICES ── */
.services-sec { background: var(--off-white); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; transition: all 0.25s; border-top: 4px solid transparent; }
.svc-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(27,42,74,0.1); transform: translateY(-3px); }
.svc-ico { font-size: 40px; margin-bottom: 14px; display: block; }
.svc-card h4 { font-family: var(--head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.svc-list { list-style: none; }
.svc-list li { font-size: 13px; color: var(--charcoal); padding: 4px 0 4px 16px; position: relative; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dk); font-weight: 800; }

/* ── HOW IT WORKS ── */
.how-sec { background: var(--navy); padding: 80px 40px; }
.how-eyebrow { color: var(--gold); }
.how-eyebrow::before { background: var(--gold); }
.how-title { color: var(--white); }
.how-title .gold { color: var(--gold); }
.how-sub { color: rgba(255,255,255,0.5); margin-bottom: 56px; }
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.how-steps::after { content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg,var(--gold),rgba(212,160,23,0.1)); }
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 96px; height: 96px; border-radius: 50%; background: rgba(212,160,23,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--display); font-size: 34px; font-weight: 900; color: var(--gold); }
.step h4 { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.step p strong { color: var(--white); }

/* ── REVIEWS ── */
.reviews-sec { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rv { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 26px; transition: all 0.2s; }
.rv:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(27,42,74,0.08); }
.rv-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.rv-text { font-size: 14px; color: var(--charcoal); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.rv-foot { display: flex; align-items: center; gap: 12px; }
.rv-av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 17px; font-weight: 900; color: var(--gold); flex-shrink: 0; }
.rv-name { font-weight: 800; color: var(--navy); font-size: 14px; }
.rv-loc { font-size: 11px; color: var(--gray-lt); font-weight: 600; }
.rv-plat { margin-left: auto; font-size: 11px; color: var(--gray-lt); text-align: right; }

/* ── FAQ ── */
.faq-sec { background: var(--off-white); }
.faq-list { max-width: 780px; display: grid; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 15px; gap: 16px; transition: background 0.2s; }
.faq-q:hover { background: var(--off-white); }
.faq-icon { width: 28px; height: 28px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-sec { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-eyebrow { color: var(--gold); }
.contact-eyebrow::before { background: var(--gold); }
.contact-title { color: var(--white); }
.contact-title span { color: var(--gold); }
.contact-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75; margin-bottom: 28px; max-width: 420px; }
.cmethod { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 16px 20px; transition: all 0.2s; margin-bottom: 12px; }
.cmethod:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); }
.cmethod > span:first-child { font-size: 26px; flex-shrink: 0; }
.cm-lbl { font-size: 10px; color: var(--gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.cm-val { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.3; }

/* CONTACT FORM */
.contact-form { background: var(--white); border-radius: 14px; padding: 36px 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.contact-form h3 { font-family: var(--head); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.contact-form form { display: grid; gap: 14px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff { display: flex; flex-direction: column; gap: 5px; }
.ff label { font-size: 11px; font-weight: 800; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.ff input, .ff select, .ff textarea { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 6px; padding: 12px 14px; color: var(--charcoal); font-family: var(--body); font-size: 14px; outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--navy); }
.ff textarea { resize: vertical; min-height: 80px; }
.f-submit { background: var(--navy); color: var(--white); font-family: var(--head); font-size: 17px; font-weight: 700; padding: 15px; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; }
.f-submit:hover { background: var(--gold); color: var(--navy-dark); }
.form-note { text-align: center; font-size: 11px; color: var(--gray-lt); margin-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 60px 40px 28px; }
.foot-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-logo { margin-bottom: 16px; }
.fl-prime { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 3px; text-transform: uppercase; }
.fl-sub { font-family: var(--head); font-size: 10px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.8; margin-bottom: 16px; }
.foot-social { display: flex; gap: 8px; }
.soc { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 700; transition: all 0.2s; }
.soc:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.foot-col h5 { font-family: var(--head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 10px; }
.foot-col ul { list-style: none; display: grid; gap: 9px; }
.foot-col ul li a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.foot-col ul li a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.foot-legal { display: flex; gap: 16px; }
.foot-legal a { font-size: 12px; color: rgba(255,255,255,0.3); }
.foot-legal a:hover { color: var(--gold); }

/* ── SMS FLOAT ── */
.sms-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: var(--orange); color: var(--white); font-family: var(--head); font-size: 14px; font-weight: 700; padding: 13px 20px; border-radius: 50px; box-shadow: 0 8px 30px rgba(224,123,57,0.5); display: flex; align-items: center; gap: 8px; transition: all 0.2s; letter-spacing: 0.3px; }
.sms-float:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(224,123,57,0.6); }
.sms-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.4);} }

/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .sizes-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 540px; }
}

@media (max-width: 900px) {
  #navbar { padding: 0 16px; height: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--gold); padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .nav-cta .btn-quote { display: none; }

  .sec { padding: 52px 20px; }
  .hero { padding: 52px 20px 48px; min-height: auto; }
  .hero h1 { font-size: 44px; }
  .trust-ribbon { padding: 14px 20px; }
  .trust-inner { justify-content: center; gap: 12px; }

  .b-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .svc-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .f2 { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .qrow { grid-template-columns: 1fr; }
  .zip-grid { grid-template-columns: repeat(2,1fr); }
  .bp-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .sizes-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .sms-float { bottom: 16px; right: 16px; font-size: 13px; padding: 11px 16px; }
}
