.elementor-156 .elementor-element.elementor-element-fb0b4cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5672cf4 */:root {
  --green: #0F3D2E;
  --ivory: #FAF7F2;
  --charcoal: #2E2E2E;
  --muted: #5C5C5C;
  --sage: #A3B18A;
  --gold: #C9A24D;
}

/* =========================
   GLOBAL RESET (IMPORTANT)
   ========================= */
/* This removes default white gaps around the page */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scrollbar from the full-width fix */
}

/* =========================
   FOOTER BASE (FULL WIDTH)
   ========================= */

.leafas-footer {
  background: var(--green);
  padding: 70px 0 35px;
  font-family: Inter, sans-serif;

  /* --- FIX START: FORCE FULL WIDTH --- */
  /* This ensures the footer breaks out of any parent container */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  /* --- FIX END --- */
}

/* Inner content container - Keeps content centered */
.leafas-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%; /* Ensure inner container doesn't overflow */
  box-sizing: border-box;
}

/* =========================
   TOP SECTION
   ========================= */

.leafas-footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.leafas-col h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--ivory);
  margin-bottom: 12px;
}

.leafas-col p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.65;
  margin: 0;
}

/* =========================
   SOCIAL ICONS (SVG)
   ========================= */

.leafas-social {
  display: flex;
  gap: 14px;
}

.leafas-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.leafas-social svg {
  width: 16px;
  height: 16px;
  fill: var(--sage);
  transition: fill 0.2s ease;
}

.leafas-social a:hover {
  border-color: var(--gold);
}

.leafas-social a:hover svg {
  fill: var(--gold);
}

/* =========================
   BOTTOM SECTION
   ========================= */

.leafas-footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(163, 177, 138, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.leafas-links a {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  margin-right: 16px;
  white-space: nowrap;
}

.leafas-links a:hover {
  color: var(--gold);
}

.leafas-copy {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.7);
}

.leafas-copy a {
  color: var(--ivory);
  text-decoration: none;
}

.leafas-copy a:hover {
  color: var(--gold);
}

/* =========================
   DESKTOP STRENGTHENING
   ========================= */

@media (min-width: 1200px) {
  .leafas-footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .leafas-footer-top {
    gap: 64px;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .leafas-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .leafas-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   REDUCED MOTION SUPPORT
   ========================= */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/* End custom CSS */