/* Extracted from contact-us.html */
:root {
  --Kleanext-yellow: #fee023;
  --Kleanext-white: #ffffff;
  --Kleanext-green: #4CAF50;
  --Kleanext-blue: #01244a;
  --Kleanext-blue-accent: #178adc;
}

/* === Contact hero card that overlaps the map === */
.contact-layout1--enhanced {
  position: relative;
  z-index: 5;
}

.contact-layout1--enhanced .container {
  position: relative;
}

/* Soft backdrop behind the whole hero area so card feels grounded */
.contact-layout1--enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 40px;
  bottom: 0;
  margin: 0 12px;
  border-radius: 28px;
  background: linear-gradient(180deg,
      rgba(1, 36, 74, 0.06) 0%,
      rgba(1, 36, 74, 0) 60%);
  z-index: 0;
  pointer-events: none;
}

.contact-layout1--enhanced .contact-panel {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--Kleanext-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991.98px) {
  .contact-layout1--enhanced .contact-panel {
    flex-direction: column;
  }
}

.contact-layout1--enhanced .contact-panel__form {
  position: relative;
  padding: 40px 40px 32px;
  background: var(--Kleanext-white);
  flex: 1;
  min-width: 0;
}

@media (max-width: 767.98px) {
  .contact-layout1--enhanced .contact-panel__form {
    padding: 28px 0px 12px;
  }
}

/* Yellow accent bar at the very top of the form side */
.contact-layout1--enhanced .contact-panel__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--Kleanext-yellow);
  border-radius: 0 0 999px 0;
}

/* Header block inside the form */
.contact-layout1--enhanced .contact-panel__form-header {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 16px;
  padding-left: 14px;
  border-bottom: 1px solid rgba(1, 36, 74, 0.06);
}

.contact-layout1--enhanced .contact-panel__form-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      var(--Kleanext-yellow),
      var(--Kleanext-green));
}

.contact-layout1--enhanced .contact-panel__form .contact-panel__title {
  color: var(--Kleanext-blue);
  font-size: 28px;
}

.contact-layout1--enhanced .contact-panel__form .contact-panel__desc {
  color: var(--Kleanext-blue);
  opacity: 0.8;
  margin-bottom: 0;
}

/* Inputs: slightly rounded, soft border */
.contact-layout1--enhanced .contact-panel__form .form-control,
.contact-layout1--enhanced .contact-panel__form select.form-control,
.contact-layout1--enhanced .contact-panel__form textarea.form-control {
  border-radius: 12px;
  border-color: rgba(1, 36, 74, 0.08);
  background: rgba(1, 36, 74, 0.01);
}

.contact-layout1--enhanced .contact-panel__form .form-control:focus,
.contact-layout1--enhanced .contact-panel__form select.form-control:focus,
.contact-layout1--enhanced .contact-panel__form textarea.form-control:focus {
  border-color: var(--Kleanext-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.18);
}

/* Submit button turned into a pill using palette green/blue */
.contact-layout1--enhanced .contact-panel__form .btn__secondary.btn__block {
  border-radius: 999px;
  background: var(--Kleanext-green);
  border-color: var(--Kleanext-green);
}

.contact-layout1--enhanced .contact-panel__form .btn__secondary.btn__block:hover {
  background: var(--Kleanext-blue);
  border-color: var(--Kleanext-blue);
}

/* Right info panel: gradient using blue + green + yellow */
.contact-layout1--enhanced .contact-panel__info {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(140deg,
      var(--Kleanext-blue) 0%,
      var(--Kleanext-green) 50%,
      var(--Kleanext-yellow) 100%);
  color: var(--Kleanext-white);
  flex: 1;
  min-width: 0;
}

@media (max-width: 767.98px) {
  .contact-layout1--enhanced .contact-panel__info {
    padding: 28px 24px;
  }
}

@media (max-width: 991.98px) {
  .contact-layout1--enhanced .contact-panel__info {
    padding: 28px 24px;
  }
}

.contact-layout1--enhanced .contact-panel__info .bg-img {
  opacity: 0.12;
  mix-blend-mode: screen;
}

.contact-layout1--enhanced .contact-panel__info>div {
  position: relative;
  z-index: 2;
}

/* Darker overlay to boost text contrast */
.contact-layout1--enhanced .contact-panel__info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(1, 36, 74, 0.7),
      rgba(1, 36, 74, 0.3));
  z-index: 1;
}

.contact-layout1--enhanced .contact-panel__info .contact-panel__subtitle {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--Kleanext-yellow);
}

