/* ============================================================
   PottysPlus — Stylesheet
   Brand: #C5D300 lime accent, #0f172a navy dark, #fff white
   Fonts: Poppins (headings) / Roboto (body)
   ============================================================ */

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

:root {
  --lime:       #C5D300;
  --lime-dark:  #a8b500;
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #263448;
  --mid:        #444444;
  --muted:      #888888;
  --border:     #e5e5e5;
  --bg:         #ffffff;
  --text:       #0f172a;
  --radius:     6px;
  --radius-lg:  10px;
  --max-w:      1240px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  border: 2px solid var(--lime);
}
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: #fff; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.nav-logo-text span:last-child {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-links a:hover { background: #f5f5f5; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { color: var(--lime-dark); }

.nav-quote-btn {
  background: var(--lime);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.nav-quote-btn:hover { background: var(--lime-dark); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
}
.mobile-nav-cta {
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  min-height: min(680px, calc(100vh - var(--nav-h)));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-content {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 64px 56px 64px 64px;
  position: relative;
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(197,211,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-value-props { font-size: clamp(18px, 2vw, 26px); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-subtitle--mobile { display: none; }

/* Mobile-only hero banner image */
.hero-mobile-banner {
  display: none;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    pointer-events: none;
  }
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

/* ── Trust / Stats Bar ── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: normal;
  min-width: 0;
}
.trust-item svg { color: var(--lime); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.2); font-size: 20px; }

/* ── Section intro pill ── */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-pill .dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.section-pill-white {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

/* ── Rentals Section ── */
.rentals-section {
  background: #f4f6f8;
  padding: 80px 0;
  color: var(--dark);
}
.rentals-section .section-head {
  text-align: center;
  margin-bottom: 48px;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA — double pulse on load */
@keyframes hero-pulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(197,211,0,0.55); }
  15%  { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(197,211,0,0);   }
  30%  { transform: scale(1);    box-shadow: 0 0 0 0   rgba(197,211,0,0);   }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(197,211,0,0);   }
}
.hero-cta-pulse {
  animation: hero-pulse 2s ease-out 1s infinite;
}
.hero-cta-pulse:hover,
.hero-cta-pulse:focus { animation: none; }

/* Rental category tabs */
.rental-tabs-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.rental-arrow {
  display: none; /* shown only on mobile */
}
.rental-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}
.rental-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: 1.5px solid rgba(0,0,0,0.15);
  color: rgba(15,23,42,0.55);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.rental-tab:hover { border-color: rgba(0,0,0,0.3); color: var(--dark); }
.rental-tab.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--dark);
}

.rental-panel { display: none; }
.rental-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.rental-panel-text h2 {
  margin-bottom: 14px;
}
.rental-panel-text p {
  color: rgba(15,23,42,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.rental-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.rental-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(15,23,42,0.7);
}
.rental-feature::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.rental-panel-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #dde1e7;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.25);
  font-size: 13px;
}
.rental-panel-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Products Grid ── */
.products-section {
  background: var(--dark);
  padding: 80px 0;
}
.products-section .section-head {
  text-align: center;
  margin-bottom: 48px;
}
.products-section .section-title { color: #fff; }
.products-section .section-sub { color: rgba(255,255,255,0.65); }
.products-section .section-pill {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }

.product-img {
  height: 220px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  padding: 12px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.product-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.product-body p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 4px;
}
.product-price-unit { font-size: 12px; font-weight: 400; color: var(--muted); }
.btn-book {
  display: block;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: var(--lime-dark); transform: translateY(-1px); }
.btn-view-product {
  display: block;
  padding: 12px 16px;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid #d0d5dd;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-view-product:hover { border-color: var(--dark); transform: translateY(-1px); }

/* ── Calculator ── */
.calculator-section {
  background: #fff;
  padding: 80px 0;
  color: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calculator-section .section-head {
  text-align: center;
  margin-bottom: 48px;
}
.calculator-section .section-title { color: var(--dark); }
.calculator-section .section-sub { color: var(--muted); }

.calc-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  background: #f1f2f3;
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
}
.calc-tab {
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.calc-tab.active { background: var(--dark); color: #fff; }
.calc-tab:not(.active):hover { color: var(--dark); }

.calc-panel { display: none; }
.calc-panel.active { display: block; }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.calc-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(17,17,17,0.12);
}
.calc-value {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.calc-value-label { font-size: 13px; color: var(--muted); }

.calc-result {
  background: var(--dark);
  border: none;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.calc-result-num {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-label { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.calc-result-note  { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 28px; }
.calc-result .btn  { width: 100%; justify-content: center; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--lime);
  padding: 72px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.cta-banner-text p { font-size: 16px; color: rgba(15,23,42,0.65); }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-dark {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark:hover { background: var(--dark-2); border-color: var(--dark-2); }
.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(15,23,42,0.4);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover { border-color: var(--dark); background: rgba(15,23,42,0.06); }

/* ── Footer ── */
.site-footer {
  background: #fff;
  color: var(--text);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo img { height: 44px; width: auto; }
.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.footer-contact a {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--lime-dark); }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark-2);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--dark-3);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lime-dark); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #aaa;
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--lime-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 32px; }
  .hero-image { min-height: 380px; }
  .hero-img-placeholder { min-height: 380px; }
  .rental-panel.active { grid-template-columns: 1fr; }
  .rental-panel-image { order: -1; aspect-ratio: 16/7; }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile map toggle — hidden on desktop, shown via 768px block below */
.mob-map-toggle { display: none; }

@media (max-width: 768px) {
  /* ── Container ── */
  .container { padding: 0 12px; }

  /* ── Section titles — vw-scaled so two-line breaks always hold ── */
  .section-title { font-size: clamp(22px, 6.5vw, 28px); }
  h2 { font-size: clamp(18px, 5.5vw, 24px); }
  h3 { font-size: clamp(15px, 4.5vw, 19px); }

  /* ── Location map panel: hidden by default, shown inline when toggled ── */
  .locations-map-panel { display: none; }
  .locations-map-panel.mob-map-inline {
    display: block;
    height: 200px;
    border-bottom: 1px solid var(--border);
  }

  /* ── Show Map toggle button ── */
  .mob-map-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--lime-dark);
    background: #f6fac4;
    border: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s;
  }
  .mob-map-toggle:hover { background: #eef5a0; }
  .mob-map-toggle[aria-expanded="true"] { background: #eef5a0; }

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* ── Hero ── */
  .hero-content { padding: 0; flex-direction: column; align-items: stretch; }
  .hero-inner { padding: 20px 20px 40px; }
  .hero-image { display: none; }                 /* hide on mobile */
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; white-space: nowrap; text-align: center; }
  .btn,
  .btn-dark,
  .btn-ghost-dark { font-size: clamp(12px, 3.6vw, 15px); padding: 14px 20px; white-space: nowrap; }
  .hero-subtitle--desktop { display: none; }
  .hero-subtitle--mobile { display: block; }
  .hero-title       { font-size: clamp(19px, 7vw, 36px); white-space: nowrap; }
  .hero-value-props { font-size: clamp(13px, 3.8vw, 18px); }

  /* Mobile hero banner */
  .hero-mobile-banner {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .hero-mobile-banner img {
    display: block;
    width: 100%;
    height: clamp(130px, 38vw, 180px);
    object-fit: cover;
    object-position: center 50%;
  }
  .hero-mobile-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15,23,42,0.35) 0%,
      rgba(15,23,42,0.45) 40%,
      rgba(15,23,42,0.85) 75%,
      rgba(15,23,42,1)    100%
    );
  }

  /* ── Trust bar ── */
  .trust-bar .container {
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
  }
  .trust-item { font-size: 11px; gap: 6px; white-space: nowrap; }
  .trust-item svg { width: 14px; height: 14px; }
  .trust-sep { display: none; }

  /* ── Rental tabs — horizontal scroll, no wrap ── */
  .rental-tabs-wrap {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 28px;
    gap: 0;
    align-items: center;
  }
  .rental-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 10px 6px;
    scrollbar-width: none;
    margin: 0;
  }
  .rental-tabs::-webkit-scrollbar { display: none; }
  .rental-tab { flex: 0 0 calc((100vw - 92px) / 2); padding: 7px 10px; font-size: 12px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* ── Prev / next arrows ── */
  .rental-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: opacity 0.18s, background 0.18s;
    z-index: 1;
  }
  .rental-arrow:active { background: var(--lime-dark); }

  /* ── Rental panel buttons — full width ── */
  .rental-panel-text .btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(12px, 3.6vw, 15px);
    padding: 14px 20px;
  }

  /* ── CTA banner ── */
  .cta-banner .container { flex-direction: column; gap: 16px; }
  .cta-banner-actions { width: 100%; flex-direction: column; gap: 10px; }
  .cta-banner-actions a, .cta-banner-actions button {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(12px, 3.6vw, 15px);
    padding: 14px 20px;
  }

  /* ── Locations — single column on mobile ── */
  .locations-split {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 100%;
  }
  .locations-map-panel { height: 260px; }
  .locations-list-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    max-height: 560px;
  }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr 1fr; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  /* ── All generic .btn buttons full-width ── */
  .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    font-size: clamp(12px, 3.8vw, 15px);
    padding: 13px 16px;
  }

  /* ── Hero tighter padding ── */
  .hero-content { padding: 0; }
  .hero-inner { padding: 16px 16px 32px; }

  /* ── Products single column ── */
  .products-grid { grid-template-columns: 1fr; }

  /* ── Product image shorter on mobile ── */
  .product-img { height: 160px; }

  /* ── Calculator ── */
  .calc-tabs { width: 100%; }
  .calc-tab { flex: 1; padding: 10px 12px; font-size: 13px; }
  .calc-result-num { font-size: 56px; }
  .calc-result .btn { width: 100%; }
}

