.elementor-3383 .elementor-element.elementor-element-d470a53{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-dcb9a38 *//* ============================================================
   IMAGE IRRIGATION — FAQ Page CSS  (ii-faqs.css)
   Append to: Elementor → Site Settings → Custom CSS
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.iif-hero {
  background: var(--g-soil);
  padding: clamp(4rem,8vw,7rem) clamp(1.25rem,5vw,5rem) clamp(3rem,5vw,5rem);
  overflow: hidden; position: relative; width: 100%;
}
.iif-hero::before {
  content: 'FAQ';
  position: absolute; bottom: -.15em; right: -.02em;
  font-family: var(--g-fd);
  font-size: clamp(8rem,20vw,18rem);
  font-weight: 900; color: rgba(255,255,255,.025);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -.04em;
}
.iif-hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.25rem;
}
.iif-h1 {
  font-family: var(--g-fd);
  font-size: clamp(2.2rem,4.5vw,4rem);
  font-weight: 900; color: var(--g-white);
  line-height: 1.06; letter-spacing: -.03em; margin: 0;
}
.iif-h1 em { font-style: italic; color: var(--g-fern); }
.iif-hero-sub {
  font-size: clamp(.88rem,1.3vw,1rem);
  color: rgba(255,255,255,.62); line-height: 1.8;
  max-width: 540px; margin: 0;
}
.iif-hero-btns {
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center;
}

/* ── JUMP NAV ────────────────────────────────────────────── */
.iif-jumpnav {
  background: var(--g-white);
  border-bottom: 1px solid var(--g-stone);
  padding: 0 clamp(1.25rem,5vw,5rem);
  position: sticky; top: 74px; z-index: 90;
}
.iif-jumpnav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: .25rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 0;
}
.iif-jumpnav-inner::-webkit-scrollbar { display: none; }
.iif-jumpnav-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g-muted);
  white-space: nowrap; padding: 1rem .75rem 1rem 0;
  border-right: 1px solid var(--g-stone); margin-right: .5rem;
}
.iif-jumplink {
  font-size: .8rem; font-weight: 600; color: var(--g-muted);
  padding: 1rem .85rem; white-space: nowrap;
  text-decoration: none; border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.iif-jumplink:hover { color: var(--g-moss); border-bottom-color: var(--g-moss); }

/* ── FAQ SECTION LAYOUT ──────────────────────────────────── */
.iif-faq-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: start;
}
.iif-section-label {
  display: flex; flex-direction: column; gap: 1rem;
  position: sticky; top: calc(74px + 49px + 2rem);
}
.iif-section-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--g-moss);
  display: grid; place-items: center;
}
.iif-section-icon svg {
  width: 22px; height: 22px;
  stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round;
}

/* ── ACCORDION ───────────────────────────────────────────── */
.iif-accordion {
  display: flex; flex-direction: column; gap: .5rem;
}
.iif-item {
  border: 1.5px solid var(--g-stone);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s;
  background: var(--g-white);
}
.iif-item.iif-open { border-color: var(--g-fern); }
.iif-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--g-fb); font-size: .95rem; font-weight: 700;
  color: var(--g-soil); text-align: left; line-height: 1.4;
  transition: background .18s;
}
.iif-q:hover { background: var(--g-dew); }
.iif-open .iif-q { background: var(--g-dew); color: var(--g-moss); }

/* chevron */
.iif-chevron {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--g-dew); flex-shrink: 0;
  display: grid; place-items: center;
  transition: background .18s, transform .28s;
  position: relative;
}
.iif-chevron::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--g-moss);
  transition: transform .28s;
}
.iif-open .iif-chevron { background: var(--g-meadow); }
.iif-open .iif-chevron::after { transform: rotate(180deg); }

/* answer panel */
.iif-a {
  max-height: 0; overflow: hidden;
  transition: max-height .36s cubic-bezier(.4,0,.2,1);
}
.iif-a-inner, .iif-a > p, .iif-a > ul {
  padding: 0 1.4rem 1.4rem;
}
.iif-a p {
  font-size: .9rem; color: var(--g-muted); line-height: 1.82;
  padding: 0 1.4rem;
}
.iif-a p + p { margin-top: .7rem; }
.iif-a p:first-child { padding-top: .25rem; }
.iif-a p:last-child  { padding-bottom: 1.4rem; }

/* list inside answer */
.iif-list {
  margin: .5rem 0 .5rem 1.4rem; padding: 0 1.4rem .25rem;
  list-style: none; display: flex; flex-direction: column; gap: .4rem;
}
.iif-list li {
  font-size: .88rem; color: var(--g-muted); line-height: 1.72;
  padding-left: 1.1rem; position: relative;
}
.iif-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--g-fern); font-weight: 700;
}
.iif-list li strong { color: var(--g-soil); }

/* inline CTA link */
.iif-inline-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .82rem; font-weight: 700; color: var(--g-moss) !important;
  text-decoration: none; padding: 0 1.4rem 1.4rem;
  transition: color .18s; margin-top: .1rem;
}
.iif-inline-cta:hover { color: var(--g-forest) !important; }
.iif-inline-cta::after { content: ''; }

/* ── STILL HAVE QUESTIONS ────────────────────────────────── */
.iif-bg-dew { background: var(--g-dew); }
.iif-still-q {
  text-align: center;
  padding: clamp(2rem,4vw,3.5rem);
  max-width: 640px; margin: 0 auto;
}
.iif-still-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--g-white); border: 1.5px solid var(--g-meadow);
  display: grid; place-items: center; margin: 0 auto 1.25rem;
}
.iif-still-icon svg {
  width: 26px; height: 26px;
  stroke: var(--g-moss); fill: none; stroke-width: 1.8; stroke-linecap: round;
}
.iif-still-btns {
  display: flex; gap: .75rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.75rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .iif-faq-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .iif-section-label {
    position: static;
    flex-direction: row; align-items: center; gap: 1rem;
  }
  .iif-section-label .iis-h2 { font-size: clamp(1.4rem,3vw,1.8rem); }
  .iif-jumpnav { top: 60px; }
}
@media (max-width: 560px) {
  .iif-hero-btns { flex-direction: column; align-items: stretch; }
  .iif-section-label { flex-direction: column; align-items: flex-start; }
  .iif-still-btns { flex-direction: column; align-items: stretch; }
  .iif-still-btns .iis-btn { text-align: center; justify-content: center; }
}/* End custom CSS */