/* ─────────────────────────────────────────────
   Superior Skip Bins – Theme CSS
   Fonts: Montserrat (via Google Fonts)
   Brand: Green #75BB1C | Navy #203051
───────────────────────────────────────────── */

:root {
  --green: #75BB1C;
  --green-dark: #5a9412;
  --navy: #203051;
  --navy-light: #2c4270;
  --light-bg: #f5f7f2;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  --border: #e0e5ed;
  --radius: 6px;
  --shadow-sm: 0 2px 12px rgba(32,48,81,.07);
  --shadow-md: 0 8px 32px rgba(32,48,81,.12);
  --shadow-lg: 0 16px 64px rgba(32,48,81,.16);
  --font: 'Montserrat', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #75BB1C;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
}

.site-header.scrolled {
  background: #65a518;
  box-shadow: 0 2px 28px rgba(0,0,0,.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.site-logo-text {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: none;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--transition);
}

.primary-nav a:hover { color: var(--navy); }

.primary-nav .nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.primary-nav .nav-cta:hover {
  background: #162340;
  transform: translateY(-1px);
}

.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: rgba(255,255,255,.7); }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(117,187,28,.4);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(117,187,28,.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(32,48,81,.88) 0%,
    rgba(32,48,81,.55) 50%,
    rgba(117,187,28,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(117,187,28,.2);
  border: 1px solid rgba(117,187,28,.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.4); opacity: .3; }
}