/* ── PSAI Membership Banner ── */
.psai-banner {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 24px;
  text-align: center;
}
.psai-banner p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.psai-banner strong { color: rgba(255,255,255,0.65); font-weight: 600; }

/* ── Location Directory ── */
.locations-section {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border);
}
.locations-header {
  text-align: center;
  padding-bottom: 40px;
}

/* Panel branded header */
.loc-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--dark);
  flex-shrink: 0;
}
.loc-panel-logo { width: 52px; height: auto; object-fit: contain; }
.loc-panel-meta { display: flex; flex-direction: column; gap: 2px; }
.loc-panel-meta strong { font-size: 13px; font-weight: 700; color: #fff; }
.loc-panel-meta span { font-size: 11px; color: rgba(255,255,255,0.5); }

/* Split panel */
.locations-split {
  display: grid;
  grid-template-columns: 1fr 470px;
  height: 620px;
  border: 1px solid var(--border);
  max-width: 85%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Map */
.locations-map-panel { position: relative; }
#locations-map { width: 100%; height: 100%; z-index: 0; }

/* Leaflet marker & popup */
.loc-marker {
  width: 14px; height: 14px;
  background: var(--lime-dark);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: transform 0.15s;
}
.loc-marker--active {
  width: 18px; height: 18px;
  background: var(--dark);
  border-color: var(--lime);
  transform: scale(1.3);
}
.loc-popup { font-family: 'Roboto', sans-serif; min-width: 180px; }
.loc-popup strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.loc-popup span { display: block; font-size: 12px; color: var(--muted); }
.loc-popup-serve { font-size: 11px; color: var(--mid); margin-bottom: 8px; }
.loc-popup-phone { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.loc-popup-hours { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.loc-popup-btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--radius);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.loc-popup-btn:hover { background: var(--lime-dark); }
.leaflet-popup-content-wrapper { border-radius: var(--radius-lg) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important; }
.leaflet-popup-content { margin: 14px 16px !important; }

/* List panel */
.locations-list-panel {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}

/* Search */
.locations-search-wrap {
  position: relative;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.loc-search-icon {
  position: absolute;
  left: 28px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.loc-search-input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #f8f8f8;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.loc-search-input:focus { border-color: var(--lime-dark); background: #fff; }
.loc-search-input::placeholder { color: var(--muted); }

/* Suggestions dropdown */
.loc-suggestions {
  position: absolute;
  top: calc(100% - 2px);
  left: 16px; right: 16px;
  background: #fff;
  border: 1.5px solid var(--lime-dark);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  list-style: none;
  z-index: 50;
  overflow: hidden;
}
.loc-suggestions li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.1s;
}
.loc-suggestions li svg { color: var(--lime-dark); flex-shrink: 0; }
.loc-suggestions li:hover { background: #f9fce0; }
.sug-city { font-weight: 600; }
.sug-county { color: var(--muted); font-size: 12px; margin-left: auto; }

/* Count bar */
.loc-count {
  padding: 7px 16px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
  flex-shrink: 0;
}
.loc-count strong { color: var(--dark); }

/* Scrollable list */
.locations-scroll { flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.locations-scroll::-webkit-scrollbar { width: 4px; }
.locations-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Region label — sticky */
.loc-group-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 2;
}
.loc-group-label svg { color: var(--lime-dark); }
.loc-list { list-style: none; }

/* Location row */
.loc-item { border-bottom: 1px solid var(--border); }
.loc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px 13px 13px;
  color: var(--text);
  border-left: 3px solid rgba(197,211,0,0.25);
  transition: background 0.12s, border-color 0.12s;
  cursor: pointer;
}
.loc-row:hover {
  background: #f6fac4;
  border-left-color: var(--lime);
}
.loc-item--active .loc-row {
  background: #eef5a0;
  border-left-color: var(--lime-dark);
}

.loc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.loc-city-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.loc-county { font-size: 11px; color: var(--muted); font-weight: 400; display: block; }
/* County hidden in list rows — stays in HTML for SEO, visible in map popups */
.loc-row .loc-county { display: none; }

/* ── Breadcrumb navigation (city + hub pages) ─────────── */
.page-breadcrumb {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 12.5px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: var(--muted);
}
.breadcrumb-list li + li::before {
  content: '/';
  padding: 0 8px;
  color: var(--border);
}
.breadcrumb-list a {
  color: var(--lime-dark);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li[aria-current="page"] {
  color: var(--dark);
  font-weight: 600;
}

/* City name + verified badge row */
.loc-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.loc-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: #1a73e8;
  background: #e8f0fe;
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Region dividers (North / Central / South Jersey) removed from view */
.loc-group-label { display: none; }

.loc-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2px;
}
.loc-phone { font-size: 11px; color: var(--mid); font-weight: 500; white-space: nowrap; }
.loc-phone::after { content: ' · '; color: var(--border-dark, #ccc); font-weight: 400; margin: 0 2px; }
.loc-hours { font-size: 11px; color: var(--muted); white-space: nowrap; }
.mob-brk { display: none; }

/* CTA button per row */
.loc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: var(--lime);
  color: var(--dark);
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.loc-cta-btn:hover { background: var(--lime-dark); }

/* No results */
.loc-no-results {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  font-size: 13px;
  color: var(--muted);
}
.loc-no-results a { color: var(--dark); font-weight: 600; text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
  .locations-split { grid-template-columns: 1fr; height: auto; }
  .locations-map-panel { height: 320px; }
  .locations-list-panel { border-left: none; border-top: 1px solid var(--border); max-height: 560px; }
}
@media (max-width: 600px) {
  .locations-map-panel { height: 240px; }
  .loc-cta { display: none; }
}

@media (max-width: 768px) {
  /* Stack each location row vertically */
  .loc-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 12px 12px 10px;
  }

  /* Let the city name show in full — no truncation */
  .loc-city-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  /* Stack phone + hours on separate lines, left-aligned */
  .loc-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  /* Allow hours to wrap naturally, break at Sat/Sun */
  .loc-hours { white-space: normal; }
  .mob-brk { display: block; }

  /* Remove the inline separator dot after phone on mobile */
  .loc-phone::after { content: ''; }

  /* Button full-width below the info */
  .loc-cta-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    font-size: 12px;
    margin-top: 4px;
  }
}
