@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Profile page root */
.lp {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f6f8;
  padding-bottom: 60px;
}

.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 16px;
  align-items: start;
}

.lp-main {}

.lp-sidebar {
  position: sticky;
  top: 84px;
}

/* Profile header card */
.lp-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lp-header-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #e8eaed;
  flex-shrink: 0;
  background: #f0f0f0;
}

.lp-header-badge {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 100px;
  height: auto;
}

.lp-header-info {
  flex: 1;
  min-width: 0;
}

.lp-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-verified-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #1a7f37;
  background: #dafbe1;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-verified-inline i {
  font-size: 11px;
}

.lp-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.lp-open-badge {
  font-size: 13px;
  font-weight: 600;
  color: #1a7f37;
}

.lp-closed-badge {
  font-size: 13px;
  font-weight: 600;
  color: #cf222e;
}

.lp-closes-at {
  font-size: 12px;
  color: #6b7280;
}

.lp-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #57606a;
  margin-top: 6px;
  flex-wrap: wrap;
}

.lp-meta i {
  color: #9ca3af;
  font-size: 12px;
}

.lp-meta-dot {
  color: #d1d5db;
}

.lp-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.lp-stars {
  display: flex;
  gap: 1px;
}

.lp-stars i {
  color: #f59e0b;
  font-size: 13px;
}

.lp-stars i.empty {
  color: #d1d5db;
}

.lp-rating-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-left: 2px;
}

.lp-rating-count {
  font-size: 13px;
  color: #6b7280;
}

.lp-rating-count a {
  color: #6b7280;
  text-decoration: none;
}

.lp-rating-count a:hover {
  text-decoration: underline;
}

/* Action buttons */
.lp-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.lp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #1a1a1a;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.lp-action-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #1a1a1a;
  text-decoration: none;
}

.lp-action-btn i {
  font-size: 14px;
}

.lp-action-btn.primary {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}

.lp-action-btn.primary:hover {
  background: #1648b8;
  border-color: #1648b8;
  color: #fff;
}

/* Section card */
.lp-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  animation: lpFadeIn 0.35s ease both;
}

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

.lp-card-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 16px;
}

.lp-card-heading {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

/* About / why choose */
.lp-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.lp-about-text .read-more-toggle {
  color: #1a56db;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

/* Trust badges */
.lp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.lp-trust-badge.green {
  background: #dafbe1;
  color: #1a7f37;
}

.lp-trust-badge.blue {
  background: #ddf4ff;
  color: #0969da;
}

.lp-trust-badge.amber {
  background: #fff8c5;
  color: #9a6700;
}

.lp-trust-badge i {
  font-size: 12px;
}

/* Service chips */
.lp-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
  transition: all 0.15s ease;
}

.lp-service-chip:hover {
  background: #e8eaed;
}

.lp-service-chip i {
  font-size: 11px;
  color: #9ca3af;
}

.lp-trenchless-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-trenchless-note i {
  font-size: 10px;
}

/* Cost range */
.lp-cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.lp-cost-item {
  text-align: left;
}

.lp-cost-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 500;
}

.lp-cost-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.lp-cost-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 14px;
  line-height: 1.5;
}

/* Business hours */
.lp-hours-table {
  width: 100%;
}

.lp-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}

.lp-hours-row:last-child {
  border-bottom: none;
}

.lp-hours-day {
  font-weight: 600;
  color: #1a1a1a;
}

.lp-hours-day.today {
  color: #1a56db;
}

.lp-hours-time {
  color: #374151;
  font-weight: 500;
}

.lp-hours-closed {
  color: #9ca3af;
}

/* Address row */
.lp-address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  margin-top: 4px;
}

.lp-address-row i {
  color: #9ca3af;
  margin-top: 3px;
  font-size: 13px;
}

/* Reviews */
.lp-review-item {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.lp-review-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 0 0 10px;
  font-style: italic;
}

