/* Hide background circles on small screens (we also used d-none d-md-block) */
@media (max-width: 767.98px) {
  .contact-page .circle { display: none; }
}

/* Theme buttons to match your palette */
.btn-theme {
  background-color: #cf741a;
  color: #fff;
  border: 1px solid #cf741a;
}
.btn-theme:hover,
.btn-theme:focus {
  background-color: #b96312;
  border-color: #b96312;
  color: #fff;
}

.btn-outline-theme {
  border: 1px solid #cf741a;
  color: #cf741a;
  background-color: #fff;
}
.btn-outline-theme:hover,
.btn-outline-theme:focus {
  background-color: #ffe3cc;
  border-color: #cf741a;
  color: #a0500c;
}

/* Common fix */
.btn-wrap {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-weight: 500;
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
}

.btn-email {
  background-color: #d48845;     /* darker orange for contrast */
  color: #fff !important;        /* white text now visible */
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background 0.2s ease-in-out;
}

.btn-email:hover {
  background-color: #b66d33;     /* even darker on hover */
  text-decoration: none;
}
/* Phone button - outlined style to differentiate */
.btn-phone {
  background-color: transparent; /* no fill */
  color: #d48845 !important;     /* orange text */
  border: 2px solid #d48845;     /* orange outline */
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-phone:hover {
  background-color: #d48845;     /* fill orange on hover */
  color: #fff !important;        /* text turns white */
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0; /* behind content */
}

/* Hide circles for screens smaller than 1024px */
@media (max-width: 1024px) {
  .circle {
    display: none !important;
  }
}
