/* ══════════════════════════════════════════════════
   PAGE BUILDER — Global
══════════════════════════════════════════════════ */
.pb-section {
  padding: 50px 0 25px 0;
}

.pb-section + .pb-section {
  padding-bottom: 25px;
}

.pb-section + .pb-section + .pb-section {
  padding-bottom: 25px;
}

/* Dark background text overrides */
.pb-section--dark,
.pb-section--dark h1,
.pb-section--dark h2,
.pb-section--dark h3,
.pb-section--dark h4,
.pb-section--dark p,
.pb-section--dark li,
.pb-section--dark a {
  color: #ffffff;
}

.pb-section--dark a:hover {
  opacity: 0.8;
}

/* Shared section header */
.pb-section__header {
  text-align: center;
  margin-bottom: 25px;
}
.pb-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}
.pb-section--dark .pb-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.pb-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.pb-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.75;
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.75;
}

/* WYSIWYG base styles */
.pb-wysiwyg {
  line-height: 1.8;
}
.pb-wysiwyg h1,
.pb-wysiwyg h2,
.pb-wysiwyg h3,
.pb-wysiwyg h4,
.pb-wysiwyg h5,
.pb-wysiwyg h6 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
  margin-top: 28px;
  line-height: 1.2;
}
.pb-wysiwyg h2 {
  font-size: 32px;
}
.pb-wysiwyg h3 {
  font-size: 26px;
}
.pb-wysiwyg h4 {
  font-size: 20px;
}
.pb-wysiwyg p {
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.pb-wysiwyg ul,
.pb-wysiwyg ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.pb-wysiwyg li {
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.pb-wysiwyg a {
  color: var(--color-green);
  text-decoration: underline;
}
.pb-wysiwyg strong {
  font-weight: 700;
}
.pb-wysiwyg em {
  font-style: italic;
}
.pb-wysiwyg img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.pb-wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.pb-wysiwyg th,
.pb-wysiwyg td {
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.pb-wysiwyg th {
  background-color: var(--color-bg);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════
   PARAGRAPH
══════════════════════════════════════════════════ */
.pb-paragraph .pb-wysiwyg {
  max-width: 780px;
}
.pb-paragraph .container[style*="left"] .pb-section__header,
.pb-paragraph .container[style*="left"] .pb-wysiwyg {
  text-align: left;
  margin-inline: 0;
}
.pb-paragraph .container[style*="left"] .pb-subtext {
  margin-inline: 0;
}
.pb-paragraph .container[style*="center"] .pb-wysiwyg,
.pb-paragraph .container[style*="center"] .pb-section__header {
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════
   2 COLUMN
══════════════════════════════════════════════════ */
.pb-2col__grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
.pb-2col__grid.pb-2col--50-50 {
  grid-template-columns: 1fr 1fr;
}
.pb-2col__grid.pb-2col--60-40 {
  grid-template-columns: 3fr 2fr;
}
.pb-2col__grid.pb-2col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.pb-2col__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.pb-2col__img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 520px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════
   3 & 4 COLUMN
══════════════════════════════════════════════════ */
.pb-cols__grid {
  display: grid;
  gap: 32px;
}
.pb-cols__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.pb-cols__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pb-col-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pb-col-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
.pb-col-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.pb-col-card__heading {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green);
}
.pb-section--dark .pb-col-card__heading {
  color: #fff;
}
.pb-col-card__content {
  flex: 1;
}
.pb-col-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   PRICING TABLE
══════════════════════════════════════════════════ */
.pb-pricing__intro {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 50px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.85;
}
.pb-pricing__grid {
  display: grid;
  grid-template-columns: repeat(var(--col-count, 4), 1fr);
  gap: 24px;
  align-items: start;
}
.pb-pricing__table {
  background: rgba(15, 107, 90, 0.03);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px 24px 24px;
}
.pb-pricing__table-heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-green);
  text-align: center;
}
.pb-pricing__rows {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.pb-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 0.875rem;
  gap: 8px;
}
.pb-pricing__row:last-child {
  border-bottom: none;
}
.pb-pricing__label {
  color: var(--color-text);
  flex: 1;
  padding-right: 8px;
}
.pb-pricing__price {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.pb-pricing__note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text);
  opacity: 0.7;
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════════════════════════
   SLIDER
══════════════════════════════════════════════════ */
.pb-slider {
  padding-bottom: 0;
}
.pb-slider .container {
  margin-bottom: 40px;
}
.pb-slider__track {
  position: relative;
  overflow: hidden;
  background: #000;
}
.pb-slider__inner {
  display: flex;
  transition: transform 0.4s ease;
}
.pb-slider__slide {
  flex: 0 0 100%;
  position: relative;
}
.pb-slider__slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.pb-slider__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 20px;
  text-align: center;
}
.pb-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-slider__btn:hover {
  background: #fff;
}
.pb-slider__btn--prev {
  left: 16px;
}
.pb-slider__btn--next {
  right: 16px;
}
.pb-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.03);
}
.pb-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
}
.pb-slider__dot.is-active {
  background: var(--color-green);
}

