.elementor-2416 .elementor-element.elementor-element-90ca126{--display:flex;}.elementor-2416 .elementor-element.elementor-element-ce77d1c{--display:flex;}.elementor-2416 .elementor-element.elementor-element-d7fbd5b{--display:flex;}.elementor-2416 .elementor-element.elementor-element-e03a4b8{--display:flex;--min-height:20px;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:nowrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2416 .elementor-element.elementor-element-e03a4b8:not(.elementor-motion-effects-element-type-background), .elementor-2416 .elementor-element.elementor-element-e03a4b8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-29ee528 );}.elementor-2416 .elementor-element.elementor-element-e03a4b8.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2416 .elementor-element.elementor-element-ddf416b{--display:flex;}.elementor-2416 .elementor-element.elementor-element-1df6e17{--display:flex;}.elementor-2416 .elementor-element.elementor-element-7115f39{--display:flex;}.elementor-2416 .elementor-element.elementor-element-a327830{--display:flex;}.elementor-2416 .elementor-element.elementor-element-d83f571{--display:flex;}.elementor-2416 .elementor-element.elementor-element-da1e238{--display:flex;}.elementor-2416 .elementor-element.elementor-element-7ad5130{--display:flex;--min-height:20px;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:nowrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2416 .elementor-element.elementor-element-7ad5130:not(.elementor-motion-effects-element-type-background), .elementor-2416 .elementor-element.elementor-element-7ad5130 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-29ee528 );}.elementor-2416 .elementor-element.elementor-element-7ad5130.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2416 .elementor-element.elementor-element-e30c127{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ================================
   FONT IMPORT & ROOT VARIABLES
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  --zf-brand: #B2935B;
  --zf-brand-dark: #8c7245;
  --zf-text-main: #1f1a14;
  --zf-text-sub: #4b4137;
  --zf-white: #ffffff;
  --zf-border-soft: #e3d8c8;
}

/* Apply Lexend globally inside zf sections */
.zf-font, 
.zf-font * {
  font-family: 'Lexend', sans-serif !important;
}


/* ================================
   BASE SECTIONS & LAYOUT
=================================== */

.zf-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 48px 18px;
  background: var(--zf-white);
}

.zf-section--tight {
  max-width: 900px;
}

/* ALT sections are pure white now */
.zf-section--alt {
  background: var(--zf-white) !important;
}

/* Brand background section */
.zf-section--brand {
  background: var(--zf-brand) !important;
  color: #ffffff !important;
}

.zf-section--brand h1,
.zf-section--brand h2,
.zf-section--brand h3,
.zf-section--brand p,
.zf-section--brand li {
  color: #ffffff !important;
}

.zf-section h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--zf-text-main);
  margin-bottom: 0.5rem;
}

.zf-section p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--zf-text-sub);
  margin-bottom: 0.4rem;
}



/* ================================
   HERO – MOBILE FIRST
=================================== */

.zf-hero {
  padding: 64px 18px 40px;
}

/* Main brand hero (gold background, white content) */
.zf-hero--brand {
  background: var(--zf-brand);
  color: #ffffff;
}

/* Hero typography */
.zf-hero-title {
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}

.zf-hero-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  color: inherit;
}

/* Badges */
.zf-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.4rem;
}

.zf-badge {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

/* Buttons */
.zf-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

/* Brand buttons for light backgrounds */
.zf-btn-primary {
  background: var(--zf-brand);
  color: #fff;
}

.zf-btn-primary:hover {
  background: var(--zf-brand-dark);
  transform: translateY(-1px);
}

/* Hero buttons (brand background → white buttons) */
.zf-btn-white {
  background: #ffffff;
  color: var(--zf-brand);
}

.zf-btn-white:hover {
  background: #f4f4f4;
}

.zf-btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.zf-btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
}

.zf-hero-note {
  font-size: 0.8rem;
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.9);
}


/* Hero sidebox */
.zf-hero-sidebox {
  margin-top: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.25);
}

.zf-hero-sidebox h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
}


/* ================================
   LISTS
=================================== */

.zf-list {
  padding-left: 1.2rem;
  margin: 0.2rem 0 0.4rem;
}

.zf-list li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--zf-text-sub);
}

.zf-section--brand .zf-list li {
  color: #fff;
}


/* ================================
   CARDS
=================================== */

.zf-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.zf-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid var(--zf-border-soft);
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.zf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.zf-card-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zf-brand-dark);
  margin-bottom: 0.3rem;
}

.zf-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--zf-text-main);
}


/* ================================
   PROCESS STEPS
=================================== */

.zf-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.zf-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid var(--zf-border-soft);
}

.zf-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--zf-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}


/* ================================
   FAQ
=================================== */

.zf-faq-list {
  max-width: 800px;
  margin-top: 16px;
}

.zf-faq-item + .zf-faq-item {
  border-top: 1px solid var(--zf-border-soft);
  padding-top: 12px;
  margin-top: 12px;
}

.zf-faq-q {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.zf-faq-a {
  font-size: 0.93rem;
  color: var(--zf-text-sub);
  line-height: 1.5;
}


/* ================================
   SERVICE AREA BAND
=================================== */

.zf-area-band {
  background: #1f1a14;
  color: #ffffff;
  padding: 20px 18px;
}

.zf-area-band-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.zf-area-band-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.zf-area-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zf-area-pill {
  font-size: 0.86rem;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid #4b4031;
}


/* ================================
   UTILITIES
=================================== */

.zf-text-center { text-align: center; }

.zf-mt-sm { margin-top: 8px; }
.zf-mt-md { margin-top: 16px; }
.zf-mt-lg { margin-top: 24px; }


/* ================================
   RESPONSIVE (DESKTOP)
=================================== */

@media (min-width: 900px) {

  .zf-hero--brand {
    padding: 90px 20px 70px;
  }

  .zf-hero--split {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.7fr) minmax(0,1.2fr);
    gap: 42px;
    align-items: center;
  }

  .zf-btn-row {
    flex-direction: row;
  }

  .zf-hero-title {
    font-size: 2.4rem;
  }

  .zf-card-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .zf-steps {
    grid-template-columns: repeat(4,1fr);
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 899px) {
  .zf-card-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .zf-steps {
    grid-template-columns: repeat(2,1fr);
  }
}/* End custom CSS */