.elementor-153 .elementor-element.elementor-global-509{width:var( --container-widget-width, 100% );max-width:100%;margin:2em 1em calc(var(--kit-widget-spacing, 0px) + 3em) 1em;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-153 .elementor-element.elementor-global-509.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-153 .elementor-element.elementor-element-ecd5f5f{width:var( --container-widget-width, 100% );max-width:100%;margin:0em 0em calc(var(--kit-widget-spacing, 0px) + 1em) 0em;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-153 .elementor-element.elementor-element-ecd5f5f.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-153 .elementor-element.elementor-element-08db413{width:var( --container-widget-width, 100% );max-width:100%;margin:0em 0em calc(var(--kit-widget-spacing, 0px) + 2em) 0em;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-153 .elementor-element.elementor-element-08db413.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-153 .elementor-element.elementor-global-512{border-radius:30px 30px 30px 30px;}.elementor-153 .elementor-element.elementor-element-13ba6eb{width:var( --container-widget-width, 100% );max-width:100%;margin:0em 0em calc(var(--kit-widget-spacing, 0px) + 2em) 0em;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-153 .elementor-element.elementor-element-13ba6eb.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-153 .elementor-element.elementor-element-89e9552{width:var( --container-widget-width, 100% );max-width:100%;margin:0em 0em calc(var(--kit-widget-spacing, 0px) + 2em) 0em;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-153 .elementor-element.elementor-element-89e9552.elementor-element{--flex-grow:0;--flex-shrink:0;}



/* Start custom CSS for global, class: .elementor-global-512 */.kiff-faq {
  position: relative;
  width: 100%;
  min-height: 775px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 85px 24px;

  box-sizing: border-box;

  background-image: url("https://www.kiffcleaningsolutions.com/wp-content/uploads/2026/07/eb1346749eeed597f8873e81cf6d96e4.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Background overlay */
.kiff-faq__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: rgba(9, 37, 23, 0.22);
}

/* FAQ panel */
.kiff-faq__panel {
  position: relative;
  z-index: 2;

  width: 685px;
  max-width: 100%;

  padding: 72px 55px 48px;

  box-sizing: border-box;

  background: rgba(9, 37, 23, 0.87);

  border-radius: 24px;
}

/* TITLE */
.kiff-faq__panel h2 {
  margin: 0 !important;

  color: #ffffff !important;

  font-family: "Manrope", sans-serif !important;
  font-size: 40px !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: -1.2px !important;
}

/* Green accent */
.kiff-faq__line {
  width: 210px;
  height: 4px;

  margin: 28px 0 36px;

  background: #123d24;
}

/* FAQ LIST */
.kiff-faq__list {
  width: 100%;
}

/* ITEM */
.kiff-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

/* QUESTION */
.kiff-faq__question {
  appearance: none !important;
  -webkit-appearance: none !important;

  width: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 24px;

  padding: 18px 0 !important;

  margin: 0 !important;

  background: transparent !important;
  background-color: transparent !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  color: #ffffff !important;

  font-family: "Manrope", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;

  text-align: left !important;

  cursor: pointer;
}

/* Remove Elementor button hover */
.kiff-faq__question:hover,
.kiff-faq__question:focus,
.kiff-faq__question:active {
  background: transparent !important;
  background-color: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* ARROW */
.kiff-faq__icon {
  flex: 0 0 auto;

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff !important;

  font-size: 24px;
  font-weight: 300;

  transition: transform 0.3s ease;
}

/* ANSWER */
.kiff-faq__answer {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.35s ease,
    opacity 0.25s ease;
}

.kiff-faq__answer p {
  overflow: hidden;

  margin: 0 !important;

  color: rgba(255,255,255,0.75) !important;

  font-family: "Manrope", sans-serif !important;

  font-size: 15px !important;
  line-height: 1.6 !important;
}

.kiff-faq__item.is-open .kiff-faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.kiff-faq__item.is-open .kiff-faq__answer p {
  padding-bottom: 18px;
}

.kiff-faq__item.is-open .kiff-faq__icon {
  transform: rotate(180deg);
}


/* TABLET */
@media (max-width: 900px) {

  .kiff-faq {
    min-height: auto;
    padding: 60px 24px;
  }

  .kiff-faq__panel {
    width: 685px;
    padding: 55px 40px 40px;
  }

  .kiff-faq__panel h2 {
    font-size: 34px !important;
  }
}


/* MOBILE */
@media (max-width: 600px) {

  .kiff-faq {
    padding: 40px 16px;
  }

  .kiff-faq__panel {
    padding: 38px 24px 28px;
    border-radius: 18px;
  }

  .kiff-faq__panel h2 {
    font-size: 28px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.7px !important;
  }

  .desktop-break {
    display: none;
  }

  .kiff-faq__line {
    width: 100px;
    height: 3px;
    margin: 22px 0 24px;
  }

  .kiff-faq__question {
    padding: 17px 0 !important;
    font-size: 14px !important;
  }
}/* End custom CSS */



