.dmh-contact {
  --dmh-accent: #bd221e;
  --dmh-bg: #fff;
  --dmh-text: #111827;
  --dmh-muted: #6b7280;
  --dmh-card: rgba(255, 255, 255, 0.92);
  --dmh-border: rgba(17, 24, 39, 0.1);
  --dmh-shadow: 0 18px 60px rgba(17, 24, 39, 0.1);
  --dmh-radius: 22px;

  --dmh-field-h: 48px;
  --dmh-ico-w: 46px;

  --dmh-map-h-d: 420px;
  --dmh-map-h-m: 300px;

  position: relative;
  background: radial-gradient(
      1200px 700px at 20% 0%,
      rgba(189, 34, 30, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 80% 20%,
      rgba(0, 0, 0, 0.04),
      transparent 55%
    ),
    var(--dmh-bg);
  color: var(--dmh-text);
  padding: 42px 0 56px;
  overflow: hidden;
}

.dmh-contact,
.dmh-contact * {
  font-family: "Noto Sans Armenian", "Noto Sans", system-ui, -apple-system,
    Segoe UI, Roboto, Arial, sans-serif !important;
}

.dmh-contact__title,
.dmh-contact__formHead h3,
.dmh-contact__rightHead h3 {
  font-family: "Noto Serif Armenian", "Noto Sans Armenian", "Noto Serif", serif !important;
}

/* MAP */
.dmh-contact__mapwrap {
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 0 16px;
  position: relative;
}
.dmh-contact__map {
  width: 100%;
  height: var(--dmh-map-h-d);
  border-radius: var(--dmh-radius);
  border: 1px solid var(--dmh-border);
  box-shadow: var(--dmh-shadow);
  overflow: hidden;
  background: #f3f4f6;
}
@media (max-width: 720px) {
  .dmh-contact__map {
    height: var(--dmh-map-h-m);
  }
}
.dmh-contact__mapfade {
  pointer-events: none;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 110px;
  border-radius: 0 0 var(--dmh-radius) var(--dmh-radius);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}

/* INNER */
.dmh-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.dmh-contact__head {
  text-align: center;
  padding: 18px 0 12px;
}

.dmh-contact__badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--dmh-border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  font-weight: 800;
  color: rgba(17, 24, 39, 0.75);
}
.dmh-contact__badgeDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dmh-accent);
  box-shadow: 0 0 0 6px rgba(189, 34, 30, 0.18);
  animation: dmhPulse 1.6s infinite ease-in-out;
}
@keyframes dmhPulse {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  60% {
    transform: scale(1.15);
    opacity: 0.65;
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}

.dmh-contact__title {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.8px;
  font-weight: 900;
}
.dmh-contact__t1 {
  display: block;
  color: var(--dmh-text);
}
.dmh-contact__t2 {
  display: block;
  color: var(--dmh-accent);
  text-shadow: 0 10px 30px rgba(189, 34, 30, 0.14);
}
.dmh-contact__subtitle {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--dmh-muted);
}

