/* === JunkMan Jon $100 OFF Page Styling (Final Clean Version) === */
:root {
  --brand-green: #2AAD2A;
  --dark: #0b1721;
  --accent: #ffd36a;
}

/* --- Top Black Bar with Call Button --- */
.topbar {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  padding: 14px 0;
  margin: 0;
  position: relative;
  z-index: 999;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.topbar a.btn-outline {
  background: var(--brand-green);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.topbar a.btn-outline:hover {
  background: #18a018;
}

/* --- Keep Logo Visible --- */
header.site-header,
.site-logo,
.site-branding {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* --- Gradient Background for Hero Section --- */
.hero {
  background: linear-gradient(180deg, #f1fff7 0%, #ffffff 100%);
  position: relative;
  z-index: 0;
  padding: 40px 0;
  margin-top: 0 !important; /* fixed: remove negative offset */
}

/* --- Yellow “Limited-Time Offer” Pill --- */
.pill {
  background: var(--accent);
  color: #2b2200;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

/* --- Form Card --- */
.form-card {
  background: #fff;
  border: 1px solid #e7f3ea;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 18px;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--brand-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-outline {
  background: #fff;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline:hover {
  background: var(--brand-green);
  color: #fff;
}

/* --- General Typography & Link Styling --- */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark);
}
a {
  color: var(--brand-green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --- Fix Black Bar Cutoff --- */
.page-content,
.content-wrapper,
.site-content,
#content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}
.page-id-81998 .topbar {
  top: 0 !important;
  margin: 0 !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  z-index: 1000 !important;
}
.page-id-81998 .hero {
  margin-top: 0 !important;
}

/* --- Mobile Workiz Frame Height --- */
@media (max-width: 768px) {
  iframe[src*="online-booking.workiz.com"] {
    height: 900px !important;
  }
}
/* ===== MOBILE TOPBAR + HERO TWEAKS ===== */

/* Keep the bar from clipping rounded button corners */
.page-id-81998 .topbar {
  overflow: visible !important;
}

/* Prevent the call button text from wrapping on two lines */
.page-id-81998 .topbar a.btn-outline {
  white-space: nowrap !important;
}

/* Make the left text take available space, push the button to the right */
.page-id-81998 .topbar .wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.page-id-81998 .topbar .wrap > div:first-child {
  flex: 1 1 auto !important;     /* “Support Local • Family-Owned” */
  min-width: 0 !important;
}

/* Phone-specific refinements */
@media (max-width: 640px) {
  .page-id-81998 .topbar {
    padding: 12px 0 !important;
  }
  .page-id-81998 .topbar a.btn-outline {
    font-size: 14px !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  /* Give the hero a touch more space below the bar */
  .page-id-81998 .hero {
    padding-top: 28px !important;
  }

  /* Headline & badges scale for small screens */
  .page-id-81998 h1 {
    font-size: clamp(24px, 8vw, 36px) !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }
  .page-id-81998 .pill { font-size: 12px !important; }
  .page-id-81998 .badge { font-size: 12px !important; }
}

/* Tablet: a little more breathing room */
@media (min-width: 641px) and (max-width: 900px) {
  .page-id-81998 .topbar { padding: 14px 0 !important; }
  .page-id-81998 .topbar a.btn-outline {
    font-size: 15px !important;
    padding: 11px 14px !important;
  }
}