
.elementor-widget-oh-contact-card {
  width: 100%;
}

.oh-contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1.5rem;
  margin: 75px 30px;
  padding: clamp(50px, 4.9vw, 70px) clamp(20px, 4.9vw, 70px);
  border-radius: 10px;
  background-color: var(--oh-contact-card-fallback, #050022);
  background-image: var(--oh-contact-card-bg-mobile);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  overflow: hidden;
  min-height: 580px;
}

.oh-contact-card--disabled {
  flex-direction: row;
  align-items: center;
  min-height: 30px !important;
  max-height: 30px !important;
  padding: 0 !important;
  margin: 20px !important;
  background-image: none;
  gap: 0;
}

.oh-contact-card__disabled-message {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.oh-contact-card__inner {
  display: grid;
  gap: 1.25rem;
  max-width: 28rem;
}

.oh-contact-card__title {
  margin: 0;
  color: inherit;
}

.oh-contact-card__text {
  margin: 0;
  color: inherit !important;
}

.oh-contact-card__cta {
  justify-self: flex-start;
}

.oh-contact-card__location {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 22rem;
  padding: 15px 50px 15px 20px;
  border-radius: 10px 0;
  background: rgba(148, 174, 222, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  letter-spacing: -0.01em;
  overflow: hidden;
  max-width: 265px;;
}

.oh-contact-card__location-glow {
  background: linear-gradient(135deg, rgba(84, 119, 255, 0.35), rgba(112, 63, 255, 0.15));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 rgba(16, 26, 166, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.oh-contact-card__location-glow::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.35;
  pointer-events: none;
}

.oh-contact-card__location-icon {
  position: relative;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  z-index: 1;
}

.oh-contact-card__location-icon::before {
  content: '';
  position: absolute;
  inset: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFFFFF' d='M12 2a7 7 0 0 0-7 7c0 4.45 5.5 11.35 6.07 12.05a1.25 1.25 0 0 0 1.86 0C13.5 20.35 19 13.45 19 9a7 7 0 0 0-7-7m0 5a2 2 0 1 1 0 4a2 2 0 0 1 0-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
}

.oh-contact-card__location-text {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .oh-contact-card {
    margin: clamp(75px, 7vw, 100px) clamp(30px, 11vw, 158px);
    background-image: var(--oh-contact-card-bg-desktop, var(--oh-contact-card-bg-mobile));
    background-position: var(--oh-contact-card-bg-position, center);
    min-height: 445px;
    justify-content: center;
  }

  .oh-contact-card__location {
    align-self: flex-start;
  }
}

@media (max-width: 1023px) {
  .oh-contact-card {
    justify-content: start;
    align-items: center;
  }
  .oh-contact-card__title,
  .oh-contact-card__text {
    text-align: center;
  }

  .oh-contact-card__location {
    justify-self: center;
  }
}