.contact-layout1--enhanced .contact-panel__info .contact-panel__title.color-white {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-layout1--enhanced .contact-panel__info .contact-panel__desc {
  color: var(--Kleanext-white);
  opacity: 0.98;
}

/* Extra readability boost via subtle text shadow */
.contact-layout1--enhanced .contact-panel__info .contact-panel__title.color-white,
.contact-layout1--enhanced .contact-panel__info .contact-panel__desc,
.contact-layout1--enhanced .contact-panel__info .contact__list a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.contact-layout1--enhanced .contact-panel__info .contact__list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-layout1--enhanced .contact-panel__info .contact__list i {
  flex-shrink: 0;
  min-width: 20px;
  margin-right: 10px;
  color: var(--Kleanext-yellow);
}

.contact-layout1--enhanced .contact-panel__info .contact__list a {
  color: var(--Kleanext-white);
  font-weight: 500;
}

.contact-layout1--enhanced .contact-panel__info .contact__list a:hover {
  text-decoration: underline;
}

/* Features section gets a soft, on-brand background and card lift */
.contact-features-soft {
  margin-top: 40px;
  padding-top: 56px;
  padding-bottom: 80px;
  background: linear-gradient(180deg,
      rgba(1, 36, 74, 0.03) 0%,
      rgba(1, 36, 74, 0) 60%);
}

.contact-features-soft .heading__subtitle {
  color: var(--Kleanext-green);
}

.contact-features-soft .feature-item {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: var(--Kleanext-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-features-soft .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.contact-features-soft .feature__body {
  background: var(--Kleanext-white);
}

.contact-features-soft .feature__title {
  color: var(--Kleanext-blue);
}

.contact-features-soft .feature__desc {
  color: var(--Kleanext-blue);
  opacity: 0.8;
}

.contact-features-soft .feature__icon {
  color: var(--Kleanext-green);
}

.contact-location-map {
  padding: 0 0 56px;
}

.contact-location-map .container {
  position: relative;
  width: 98vw;
  max-width: 98vw;
  padding-left: 0;
  padding-right: 0;
}

.contact-location-map__inner {
  border-radius: 24px;
  overflow: hidden;
  background: var(--Kleanext-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(1, 36, 74, 0.08);
}

.contact-location-map__frame {
  position: relative;
}

.contact-location-map__frame iframe {
  display: block;
  width: 100%;
  height: 760px;
  pointer-events: none;
}

.contact-location-map__frame.is-active iframe {
  pointer-events: auto;
}

.contact-location-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(1, 36, 74, 0.46) 0%, rgba(1, 36, 74, 0.72) 100%),
    radial-gradient(circle at top, rgba(254, 224, 35, 0.16), transparent 48%);
  color: var(--Kleanext-white);
  text-align: center;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.contact-location-map__frame.is-active .contact-location-map__overlay {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
}

.contact-location-map__overlay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location-map__overlay-title {
  max-width: 520px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.contact-location-map__overlay-copy {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.contact-location-map__frame.is-active::after {
  content: "Map unlocked. Move your cursor away to lock it again.";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(1, 36, 74, 0.76);
  color: var(--Kleanext-white);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}

@media (hover: none), (pointer: coarse) {
  .contact-location-map__frame.is-active::after {
    content: "Map unlocked. Tap outside the map to lock it again.";
  }
}

@media (max-width: 991.98px) {
  .contact-location-map__frame iframe {
    height: 600px;
  }

  .contact-location-map__overlay {
    gap: 8px;
  }

  .contact-location-map__overlay-title {
    font-size: 20px;
  }

  .contact-location-map__overlay-copy {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-location-map__frame.is-active::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .contact-location-map__frame iframe {
    height: 440px;
  }

  .contact-location-map__overlay {
    padding: 20px;
  }

  .contact-location-map__overlay-title {
    font-size: 22px;
  }

  .contact-location-map__overlay-copy {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .row {
    gap: 1rem !important;
  }

  .btn__xhight {
    height: 70px !important;
  }

  .col-sm-6,
  .form-group,
  .nice-select {
    margin-bottom: 0 !important;
  }

  .contact-layout1 .contact-panel__info {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .flex-wrap {
    flex-wrap: unset !important;
  }
}

@media (min-width: 992px) {
  .contact-layout1--enhanced .contact-panel {
    flex-wrap: wrap;
  }
}

/* 
Remove for now because it misaligns the label
.nice-select {
  line-height: 48px;
} */

.col-sm-12.col-md-12.col-lg-6.offset-lg-3 {
  margin-top: 4rem !important;
}

.select-dropdown-label {
  padding: 0 20px !important;
}

.feature-item .btn:hover {
  background: transparent;
  transform: translateY(0);
}