.lp-review-quote::before {
  content: '\201C';
  font-size: 18px;
  color: #d1d5db;
  margin-right: 2px;
}

.lp-review-source {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-review-source img {
  width: 14px;
  height: 14px;
}

.lp-review-author {
  font-weight: 600;
  color: #6b7280;
}

.lp-see-all-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin-top: 8px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-see-all-reviews:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #1a1a1a;
  text-decoration: none;
}

.lp-see-all-reviews i {
  font-size: 12px;
}

/* Gallery */
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lp-gallery-grid img:hover {
  transform: scale(1.03);
}

/* Service areas */
.lp-service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-service-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #57606a;
  padding: 5px 10px;
  background: #f6f8fa;
  border-radius: 6px;
}

.lp-service-area-tag i {
  font-size: 11px;
  color: #9ca3af;
}

/* Social links */
.lp-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #57606a;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-social-link:hover {
  background: #e5e7eb;
  color: #1a1a1a;
}

/* Contact form */
.lp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-contact-form .form-control {
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}

.lp-contact-form .form-control:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  outline: none;
}

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

.lp-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #1a56db;
  color: #fff;
  transition: background 0.2s ease;
  width: 100%;
}

.lp-submit-btn:hover {
  background: #1648b8;
}

/* Claim CTA */
.lp-claim-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 12px;
  text-align: center;
  color: #fff;
}

.lp-claim-cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-claim-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 16px;
}

.lp-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #1e3a5f;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.lp-claim-btn:hover {
  background: #f0f0f0;
  color: #1e3a5f;
  text-decoration: none;
}

/* NoDig badge card */
.lp-badge-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.lp-badge-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
}

.lp-badge-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.lp-badge-card-text {
  flex: 1;
}

.lp-badge-card-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.lp-badge-card-text p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Upgrade prompt */
.lp-upgrade-card {
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.lp-upgrade-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
}

.lp-upgrade-card-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
  margin: 0 0 2px;
}

.lp-upgrade-card-text p {
  font-size: 12px;
  color: #a16207;
  margin: 0;
}

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

  .lp-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .lp-container {
    padding: 0 12px;
  }

  .lp-header {
    padding: 20px 16px;
    margin-top: -20px;
  }

  .lp-name {
    font-size: 18px;
  }

  .lp-card {
    padding: 20px 16px;
  }

  .lp-actions {
    flex-wrap: wrap;
  }

  .lp-action-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
  }

  .lp-cost-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Banner - cleaner version */
.lp-banner {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #1e293b;
  position: relative;
  margin-top: 68px;
}

.lp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
}

.lp-banner-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .lp-banner {
    height: 160px;
  }
}

/* Divider */
.lp-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

/* Google review stars in reviews section */
.lp-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.lp-review-stars i {
  font-size: 11px;
  color: #f59e0b;
}

/* Read more link */
.lp-read-more {
  color: #1a56db;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
}

.lp-read-more:hover {
  text-decoration: underline;
  color: #1648b8;
}

/* Claim Wizard - compact sidebar design */
.lp-card .step-app {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp-card .step-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  gap: 4px;
  counter-reset: step-counter;
}

.lp-card .step-steps li {
  flex: 1;
  text-align: center;
  font-size: 0;
  font-weight: 600;
  color: #9ca3af !important;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  line-height: 1.3;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.lp-card .step-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  margin: 0 auto 4px;
  border: 2px solid #e5e7eb;
  transition: all 0.2s ease;
}

.lp-card .step-steps li::after {
  content: attr(data-step-target);
  display: none;
}

.lp-card .step-steps li.active {
  color: #1a56db !important;
  background: transparent !important;
}

.lp-card .step-steps li.active::before {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}

.lp-card .step-steps li.done {
  color: #1a7f37 !important;
  background: transparent !important;
}

.lp-card .step-steps li.done::before {
  background: #dafbe1;
  color: #1a7f37;
  border-color: #1a7f37;
  content: '\2713';
}

