/* ================================================================
   PottysPlus Newark Landing Page
   Matches: book.pottysplus.com/landing-template
   Colors: navy #0f172a, yellow-400 #facc15, slate-800 #1e293b
   ================================================================ */

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

:root {
  --navy:       #0f172a;
  --navy-mid:   #1e293b;
  --navy-light: #334155;
  --yellow:     #facc15;
  --yellow-dk:  #eab308;
  --amber:      #f59e0b;
  --amber-light:#fef3c7;
  --amber-bg:   #fffbeb;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;
  --green-500:  #22c55e;
  --radius:     0.5rem;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    to right,
    rgba(15,23,42,0.97) 48%,
    rgba(15,23,42,0.55) 72%,
    rgba(15,23,42,0.25) 100%
  ), url('/images/hero-photo.jpg') center 40% / cover no-repeat;
}
.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 72px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 640px;
  margin: 0 2rem;
}
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-h1 .city { color: var(--yellow); }
.hero-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--yellow);
  margin-bottom: 1.75rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
  white-space: nowrap;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--gray-900);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy-mid);
  padding: 0;
  border-bottom: 1px solid #2d3f55;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: normal;
  border-right: 1px solid #2d3f55;
  flex: 1;
  min-width: 0;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: #64748b; flex-shrink: 0; }

/* ── Info Section ── */
.info-section { padding: 64px 0; background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}

/* Map card */
.map-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.map-embed { width: 100%; height: 220px; display: block; border: none; }
.biz-card { padding: 1.25rem 1.25rem 1.5rem; background: var(--white); }
.biz-top { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.5rem; }
.biz-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.biz-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a73e8;
  background: #e8f0fe;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}
.biz-type { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.biz-stars {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.biz-rating { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.stars { display: flex; gap: 1px; }
.stars span { color: #f59e0b; font-size: 0.95rem; }
.biz-count { font-size: 0.8rem; color: var(--gray-500); }
.biz-details { display: flex; flex-direction: column; gap: 0.6rem; }
.biz-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.biz-row svg { flex-shrink: 0; margin-top: 1px; color: var(--gray-400); }

/* Info text column */
.info-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.info-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.info-text p:last-of-type { margin-bottom: 1.75rem; }

/* Occasions */
.occasions-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.occasion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gray-700);
  transition: color 0.18s;
}
.occasion-item:hover .occasion-icon { background: var(--gray-700); }
.occasion-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.18s;
}
.occasion-icon svg { width: 18px; height: 18px; }
.occasion-label { font-size: 0.72rem; font-weight: 500; text-align: center; }

/* ── Service Highlights ── */
.highlights-section {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.highlights-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.highlights-section .sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.highlight-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: border-color 0.18s, background 0.18s;
}
.highlight-card:hover { border-color: #fcd34d; background: #fffbeb; }
.highlight-icon {
  width: 44px; height: 44px;
  border-radius: 0.5rem;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.highlight-icon svg { width: 20px; height: 20px; }
.highlight-card h3 { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.highlight-card p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.55; }

/* ── How It Works ── */
.steps-section { padding: 72px 0; background: var(--gray-50); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 0.875rem;
}
.section-head h2 { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.section-head p { color: var(--gray-500); font-size: 0.95rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--gray-900);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gray-600);
}
.step-icon svg { width: 22px; height: 22px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

/* ── Why Choose Us ── */
.why-section { padding: 72px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: box-shadow 0.18s;
}
.why-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 0.625rem;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gray-600);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* ── CTA Banner ── */
.cta-section {
  background: var(--yellow);
  padding: 56px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.cta-section p {
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.btn-dark:hover { background: var(--gray-800); }
.btn-outline-dark {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-900);
}
.btn-outline-dark:hover { background: rgba(0,0,0,0.06); }

/* ── Testimonials ── */
.reviews-section { padding: 72px 0; background: var(--gray-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 0.875rem; }
.review-stars svg { width: 16px; height: 16px; fill: #facc15; color: #facc15; }
.review-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.reviewer-role { font-size: 0.75rem; color: var(--gray-500); }

/* ── FAQ ── */
.faq-section { padding: 72px 0; background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; border: 1px solid var(--gray-200); border-radius: 0.75rem; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q[aria-expanded="true"] { background: var(--gray-50); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  background: var(--gray-50);
}
.faq-a.open { display: block; }

/* Footer comes from /style.css (site-footer) */

/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid #2d3f55; }
  .trust-item:last-child { border-bottom: none; }
  .hero-inner { margin: 0 1rem; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
