/* Contact Bubble - !important needed to override Elementor kit global button styles */
button.dbitk-contact-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #ac86a6 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9998;
  transition: transform 150ms ease;
  border: none;
  padding: 0;
}
button.dbitk-contact-bubble:hover {
  transform: scale(1.1);
}
button.dbitk-contact-bubble svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Backdrop */
.dbitk-contact-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, visibility 150ms ease;
}
.dbitk-contact-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal */
.dbitk-contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: white;
  border-radius: 12px;
  padding: 28px 24px 24px;
  width: 320px;
  max-width: calc(100% - 32px);
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}
.dbitk-contact-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.dbitk-contact-modal h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #3d3d3c;
}
.dbitk-contact-modal .dbitk-contact-subtitle {
  margin: 0 0 20px;
  font-size: 16px;
  color: #636565;
}

/* Close button - !important needed to override Elementor kit global button styles */
button.dbitk-contact-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none !important;
  border: none;
  cursor: pointer;
  color: #636565;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
}
button.dbitk-contact-close:hover {
  color: #3d3d3c;
}

/* Cards */
.dbitk-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f5f0f4;
  border: 1px solid #d4c4d1;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 150ms ease;
}
.dbitk-contact-card:last-child {
  margin-bottom: 0;
}
.dbitk-contact-card:hover, .dbitk-contact-card:focus {
  background: #ede4ea;
  text-decoration: none;
}

.dbitk-contact-card-icon {
  width: 40px;
  height: 40px;
  background: #ac86a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dbitk-contact-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dbitk-contact-card-icon--faq svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.5;
}

.dbitk-contact-card-label {
  font-weight: 600;
  color: #3d3d3c;
  font-size: 15px;
}

.dbitk-contact-card-sublabel {
  color: #636565;
  font-size: 13px;
}

/* Divider */
.dbitk-contact-divider {
  border: none;
  border-top: 1px solid #dadada;
  margin: 6px 0 16px;
  position: relative;
}
.dbitk-contact-divider span {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 10px;
  font-size: 12px;
  color: #636565;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 767px) {
  .dbitk-contact-modal {
    width: calc(100% - 32px);
  }
}
/* Body scroll lock */
body.dbitk-contact-open {
  overflow: hidden;
}/*# sourceMappingURL=contact-bubble.css.map */