.lp-card .step-content {
  min-height: 120px;
}

.lp-card .step-tab-panel .form-group {
  margin-bottom: 12px;
}

.lp-card .step-tab-panel .card-body {
  padding: 0;
}

.lp-card .step-tab-panel h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.lp-card .step-tab-panel p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 12px;
}

.lp-card .step-tab-panel .col-form-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  padding: 4px 0 2px;
  margin: 0;
}

.lp-card .step-tab-panel .col-form-label span {
  color: #ef4444;
  margin-left: 2px;
}

.lp-card .step-tab-panel .form-control,
.lp-card .step-tab-panel .form-control.select {
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  padding: 7px 10px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  height: auto;
  line-height: 1.4;
}

.lp-card .step-tab-panel .form-control:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
  outline: none;
}

.lp-card .step-tab-panel textarea.form-control {
  min-height: 70px;
  resize: vertical;
}

.lp-card .step-tab-panel select.form-control {
  padding: 6px 8px;
  font-size: 12px;
  appearance: auto;
}

.lp-card .step-tab-panel .row {
  --bs-gutter-x: 8px;
  margin-left: -4px;
  margin-right: -4px;
}

.lp-card .step-tab-panel .row > [class*="col-"] {
  padding-left: 4px;
  padding-right: 4px;
}

.lp-card .step-tab-panel .custom_check {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.lp-card .step-tab-panel .featuresform-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.lp-card .step-tab-panel .featuresform-list ul li {
  font-size: 12px;
}

.lp-card .step-tab-panel .category-listing .card-body {
  padding: 0;
}

.lp-card .step-tab-panel .category-listing {
  margin: 0;
}

/* step 4 business hours compact */
.lp-card #tab-step4 .featuresform-list > ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lp-card #tab-step4 .featuresform-list > ul > li {
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
}

.lp-card #tab-step4 .featuresform-list > ul > li:last-child {
  border-bottom: none;
}

.lp-card #tab-step4 .custom_check {
  font-size: 12px;
  margin-bottom: 2px;
  white-space: nowrap;
}

.lp-card #tab-step4 li > .row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 4px;
  margin: 0 !important;
}

.lp-card #tab-step4 li > .row > .col-6 {
  flex: 1;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.lp-card #tab-step4 select.form-control {
  padding: 4px 4px;
  font-size: 11px;
  border-radius: 6px;
  width: 100%;
}

.lp-card #tab-step4 br {
  display: none;
}

/* step 5 Calendly */
.lp-card #tab-step5 #calendly-inline-widget {
  height: 500px !important;
  min-width: auto !important;
  border-radius: 8px;
  overflow: hidden;
}

.lp-card #tab-step5 .g-recaptcha {
  margin-top: 12px;
  transform: scale(0.85);
  transform-origin: 0 0;
}

/* step footer buttons */
.lp-card .step-footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.lp-card .step-footer .step-btn {
  flex: 1;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.lp-card .step-footer .step-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.lp-card .step-footer .step-btn[data-step-action="next"],
.lp-card .step-footer .step-btn[data-step-action="finish"] {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}

.lp-card .step-footer .step-btn[data-step-action="next"]:hover,
.lp-card .step-footer .step-btn[data-step-action="finish"]:hover {
  background: #1648b8;
  border-color: #1648b8;
}

/* services checkboxes in step 2 */
.lp-card #tab-step2 label#services_offered,
.lp-card #tab-step2 > label.col-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.lp-card #tab-step2 .category-listing {
  margin-bottom: 12px;
}

.lp-card #tab-step2 .featuresform-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lp-card #tab-step2 .featuresform-list ul li {
  padding: 2px 0;
  font-size: 12px;
}

.lp-card #tab-step2 .custom_check {
  font-size: 12px;
  padding-left: 22px;
  line-height: 1.4;
  margin-bottom: 0;
}

.lp-card .contactus-form hr {
  border-color: #e5e7eb;
  margin: 12px 0;
}

