/* WRAPT Floating Contact Bubble */

.contact-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #2E7D32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  user-select: none;
}

/* Floating Panel */
.contact-panel {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 320px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 9999;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.contact-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Form Fields */
.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-panel button {
  width: 100%;
  padding: 12px;
  background: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Success Message */
.contact-success {
  display:none;
  background:#E8F5E9;
  border:1px solid #C8E6C9;
  padding:12px;
  border-radius:8px;
  margin-bottom:12px;
  color:#2E7D32;
  font-weight:600;
}