/* ══════════════════════════════════════════════════
   CALL TO ACTION
══════════════════════════════════════════════════ */
.pb-cta {
  text-align: center;
}
.pb-cta .pb-section__header {
  margin-bottom: 32px;
}
.pb-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FULL WIDTH BANNER
══════════════════════════════════════════════════ */
.pb-banner {
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-banner__overlay {
  position: absolute;
  inset: 0;
}
.pb-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.pb-banner__heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.pb-banner__subtext {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════
   ACCORDION / FAQ
══════════════════════════════════════════════════ */
.pb-accordion__list {
  max-width: 800px;
  margin-inline: auto;
}
.pb-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pb-accordion__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.pb-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.2s;
}
.pb-accordion__trigger:hover {
  color: var(--color-green);
}
.pb-section--dark .pb-accordion__trigger {
  color: #fff;
}
.pb-accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.pb-accordion__trigger[aria-expanded="true"] .pb-accordion__icon {
  transform: rotate(180deg);
}
.pb-accordion__panel {
  padding-bottom: 20px;
}
.pb-accordion__panel[hidden] {
  display: none;
}
.pb-accordion__content {
  padding-top: 4px;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.pb-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pb-testimonial {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pb-section--dark .pb-testimonial {
  border-color: rgba(255, 255, 255, 0.15);
}
.pb-testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  flex: 1;
}
.pb-section--dark .pb-testimonial__quote {
  color: #fff;
}
.pb-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pb-testimonial__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pb-testimonial__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}
.pb-section--dark .pb-testimonial__name {
  color: #fff;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pb-section {
    padding: 60px 0;
  }
  .pb-heading {
    font-size: 34px;
  }
  .pb-cols__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-slider__slide img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .pb-section {
    padding: 50px 0;
  }
  .pb-heading {
    font-size: 28px;
  }

  .pb-2col__grid,
  .pb-2col__grid.pb-2col--60-40,
  .pb-2col__grid.pb-2col--40-60 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pb-2col--reverse .pb-2col__col:first-child {
    order: 2;
  }
  .pb-2col--reverse .pb-2col__col:last-child {
    order: 1;
  }

  .pb-cols__grid--3 {
    grid-template-columns: 1fr;
  }
  .pb-cols__grid--4 {
    grid-template-columns: 1fr;
  }

  .pb-pricing__grid {
    grid-template-columns: 1fr;
  }
  .pb-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pb-slider__slide img {
    height: 280px;
  }
  .pb-banner__heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pb-section {
    padding: 40px 0;
  }
  .pb-heading {
    font-size: 24px;
  }
  .pb-section__header {
    margin-bottom: 32px;
  }
  .pb-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .pb-cta__buttons .btn {
    width: 100%;
    text-align: center;
  }
  .pb-slider__btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .pb-slider__slide img {
    height: 220px;
  }
  .pb-accordion__trigger {
    font-size: 0.95rem;
  }
}
