/* Base button styles */
a.vc_btn3 {
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 0 !important;
  border-style: solid !important;
  width: 400px !important;
  text-align: center !important;
  display: inline-block !important;
  box-sizing: border-box;
  color: #fff !important;
  transition: background-color 0.2s ease-in-out;
}

/* Custom button colors */
a.vc_btn3-color-peacoc {
  background-color: #05aa94 !important;
  border-color: #05aa94 !important;
}

a.vc_btn3-color-green {
  background-color: #fcaf18 !important;
  border-color: #fcaf18 !important;
}

a.vc_btn3-color-purple {
  background-color: #0160af !important;
  border-color: #0160af !important;
}

/* Hover effect with darkened background only */
a.vc_btn3-color-peacoc:hover {
  background-color: #04897a !important;
  border-color: #04897a !important;
}

a.vc_btn3-color-green:hover {
  background-color: #e39c13 !important;
  border-color: #e39c13 !important;
}

a.vc_btn3-color-purple:hover {
  background-color: #014d8c !important;
  border-color: #014d8c !important;
}

/* Responsive: full width on mobile */
@media (max-width: 470px) {
  a.vc_btn3 {
    width: 100% !important;
  }
}

/* ===== Custom Dropdown Menu for Contact Us ===== */

.custom-dropdown-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  min-width: 220px;
  z-index: 999;
  margin-top: 5px;
  padding: 0;
  list-style: none;
}

.custom-dropdown-menu li {
  padding: 10px 15px;
}

.custom-dropdown-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.custom-dropdown-wrapper:hover .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-menu li a:hover {
  background-color: #f5f5f5;
}