/* ── Trust badges ── */
.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 20px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 32px 40px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.stat { text-align: center; color: #fff; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ══════════════════════════════════════════
   SECTIONS: WHY / ABOUT / BINS
══════════════════════════════════════════ */
section { padding: 100px 40px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.5px;
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

.section-title.light { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
}

.section-sub.light { color: rgba(255,255,255,.7); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

/* ── Cards Grid ── */
.cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(117,187,28,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.card-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Why Section ── */
.why-section { background: var(--light-bg); }

/* ── About / Owner Section ── */
.about-section {
  background: #fff;
  padding: 100px 40px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  border: 4px solid #fff;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.about-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 4px;
}

.about-content .section-title { margin-bottom: 24px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(117,187,28,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 16px;
}

.about-feature-text strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--navy);
  margin-top: 8px;
}

/* ── Bin Sizes Section ── */
.bins-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.bins-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(117,187,28,.08) 0%, transparent 70%);
  pointer-events: none;
}

.bins-grid {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.bin-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 32px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.bin-card:hover {
  background: rgba(117,187,28,.18);
  border-color: var(--green);
  transform: translateY(-4px);
}

.bin-size {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.bin-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bin-label {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  line-height: 1.4;
}

.bins-visual {
  max-width: 700px;
  margin: 0 auto 48px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bins-visual img {
  width: 100%;
  opacity: .85;
}

.bins-note {
  text-align: center;
  background: rgba(117,187,28,.12);
  border: 1px solid rgba(117,187,28,.3);
  border-radius: 8px;
  padding: 18px 32px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.bins-cta { text-align: center; position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   CONTACT / QUOTE SECTION
══════════════════════════════════════════ */
.contact-section { background: var(--light-bg); }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 44px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(117,187,28,.15), transparent 60%);
  pointer-events: none;
}

.contact-info-box > * { position: relative; z-index: 1; }

.contact-box-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(117,187,28,.4);
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-row-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  background: rgba(117,187,28,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 4px;
}

.contact-row-val {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.contact-row-val a { color: rgba(255,255,255,.85); }
.contact-row-val a:hover { color: var(--green); }

.contact-social {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 8px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── Quote Form ── */
.quote-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
}

.form-label .req { color: #cc0000; }

.form-control {
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: #f8f9fb;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(117,187,28,.15);
  background: #fff;
}

textarea.form-control { resize: vertical; min-height: 100px; }

.select-wrap { position: relative; }

.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
  pointer-events: none;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.ssb-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}

.ssb-chk input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ssb-chk-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 2px solid #c0c8d8;
  border-radius: 3px;
  background: #fff;
  transition: all var(--transition);
  flex-shrink: 0;
}

.ssb-chk-box svg {
  display: none;
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ssb-chk.is-checked .ssb-chk-box {
  background: var(--green);
  border-color: var(--green);
}

.ssb-chk.is-checked .ssb-chk-box svg { display: block; }

.ssb-chk-text {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  user-select: none;
  line-height: 1.4;
}

/* ── Honeypot ── */
.hnp { display: none !important; }

/* Form message */
.form-message {
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(117,187,28,.12);
  border: 1px solid rgba(117,187,28,.4);
  color: #3d6a0a;
}
.form-message.error {
  display: block;
  background: rgba(200,0,0,.08);
  border: 1px solid rgba(200,0,0,.3);
  color: #a00000;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #75BB1C;
  color: rgba(255,255,255,.9);
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--navy); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #fff;
}

.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--navy);
}

.footer-contact-item .icon {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.footer-bottom p { color: rgba(255,255,255,.8); }
.footer-bottom a { color: rgba(255,255,255,.8); }
.footer-bottom a:hover { color: var(--navy); }

/* ══════════════════════════════════════════
   ORDER FLOW PAGE
══════════════════════════════════════════ */
.order-page {
  min-height: 100vh;
  background: var(--light-bg);
}

.order-header {
  background: var(--navy);
  padding: 112px 40px 40px; /* 72px header height + 40px breathing room */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(117,187,28,.2), transparent 60%);
}

.order-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.order-header h1 em { font-style: normal; color: var(--green); }

.order-header p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Progress Bar */
.order-progress {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.order-progress-inner {
  max-width: 800px;
  margin: 0 auto;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  cursor: default;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  transition: background var(--transition);
}

.progress-step.completed:not(:last-child)::after { background: var(--green); }

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}

.progress-step.active .step-circle {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(117,187,28,.25);
}

.progress-step.completed .step-circle {
  background: var(--green);
  color: #fff;
}

.step-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #aaa;
  text-align: center;
  line-height: 1.3;
}

.progress-step.active .step-label { color: var(--navy); }
.progress-step.completed .step-label { color: var(--green-dark); }

/* Order steps container */
.order-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.order-step { display: none; }
.order-step.active { display: block; animation: fadeUp .4s ease both; }

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── Step 1: Bin Estimator ── */
.estimator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.estimator-option {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
}

.estimator-option:hover {
  border-color: var(--green);
  background: rgba(117,187,28,.05);
}

.estimator-option.selected {
  border-color: var(--green);
  background: rgba(117,187,28,.08);
  box-shadow: 0 0 0 3px rgba(117,187,28,.2);
}

.estimator-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.estimator-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.estimator-desc { font-size: 11px; color: #888; line-height: 1.4; }

.recommendation-box {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  display: none;
  margin-bottom: 32px;
}

.recommendation-box.visible { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.rec-text { flex: 1; }
.rec-text p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.6; margin-top: 6px; }
.rec-text strong { font-size: 1.1rem; color: var(--green); }

/* Bin size selector */
.bin-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.bin-option {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
}

.bin-option:hover { border-color: var(--green); transform: translateY(-2px); }

.bin-option.selected {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(117,187,28,.4);
}

.bin-option-size {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.bin-option.selected .bin-option-size { color: #fff; }

.bin-option-unit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.bin-option.selected .bin-option-unit { color: rgba(255,255,255,.8); }

.bin-option-equiv {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

.bin-option.selected .bin-option-equiv { color: rgba(255,255,255,.85); }

/* ── Step 2: Address + Pricing ── */
.address-input-wrap {
  position: relative;
  margin-bottom: 24px;
}

.address-input-wrap input {
  padding-right: 120px;
}

.address-lookup-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.address-lookup-btn:hover { background: var(--green-dark); }
.address-lookup-btn:disabled { opacity: .6; cursor: not-allowed; }

.zone-result {
  display: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.zone-result.visible { display: block; animation: fadeUp .4s ease; }

.zone-result-header {
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.zone-badge {
  background: var(--green);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.price-display {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-top: none;
  padding: 24px;
}

.price-display .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.price-display .amount span { color: var(--green); }

.price-display .note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.price-display .ex-gst {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.call-for-quote {
  text-align: center;
  padding: 24px;
  background: rgba(117,187,28,.06);
  border: 1px solid rgba(117,187,28,.3);
  border-radius: 8px;
}

/* ── Step 4: Can/Can't ── */
.waste-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.waste-list {
  border-radius: 8px;
  overflow: hidden;
}

.waste-list-header {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.waste-list.accepted .waste-list-header {
  background: rgba(117,187,28,.15);
  color: #3d6a0a;
}

.waste-list.rejected .waste-list-header {
  background: rgba(220,53,69,.1);
  color: #a00000;
}

.waste-list-items {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.waste-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.waste-item:last-child { border-bottom: none; }

.waste-item-icon {
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Step 5: Residential vs Trade ── */
.type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.type-option {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.type-option:hover { border-color: var(--green); }

.type-option.selected {
  border-color: var(--green);
  background: rgba(117,187,28,.06);
  box-shadow: 0 0 0 3px rgba(117,187,28,.2);
}

.type-option-icon { font-size: 40px; margin-bottom: 12px; }
.type-option-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.type-option-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Trade form */
.trade-form {
  display: none;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 28px;
  margin-top: 20px;
  animation: fadeUp .3s ease;
}

.trade-form.visible { display: block; }

/* ── Step 6: Terms ── */
.terms-box {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.terms-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.terms-list li::before {
  content: '•';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Agree checkbox */
.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(117,187,28,.06);
  border: 2px solid rgba(117,187,28,.3);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.agree-check:hover { border-color: var(--green); }
.agree-check.checked { border-color: var(--green); background: rgba(117,187,28,.1); }

.agree-check-text { font-size: 13px; color: var(--navy); line-height: 1.5; font-weight: 500; }

/* ── Step 7: Payment ── */
.payment-summary {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-summary .summary-details { flex: 1; }
.payment-summary .summary-details p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }

.payment-summary .summary-price {
  text-align: right;
}

.payment-summary .summary-price .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.payment-summary .summary-price .gst {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

#stripe-card-element {
  background: #f8f9fb;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color var(--transition);
}

#stripe-card-element.focused {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(117,187,28,.15);
}

.card-error {
  color: #a00000;
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.stripe-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
  margin-top: 16px;
}

.stripe-badge::before {
  content: '🔒';
  font-size: 14px;
}

/* Demo mode notice */
.demo-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 13px;
  color: #856404;
  margin-bottom: 20px;
}

/* ── Step 8: Confirmation ── */
.confirmation-wrap {
  text-align: center;
  padding: 20px 0;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: rgba(117,187,28,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
}

.confirmation-ref {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  margin: 24px auto;
  max-width: 300px;
  border: 2px dashed var(--green);
}

.confirmation-details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
  text-align: left;
}

.conf-row {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.conf-row:last-child { border-bottom: none; }
.conf-label { font-weight: 700; color: var(--navy); min-width: 120px; flex-shrink: 0; }
.conf-value { color: var(--text-muted); }

/* Navigation Buttons */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}

.btn-back {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-next {
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(117,187,28,.4);
}

.btn-next:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-next:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

/* ══════════════════════════════════════════
   GENERIC PAGE
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 120px 40px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero h1 em { font-style: normal; color: var(--green); }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.page-content h2 { color: var(--navy); margin: 40px 0 16px; }
.page-content h3 { color: var(--navy); margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; }
.page-content ul { list-style: disc; padding-left: 24px; }
.page-content ul li { margin-bottom: 8px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 24px; }
  .site-header { padding: 0 24px; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .stat-divider { display: none; }
  .bins-grid { grid-template-columns: repeat(3, 1fr); }
  .bin-selector { grid-template-columns: repeat(2, 1fr); }
  .waste-lists { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: 1fr; }
  .step-card { padding: 32px 24px; }
  .order-progress { padding: 16px 20px; }
  .step-label { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .quote-form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero-title { letter-spacing: -1px; }
  .hero-badges { display: none; }
  .about-badge { right: 10px; bottom: -16px; }
}

@media (max-width: 480px) {
  .bins-grid { grid-template-columns: repeat(2, 1fr); }
  .bin-selector { grid-template-columns: repeat(2, 1fr); }
  .estimator-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .checkbox-group { grid-template-columns: 1fr; }
  .stats-inner { gap: 16px; }
  .payment-summary { flex-direction: column; text-align: center; }
  .payment-summary .summary-price { text-align: center; }
}

/* ── Loading spinner ── */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Tooltip ── */
.tooltip-wrap { position: relative; display: inline-flex; }
.tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.tooltip-wrap:hover .tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   BLOG / PAGE / 404 TEMPLATES
══════════════════════════════════════════════════════════ */
.ssb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ssb-page-main,
.ssb-blog-main {
  padding: 80px 0 100px;
  background: #f5f7f2;
  min-height: 60vh;
}

.ssb-page-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 3px solid #75BB1C;
}

.ssb-page-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #203051;
  letter-spacing: -0.5px;
}

.ssb-page-content,
.ssb-entry-content {
  background: #fff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(32,48,81,.07);
}

.ssb-entry-content h2,
.ssb-entry-content h3,
.ssb-entry-content h4 {
  color: #203051;
  margin: 1.5em 0 0.5em;
}

.ssb-entry-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1em;
}

.ssb-entry-content a {
  color: #75BB1C;
  font-weight: 600;
}

/* Blog grid */
.ssb-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.ssb-post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(32,48,81,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.ssb-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(32,48,81,.13);
}

.ssb-post-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ssb-post-card__body {
  padding: 28px;
}

.ssb-post-card__meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ssb-post-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #203051;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ssb-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.ssb-post-card__title a:hover { color: #75BB1C; }

.ssb-post-card__excerpt {
  font-size: .875rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ssb-btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.ssb-pagination {
  text-align: center;
  margin-top: 40px;
}

.ssb-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #e0e5ed;
  border-radius: 4px;
  color: #203051;
  font-weight: 700;
  text-decoration: none;
  margin: 0 4px;
  transition: all .2s ease;
}

.ssb-pagination .page-numbers.current,
.ssb-pagination .page-numbers:hover {
  background: #75BB1C;
  border-color: #75BB1C;
  color: #fff;
}

.ssb-no-posts {
  text-align: center;
  padding: 60px 24px;
  color: #666;
}

/* 404 */
.ssb-404-main {
  background: #f5f7f2;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.ssb-404-wrap {
  text-align: center;
  padding: 80px 24px;
}

.ssb-404-icon {
  margin-bottom: 24px;
}

.ssb-404-title {
  font-size: 8rem;
  font-weight: 900;
  color: #75BB1C;
  line-height: 1;
  letter-spacing: -4px;
}

.ssb-404-subtitle {
  font-size: 2rem;
  font-weight: 800;
  color: #203051;
  margin-bottom: 16px;
}

.ssb-404-message {
  font-size: 1rem;
  color: #666;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ssb-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ssb-btn--outline-navy {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid #203051;
  color: #203051;
  background: transparent;
  transition: all .25s ease;
}

.ssb-btn--outline-navy:hover {
  background: #203051;
  color: #fff;
  transform: translateY(-2px);
}

.ssb-404-contact {
  font-size: .875rem;
  color: #999;
}

.ssb-404-contact a {
  color: #75BB1C;
  font-weight: 600;
  text-decoration: none;
}

/* Fade-on-scroll */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Zone result badge */
.ssb-zone-badge {
  background: #fff;
  border: 2px solid #75BB1C;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.ssb-zone-badge--call {
  border-color: #e0a000;
  background: #fffbf0;
}

.ssb-zone-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #203051;
  opacity: .7;
}

.ssb-zone-drive {
  display: block;
  font-size: .875rem;
  color: #666;
  margin-top: 4px;
}

.ssb-zone-price-inc {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #203051;
  line-height: 1;
}

.ssb-zone-price-inc small {
  font-size: .875rem;
  font-weight: 500;
  color: #666;
}

.ssb-zone-price-ex {
  display: block;
  font-size: .8rem;
  color: #999;
  margin-top: 4px;
}

.ssb-zone-bin-confirm {
  width: 100%;
  font-size: .875rem;
  color: #666;
  border-top: 1px solid #e0e5ed;
  padding-top: 12px;
  margin-top: 4px;
}

/* Order confirm summary */
.ssb-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  gap: 16px;
  font-size: .9rem;
}

.ssb-confirm-row span {
  opacity: .75;
  flex-shrink: 0;
}

.ssb-confirm-row strong {
  text-align: right;
}

@media (max-width: 640px) {
  .ssb-page-content,
  .ssb-entry-content { padding: 24px; }
  .ssb-404-title { font-size: 5rem; }
  .ssb-zone-badge { flex-direction: column; }
}