/* GRID */
.dmh-contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  margin-top: 14px;
}
@media (max-width: 1024px) {
  .dmh-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.dmh-contact__formCard,
.dmh-contact__right {
  border: 1px solid var(--dmh-border);
  background: var(--dmh-card);
  border-radius: var(--dmh-radius);
  box-shadow: var(--dmh-shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.dmh-contact__right {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.dmh-contact__formCard:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    520px 180px at 20% 0%,
    rgba(189, 34, 30, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.dmh-contact__form {
  position: relative;
  z-index: 2;
}

.dmh-contact__formHead h3,
.dmh-contact__rightHead h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
}
.dmh-contact__formHead p,
.dmh-contact__rightHead p {
  margin: 0 0 14px;
  color: var(--dmh-muted);
  line-height: 1.6;
}

.dmh-contact__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .dmh-contact__row2 {
    grid-template-columns: 1fr;
  }
}

/* FIELD */
.dmh-contact__field {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
    background 0.2s ease;
}

/* icon */
.dmh-contact__ico {
  flex: 0 0 var(--dmh-ico-w);
  width: var(--dmh-ico-w);
  min-height: var(--dmh-field-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmh-accent);
  background: linear-gradient(
    180deg,
    rgba(189, 34, 30, 0.14),
    rgba(189, 34, 30, 0.06)
  );
  border-right: 1px solid rgba(189, 34, 30, 0.18);
}
.dmh-contact__ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* input */
.dmh-contact__field input {
  flex: 1 1 auto;
  border: 0 !important;
  background: transparent !important;
  outline: none !important;
  min-width: 0;
  height: var(--dmh-field-h);
  padding: 0 14px !important;
  color: var(--dmh-text) !important;
  font-size: 14.5px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmh-contact__field input::placeholder {
  color: rgba(17, 24, 39, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* textarea */
.dmh-contact__field textarea {
  flex: 1 1 auto;
  border: 0 !important;
  background: transparent !important;
  outline: none !important;
  min-width: 0;
  padding: 12px 14px !important;
  color: var(--dmh-text) !important;
  font-size: 14.5px;
  line-height: 1.45;
  min-height: 140px;
  resize: vertical;
}
.dmh-contact__field textarea::placeholder {
  color: rgba(17, 24, 39, 0.45);
}

.dmh-contact__field--textarea {
  align-items: stretch;
}
.dmh-contact__field--textarea .dmh-contact__ico {
  align-items: flex-start;
  padding-top: 14px;
}

/* focus */
.dmh-contact__field:focus-within {
  border-color: rgba(189, 34, 30, 0.55);
  box-shadow: 0 0 0 5px rgba(189, 34, 30, 0.1);
  transform: translateY(-1px);
  background: #fff;
}

/* errors */
.dmh-contact__err {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  margin: 6px 0 0;
  padding: 0 10px 10px;
  color: #b42318;
  font-size: 12px;
  min-height: 14px;
}

/* BUTTON */
.dmh-contact__btn {
  width: 100%;
  border: 0 !important;
  cursor: pointer;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 900 !important;
  color: #fff !important;
  background: linear-gradient(90deg, var(--dmh-accent), #8f1412) !important;
  box-shadow: 0 16px 40px rgba(189, 34, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.dmh-contact__btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}
.dmh-contact__btn:hover:before {
  transform: translateX(120%);
}
.dmh-contact__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(189, 34, 30, 0.3);
}
.dmh-contact__btn:active {
  transform: translateY(0) scale(0.99);
}
.dmh-contact__btnArr {
  transition: transform 0.18s ease;
}
.dmh-contact__btn:hover .dmh-contact__btnArr {
  transform: translateX(4px);
}

.dmh-contact__note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--dmh-muted);
  min-height: 18px;
}

/* SUCCESS */
.dmh-contact__success {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px 10px;
}
.dmh-contact__successIcon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  font-size: 28px;
  margin: 0 auto 12px;
}
.dmh-contact__successTitle {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}
.dmh-contact__successText {
  color: var(--dmh-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.dmh-contact__btnGhost {
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

/* RIGHT methods */
.dmh-contact__method {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none !important;
  color: var(--dmh-text) !important;
  margin-bottom: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.dmh-contact__method:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
  border-color: rgba(189, 34, 30, 0.28);
}
.dmh-contact__methodIco {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(189, 34, 30, 0.14),
    rgba(189, 34, 30, 0.05)
  );
  border: 1px solid rgba(189, 34, 30, 0.22);
  color: var(--dmh-accent);
  flex: 0 0 auto;
}
.dmh-contact__methodIco svg {
  width: 22px;
  height: 22px;
  display: block;
}
.dmh-contact__methodText {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dmh-contact__methodT {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
}
.dmh-contact__methodD {
  color: var(--dmh-muted);
  font-size: 12px;
  line-height: 1.2;
}
.dmh-contact__methodV {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dmh-contact__methodArr {
  margin-left: auto;
  color: rgba(17, 24, 39, 0.45);
  font-weight: 900;
  transition: transform 0.18s ease, color 0.18s ease;
}
.dmh-contact__method:hover .dmh-contact__methodArr {
  transform: translateX(4px);
  color: rgba(17, 24, 39, 0.85);
}

.dmh-contact__guarantee {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(189, 34, 30, 0.2);
  background: radial-gradient(
    420px 180px at 20% 0%,
    rgba(189, 34, 30, 0.14),
    rgba(189, 34, 30, 0.05)
  );
  padding: 14px;
}
.dmh-contact__guaranteeT {
  font-weight: 900;
  margin-bottom: 6px;
}
.dmh-contact__guaranteeP {
  color: rgba(17, 24, 39, 0.78);
  line-height: 1.6;
  font-size: 13px;
}

/* Leaflet bouncing marker */
.leaflet-marker-icon.dmh-leaflet-divicon,
.dmh-leaflet-divicon {
  background: transparent !important;
  border: 0 !important;
}

.dmh-leaflet-marker {
  position: relative;
  width: 44px;
  height: 44px;
  transform-origin: 50% 100%;
  animation: dmhBounce 1.15s infinite ease-in-out;
  filter: drop-shadow(0 12px 20px rgba(17, 24, 39, 0.25));
}
@keyframes dmhBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.03);
  }
}
.dmh-leaflet-pin {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dmh-leaflet-pin strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #fff;
  background: var(--dmh-accent);
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(189, 34, 30, 0.28);
}
.dmh-leaflet-shadow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 18px;
  height: 8px;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.22);
  filter: blur(2px);
  border-radius: 999px;
  animation: dmhShadow 1.15s infinite ease-in-out;
}
@keyframes dmhShadow {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translateX(-50%) scale(1.55);
    opacity: 0.18;
  }
}
