/* lawrence-small-business-design.css
   Page-specific styles for lawrence-small-business-design.html
   Calmer, ambient background treatment inspired by referral-offer styling.
*/

/* Page wrapper */
.lawrence-page { position: relative; }

/* Ambient Background Blobs (subtle, calm) */
.lawrence-page .ambient-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Content above background */
.lawrence-page header,
.lawrence-page main,
.lawrence-page footer {
  position: relative;
  z-index: 1;
}

/* Soft blobs (no hearts; calmer) */
.ambient-blobs .blob {
  position: absolute;
  width: var(--s, 520px);
  height: var(--s, 520px);
  opacity: var(--o, 0.14);
  filter: blur(var(--b, 34px));
  background: var(--c, var(--primary-blue));
  border-radius: 999px;
  animation: drift var(--d, 46s) ease-in-out infinite;
  transform: translate3d(0,0,0);
}

.blob-1 { --s: 640px; --c: rgba(168,213,226,0.55); --o: .18; --b: 44px; --d: 62s; top: -260px; left: -260px; }
.blob-2 { --s: 560px; --c: rgba(249,231,159,0.55); --o: .14; --b: 44px; --d: 70s; top: 8%; right: -240px; }
.blob-3 { --s: 700px; --c: rgba(232,93,117,0.35); --o: .12; --b: 54px; --d: 76s; bottom: -320px; right: -320px; }
.blob-4 { --s: 420px; --c: rgba(200,200,208,0.65); --o: .10; --b: 40px; --d: 58s; bottom: 10%; left: 8%; }

@keyframes drift {
  0%   { translate: 0 0; }
  50%  { translate: 0 -38px; }
  100% { translate: 0 0; }
}

/* Calmer hero: slightly shorter, tighter copy width, softer emphasis */
.lawrence-hero {
  min-height: calc(92vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 5% 4.5rem;
  position: relative;
}

.lawrence-hero .hero-content {
  text-align: center;
  max-width: 980px;
}

.lawrence-hero .hero-subtitle {
  margin-top: .25rem;
  opacity: 0.9;
}

.lawrence-hero .hero-description {
  max-width: 900px;
}

/* Local badge row */
.local-badges {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 0 auto 1.25rem;
}

.local-badges .badge {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--dark-text);
}

/* Local proof strip */
.local-proof {
  padding: 3.25rem 5%;
  background: rgba(168, 213, 226, 0.20);
}

.local-proof .proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.proof-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.proof-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.proof-card p { color: #666; line-height: 1.75; }

/* Local services intro tweaks */
.services.local-services {
  background: transparent;
}

/* Feature list section (simple cards) */
.local-features {
  padding: 6rem 5%;
  background: #fff;
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--light-bg);
  border-radius: 26px;
  padding: 2.2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.feature-card .kicker {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: .65rem;
}

.feature-card h3 { font-size: 1.35rem; margin-bottom: .65rem; }
.feature-card p { color: #666; line-height: 1.8; }

/* FAQ (simple accordion-like details) */
.local-faq {
  padding: 6rem 5%;
  background: var(--light-bg);
}

.faq-wrap {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--dark-text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: .85rem;
  color: #666;
  line-height: 1.85;
}

/* CTA band */
.local-cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, rgba(232,93,117,0.92) 0%, rgba(214,51,132,0.92) 100%);
  color: #fff;
  text-align: center;
}

.local-cta .cta-inner {
  max-width: 950px;
  margin: 0 auto;
}

.local-cta h2 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.25rem); margin-bottom: 1rem; }
.local-cta p { opacity: .95; font-size: 1.15rem; line-height: 1.8; max-width: 760px; margin: 0.5rem auto 2rem; }

/* Small note */
.small-note { font-size: .95rem; color: rgba(255,255,255,0.92); margin-top: 1.25rem; }

/* Responsive */
@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lawrence-hero { padding-top: 9rem; min-height: calc(88vh - 90px); }
  .ambient-blobs .blob { filter: blur(30px); }
  .blob-2, .blob-3 { display: none; } /* keep it calm and uncluttered on mobile */
}

/* =========================
   Local Contact Form (Lawrence landing)
   Styled to match the calmer "referral" aesthetic
   ========================= */

.local-contact {
  padding: 6rem 0;
  /* Pink background (calmer than full CTA band) */
  background: linear-gradient(135deg, rgba(232,93,117,0.92) 0%, rgba(255,107,107,0.88) 55%, rgba(249,231,159,0.35) 120%);
  color: #fff;
}

/* Ensure section header reads well on pink */
.local-contact .section-label { color: rgba(255,255,255,0.88); }
.local-contact .section-title { color: #fff; }
.local-contact .local-contact-subtitle { color: rgba(255,255,255,0.92); }

.local-contact-subtitle {
  max-width: 850px;
  margin: 0.75rem auto 0;
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.local-contact-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.local-contact-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.local-contact-card select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: #fff;
  appearance: none;
}

.local-contact-card select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(33, 102, 179, 0.16);
}

.form-fineprint {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
}

.form-fineprint a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.local-contact-side {
  display: grid;
  gap: 1.25rem;
}

.local-side-card {
  background: #fff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.05);
}

.local-side-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--dark-text);
}

.local-side-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.local-side-list {
  padding-left: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.local-side-list li { margin: 0.6rem 0; }
.local-side-list strong { color: var(--dark-text); }

.small-muted {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
  margin-top: 0.9rem;
}

@media (max-width: 900px) {
  .local-contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .local-contact-card { padding: 2rem; }
  .local-side-card { padding: 1.75rem; }
}
