/* ==========================================================================
   Landing Page Styles (lp- prefix)
   ========================================================================== */

/* --- Sticky Header --- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 60px;
}

.lp-header__logo img {
  max-height: 40px;
  width: auto;
}

.lp-header__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: green;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.lp-header__call:hover {
  background: #006400;
}

/* --- Hero Section --- */
.lp-hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #1B5E20 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 60px 20px;
}

.lp-hero__content h1 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}

.lp-hero__content p {
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
  opacity: 0.95;
}

.lp-btn {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  min-height: 52px;
}

.lp-btn:hover {
  background: #006400;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lp-btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.lp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.lp-btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* --- Trust Bar --- */
.lp-trust-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.lp-trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.lp-trust-bar__icon {
  font-size: 24px;
}

/* --- Sections --- */
.lp-section {
  padding: 70px 0;
}

.lp-section--grey {
  background: #f8f9fa;
}

.lp-section--dark {
  background: #252b3a;
  color: #fff;
}

.lp-section--dark .lp-section__heading {
  color: #fff;
}

.lp-section__heading {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin: 0 0 16px;
  color: #252b3a;
}

.lp-section__subheading {
  font-family: Lato, sans-serif;
  font-size: 17px;
  text-align: center;
  color: #5f6a8f;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.lp-section--dark .lp-section__subheading {
  color: rgba(255, 255, 255, 0.8);
}

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

.lp-container--narrow {
  max-width: 800px;
}

/* --- Problem Section Copy --- */
.lp-prose {
  font-family: Lato, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.lp-prose p {
  margin: 0 0 20px;
}

.lp-prose em {
  font-style: italic;
}

/* --- Services Grid (3 col) --- */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.lp-services-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  justify-items: center;
}

.lp-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.lp-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: green;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.lp-card__title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
  color: #252b3a;
}

.lp-card__text {
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* --- Benefits Grid (2x2) --- */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.lp-benefit__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: green;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.lp-benefit__title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 6px;
}

.lp-benefit__text {
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

/* --- Testimonials (reuse existing + additions) --- */
.lp-stars {
  color: #FF8F00;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.lp-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #dfe2ec;
}

.lp-trust-badges__item {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- FAQ Accordion --- */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid #dfe2ec;
}

.lp-faq__item:first-child {
  border-top: 1px solid #dfe2ec;
}

.lp-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #252b3a;
  text-align: left;
  line-height: 1.4;
}

.lp-faq__question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: green;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.lp-faq__question[aria-expanded="true"]::after {
  content: "\2212";
}

.lp-faq__answer {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  padding: 0 0 20px;
}

/* --- Form Section --- */
.lp-form-section {
  background: #1B5E20;
  padding: 70px 0;
  color: #fff;
}

.lp-form-section .lp-section__heading {
  color: #fff;
}

.lp-form-section .lp-section__subheading {
  color: rgba(255, 255, 255, 0.85);
}

.lp-form {
  max-width: 600px;
  margin: 0 auto;
}

.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-form-grid--full {
  grid-column: 1 / -1;
}

.lp-form__field {
  display: flex;
  flex-direction: column;
}

.lp-form__label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.lp-form__input,
.lp-form__select,
.lp-form__textarea {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
}

.lp-form__input::placeholder,
.lp-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lp-form__input:focus,
.lp-form__select:focus,
.lp-form__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
}

.lp-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.lp-form__select option {
  color: #333;
  background: #fff;
}

.lp-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.lp-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: green;
  cursor: pointer;
}

.lp-form__textarea {
  min-height: 80px;
  resize: vertical;
}

.lp-form__submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: #FF8F00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.lp-form__submit:hover {
  background: #e68200;
}

.lp-form__micro {
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 13px;
  opacity: 0.75;
  margin-top: 16px;
  line-height: 1.5;
}

.lp-form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.lp-form-success h3 {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
}

.lp-form-success p {
  font-family: Lato, sans-serif;
  font-size: 16px;
  opacity: 0.85;
}

/* --- Service Area --- */
.lp-service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lp-service-area__map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

.lp-service-area__text {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.lp-service-area__text p {
  margin: 0 0 16px;
}

/* --- Final CTA Banner --- */
.lp-cta-banner {
  background: green;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.lp-cta-banner h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 10px;
  color: #fff;
}

.lp-cta-banner p {
  font-family: Lato, sans-serif;
  font-size: 17px;
  margin: 0 0 30px;
  opacity: 0.9;
}

.lp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 991px) {
  .lp-hero__content h1 {
    font-size: 34px;
  }

  .lp-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-services-grid--3col {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .lp-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media screen and (max-width: 767px) {
  .lp-hero {
    min-height: 450px;
  }

  .lp-hero__content h1 {
    font-size: 28px;
  }

  .lp-hero__content p {
    font-size: 16px;
  }

  .lp-section {
    padding: 50px 0;
  }

  .lp-section__heading {
    font-size: 24px;
  }

  .lp-trust-bar {
    gap: 20px;
  }

  .lp-trust-bar__item {
    font-size: 11px;
    flex: 0 0 calc(50% - 10px);
  }

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

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

  .lp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lp-cta-buttons .lp-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .lp-form-section {
    padding: 50px 0;
  }

  .lp-cta-banner {
    padding: 50px 0;
  }

  .lp-cta-banner h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  .lp-header {
    padding: 8px 12px;
  }

  .lp-header__logo img {
    max-height: 32px;
  }

  .lp-header__call {
    font-size: 12px;
    padding: 6px 12px;
  }

  .lp-hero__content {
    padding: 40px 16px;
  }

  .lp-hero__content h1 {
    font-size: 24px;
  }

  .lp-btn {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
}

/* Desktop: header phone as text, not button */
@media screen and (min-width: 992px) {
  .lp-header {
    padding: 10px 40px;
  }

  .lp-header__call {
    background: transparent;
    color: #252b3a;
    font-size: 16px;
  }

  .lp-header__call:hover {
    background: transparent;
    color: green;
  }
}
