@charset "UTF-8";
/* =============================================================================
   CUSTOM FOOTER
   Two-part layout: logo (left ~35%) | columns (right ~65%)
============================================================================= */
footer.et-l.et-l--footer {
  display: none;
}

.site-footer {
  background-color: var(--header-color-dark, #0d1317);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

/* ---- Main section ---- */
.site-footer__main {
  padding: 48px 0 0;
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Two-part layout: logo left, columns right */
.site-footer__main > .site-footer__container {
  display: flex;
  align-items: flex-start;
}

/* ---- Logo area (left ~35%) ---- */
.site-footer__logo {
  flex: 0 1 50%;
  padding-top: 8px;
}

.site-footer__logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* ---- Columns area (right ~65%) — 3-column grid ---- */
.site-footer__columns {
  flex: 0 1 50%;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  padding-top: 8px;
}

/* ---- Column headings — Inter Semi Bold, 14px, #868686, uppercase ---- */
.site-footer__heading {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #868686;
  margin: 0 0 10px;
  line-height: 24px;
}

.site-footer__heading--mt {
  margin-top: 32px;
}

/* ---- Link lists — Inter Tight Medium, 16px, white ---- */
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer__list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--header-color-accent, #ebd14a);
}

/* ---- Bottom bar ---- */
.site-footer__bottom {
  margin-top: 48px;
  padding: 24px 0;
}

.site-footer__bottom > .site-footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__bottom-left span,
.site-footer__bottom-left a,
.site-footer__bottom-right span,
.site-footer__bottom-right a {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #868686;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__bottom-left a:hover,
.site-footer__bottom-right a:hover {
  color: #fff;
}

/* ---- Footer responsive ---- */
@media (max-width: 980px) {
  .site-footer__container {
    padding: 0 24px;
  }
  .site-footer__main > .site-footer__container {
    flex-direction: column;
    gap: 40px;
  }
  .site-footer__logo {
    flex: none;
  }
  .site-footer__columns {
    flex: none;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom > .site-footer__container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
/* =============================================================================
   CUSTOM POPUPS — replaces "Popups for Divi" plugin
============================================================================= */
.site-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 19, 23, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.site-popup.is-open {
  opacity: 1;
  visibility: visible;
}

/* ---- Panel ---- */
.site-popup__panel {
  position: relative;
  background: #ebd14a;
  max-width: 1300px;
  width: calc(100% - 48px);
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1;
  cursor: default;
}

.site-popup.is-open .site-popup__panel {
  transform: translateY(0);
}

/* ---- Split layout: left text + right form ---- */
.site-popup__panel--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

/* Left side */
.site-popup__left {
  padding: 60px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-popup__title {
  font-family: "DIN Condensed", "Inter", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  color: #0d1317;
  margin: 0 0 20px;
  text-transform: none;
}

.site-popup__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #0d1317;
  margin: 0 0 32px;
}

.site-popup__contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #0d1317;
  margin: 0 0 16px;
}

.site-popup__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #0d1317;
}

.site-popup__contact-row svg {
  flex-shrink: 0;
}

.site-popup__contact-row a {
  color: #0d1317;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 16px;
  font-weight: 500;
}

.site-popup__contact-row a:hover {
  text-decoration: none;
}

/* Right side — form */
.site-popup__right {
  padding: 60px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Close button (X) ---- */
.site-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #0d1317;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.site-popup__close:hover {
  opacity: 0.6;
}

/* ---- Gravity Forms inside popup ---- */
.site-popup .gform_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.site-popup .gform_title,
.site-popup .gform_description {
  display: none !important;
}

.site-popup .gform_body {
  padding: 0 !important;
}

/* Reset Gravity Forms field wrappers */
.site-popup .gform_fields {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.site-popup .gfield {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Half-width fields (First Name + Last Name row) */
.site-popup .gfield--width-half,
.site-popup .gfield.gf_left_half,
.site-popup .gfield.gf_right_half {
  width: calc(50% - 8px) !important;
  flex: 0 0 calc(50% - 8px) !important;
}

/* Hide labels — use placeholders */
.site-popup .gfield label.gfield_label,
.site-popup .gfield .ginput_complex label {
  display: none !important;
}

/* Inputs */
/* Triple-class specificity to override Divi's et-core-unified height: 38px !important */
.site-popup .gform_wrapper .gfield input:not([type=submit]),
.site-popup .gform_wrapper .gfield textarea,
.site-popup .gform_wrapper .gfield select,
.site-popup .gform_wrapper input[type=text],
.site-popup .gform_wrapper input[type=email],
.site-popup .gform_wrapper input[type=tel],
.site-popup .gform_wrapper input[type=number],
.site-popup .gform_wrapper select {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  border: none !important;
  border-bottom: 1.5px solid #0d1317 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 14px 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #0d1317 !important;
  outline: none !important;
  box-shadow: none !important;
  line-height: normal !important;
  display: block !important;
}

/* Select — keep native arrow */
.site-popup .gform_wrapper .gfield select,
.site-popup .gform_wrapper select {
  -webkit-appearance: menulist !important;
  appearance: menulist !important;
}

/* Non-select inputs — no appearance */
.site-popup .gform_wrapper .gfield input:not([type=submit]),
.site-popup .gform_wrapper .gfield textarea {
  -webkit-appearance: none !important;
  appearance: none !important;
}

.site-popup .gfield textarea {
  min-height: 100px !important;
  resize: vertical;
}

.site-popup .gfield input::placeholder,
.site-popup .gfield textarea::placeholder {
  color: #0d1317 !important;
  opacity: 1 !important;
}

.site-popup .gfield select {
  color: #0d1317 !important;
}

/* Validation resets */
.site-popup .gfield_error input,
.site-popup .gfield_error textarea {
  border-color: #c00 !important;
}

.site-popup .validation_message {
  padding: 4px 0 !important;
  font-size: 12px !important;
}

/* Submit button */
.site-popup .gform_footer,
.site-popup .gform_page_footer {
  padding: 0 !important;
  margin: 16px 0 0 !important;
}

.site-popup .gform_button,
.site-popup .gform_wrapper input[type=submit] {
  background: #0d1317 !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: opacity 0.2s ease !important;
}

.site-popup .gform_button:hover,
.site-popup .gform_wrapper input[type=submit]:hover {
  opacity: 0.85 !important;
}

/* ---- Popup responsive ---- */
@media (max-width: 768px) {
  .site-popup__panel--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .site-popup__panel {
    max-height: 100vh;
    overflow-y: auto;
  }
  .site-popup__left {
    padding: 48px 24px 24px;
  }
  .site-popup__right {
    padding: 24px 24px 48px;
  }
  .site-popup__title {
    font-size: 36px;
  }
  .site-popup__close {
    top: 16px;
    right: 16px;
  }
}