/* NZL Divi 5 Universal Footer */
.nzl_d5_universal_footer,
.nzl_d5_universal_footer .et_pb_module_inner {
  width: 100%;
  max-width: none;
}

.nzl-d5-footer {
  --nzl-footer-primary: #06264b;
  --nzl-footer-primary-dark: #031a33;
  --nzl-footer-accent: #f28c00;
  --nzl-footer-text: #d7e1ec;
  --nzl-footer-muted: #9fb0c2;
  --nzl-footer-border: rgba(255, 255, 255, 0.12);
  --nzl-footer-card: rgba(255, 255, 255, 0.06);

  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  color: var(--nzl-footer-text);
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--nzl-footer-accent) 12%, transparent), transparent 31%),
    linear-gradient(135deg, var(--nzl-footer-primary) 0%, var(--nzl-footer-primary-dark) 100%);
  font-family: inherit;
  overflow: hidden;
}

@supports not (background: color-mix(in srgb, #000 50%, transparent)) {
  .nzl-d5-footer {
    background: linear-gradient(135deg, var(--nzl-footer-primary) 0%, var(--nzl-footer-primary-dark) 100%);
  }
}

.nzl-d5-footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--nzl-footer-accent);
}

.nzl-d5-footer *,
.nzl-d5-footer *::before,
.nzl-d5-footer *::after {
  box-sizing: border-box;
}

.nzl-footer-container {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
}

.nzl-footer-main {
  position: relative;
  z-index: 2;
  padding: 76px 0 62px;
}

.nzl-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) 0.75fr 1.15fr 0.9fr;
  gap: 55px;
}

.nzl-footer-column {
  min-width: 0;
}

.nzl-footer-column h3 {
  position: relative;
  margin: 0 0 25px;
  padding: 0 0 13px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.nzl-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 10px;
  background: var(--nzl-footer-accent);
}

.nzl-footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 270px;
  min-height: 60px;
  margin-bottom: 23px;
  color: #fff !important;
  text-decoration: none !important;
}

.nzl-footer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.nzl-footer-wordmark {
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.nzl-footer-description {
  max-width: 430px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--nzl-footer-text);
  font-size: 15.5px;
  line-height: 1.75;
  white-space: pre-line;
}

.nzl-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nzl-footer-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--nzl-footer-border);
  border-radius: 100px;
  color: #fff;
  background: var(--nzl-footer-card);
  font-size: 12.5px;
  font-weight: 600;
}

.nzl-footer-badges svg {
  width: 15px;
  height: 15px;
  fill: var(--nzl-footer-accent);
}

.nzl-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.nzl-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--nzl-footer-text) !important;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none !important;
  transition: color .25s ease, transform .25s ease;
}

.nzl-footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  margin-right: 0;
  border-radius: 5px;
  background: var(--nzl-footer-accent);
  transition: width .25s ease, margin-right .25s ease;
}

.nzl-footer-links a:hover,
.nzl-footer-links a:focus-visible {
  color: #fff !important;
  transform: translateX(3px);
}

.nzl-footer-links a:hover::before,
.nzl-footer-links a:focus-visible::before {
  width: 13px;
  margin-right: 8px;
}

.nzl-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nzl-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff !important;
  background: var(--nzl-footer-card);
  text-decoration: none !important;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.nzl-contact-item:hover,
.nzl-contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--nzl-footer-accent) 48%, transparent);
  background: rgba(255, 255, 255, 0.1);
}

.nzl-contact-icon {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #fff;
  background: var(--nzl-footer-accent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--nzl-footer-accent) 20%, transparent);
}

.nzl-contact-icon svg,
.nzl-hours-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nzl-contact-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.nzl-contact-item small,
.nzl-footer-hours small {
  color: var(--nzl-footer-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nzl-contact-item strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nzl-footer-hours {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--nzl-footer-border);
}

.nzl-hours-icon {
  display: flex;
  flex: 0 0 37px;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--nzl-footer-accent);
  background: color-mix(in srgb, var(--nzl-footer-accent) 13%, transparent);
}

.nzl-footer-hours > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nzl-footer-hours strong {
  color: #fff;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.4;
}

.nzl-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--nzl-footer-border);
  background: rgba(0, 0, 0, 0.16);
}

.nzl-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 74px;
  padding-top: 17px;
  padding-bottom: 17px;
}

.nzl-footer-bottom p {
  margin: 0;
  padding: 0;
  color: var(--nzl-footer-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nzl-company-name {
  color: #fff;
  font-weight: 650;
}

.nzl-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nzl-footer-bottom-links > span {
  color: var(--nzl-footer-accent);
}

.nzl-footer-bottom-links a {
  color: var(--nzl-footer-muted) !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: color .25s ease;
}

.nzl-footer-bottom-links a:hover,
.nzl-footer-bottom-links a:focus-visible {
  color: #fff !important;
}

@media (max-width: 1100px) {
  .nzl-footer-grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 50px 60px;
  }
}

@media (max-width: 700px) {
  .nzl-footer-container {
    width: min(100% - 34px, 1400px);
  }

  .nzl-footer-main {
    padding: 60px 0 45px;
  }

  .nzl-footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .nzl-footer-logo {
    max-width: 225px;
  }

  .nzl-footer-description {
    font-size: 15px;
  }

  .nzl-footer-column h3 {
    margin-bottom: 20px;
  }

  .nzl-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .nzl-footer-bottom-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .nzl-footer-container {
    width: min(100% - 26px, 1400px);
  }

  .nzl-contact-item {
    padding: 11px;
  }

  .nzl-contact-icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }

  .nzl-contact-item strong {
    font-size: 13px;
  }
}
