/*
Theme Name: Boaz Property Group
Theme URI: https://boazpropertygroup.com
Author: Boaz Property Group
Description: Custom Bootstrap 5 based theme for Boaz Property Group.
Version: 1.0.0
Text Domain: boaz-theme
*/

/* Base typography and colors */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

:root {
  --boaz-white: #ffffff;
  --boaz-accent: #0055a6;
  --boaz-body-bg: #ffffff;
  --boaz-body-color: #444444;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--boaz-body-bg);
  color: var(--boaz-body-color);
}

a {
  color: var(--boaz-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #003a73;
  text-decoration: none;
}

.navbar-boaz {
  background-color: var(--boaz-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.navbar-boaz .navbar-brand {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar-boaz .nav-link {
  font-weight: 500;
  color: #222222;
}

.navbar-boaz .nav-link:hover,
.navbar-boaz .nav-link:focus {
  color: var(--boaz-accent);
}

.navbar-boaz .navbar-nav .current-menu-item > .nav-link,
.navbar-boaz .navbar-nav .current_page_item > .nav-link,
.navbar-boaz .navbar-nav .current-menu-ancestor > .nav-link {
  color: var(--boaz-accent);
}

@media (min-width: 992px) {
  .navbar-boaz .navbar-nav .nav-item {
    margin: 0 0.5rem;
  }

  .navbar-boaz .dropdown-menu {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 0.4rem 0;
    margin-top: 0.75rem;
  }
}

.navbar-boaz .navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-boaz .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-boaz .navbar-toggler:hover {
  background-color: transparent;
}

.navbar-boaz .navbar-toggler .fa-bars {
  font-size: 1.4rem;
  color: #222222;
}

.boaz-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1020;
}

/* Mobile navbar behavior: dropdown under fixed-height header */
@media (max-width: 991.98px) {
  .navbar-boaz {
    position: relative;
    z-index: 1030;
  }

  .navbar-boaz .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--boaz-white);
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-boaz .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .navbar-boaz .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem;
    margin: 0;
    background-color: transparent;
  }

  .navbar-boaz .dropdown-menu .dropdown-item {
    text-align: center;
  }

  .navbar-boaz .navbar-collapse {
    text-align: center;
  }

  body.boaz-nav-open {
    overflow: hidden;
  }

  body.boaz-nav-open .boaz-nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  body.boaz-nav-open main,
  body.boaz-nav-open .boaz-footer,
  body.boaz-nav-open .boaz-titlebar {
    filter: none;
  }
}

@media (min-width: 992px) {
  .navbar-boaz .navbar-collapse {
    position: static;
    box-shadow: none;
    padding: 0;
  }
}

.boaz-footer {
  background: linear-gradient(135deg, #0055a6, #003a73);
  color: var(--boaz-white);
  font-size: 0.9rem;
}

.boaz-footer-main {
  padding: 3rem 0 2rem;
}

.boaz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0;
}

.boaz-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.boaz-footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.boaz-footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.boaz-footer-logo {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.boaz-footer-copy {
  color: rgba(255, 255, 255, 0.75);
}

.boaz-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.boaz-footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 1);
}

.boaz-footer-menu li + li {
  margin-top: 0.25rem;
}

.boaz-footer-main ul {
  padding-left: 0;
}

.boaz-footer-menu {
  list-style: none;
  margin: 0;
}

.boaz-footer-menu li {
  list-style: none;
  margin-left: 0;
}

.boaz-footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.boaz-footer-menu a:hover {
  color: var(--boaz-white);
}

.boaz-footer-legal li + li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.45rem 0 0.25rem;
}

.boaz-footer-contact i {
  color: rgba(255, 255, 255, 0.7);
}

/* News page */
.boaz-news-page {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.boaz-news-intro p:last-child {
  margin-bottom: 0;
}

.boaz-news-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.boaz-news-card-image {
  position: relative;
  overflow: hidden;
}

.boaz-news-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.boaz-news-card-title a {
  color: #404040;
}

.boaz-news-card-title a:hover {
  color: var(--boaz-accent);
}

.boaz-news-card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.boaz-news-card-category {
  color: var(--boaz-accent);
}

.boaz-news-card-date {
  color: rgba(0, 0, 0, 0.55);
}

.boaz-news-card-excerpt {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.boaz-news-card-read {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--boaz-accent);
}

.boaz-news-card-read i {
  font-size: 0.8rem;
}

.boaz-news-card-read:hover {
  color: #003a73;
}

.boaz-news-card-read:hover i {
  transform: translateX(2px);
}

.boaz-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
}

.boaz-news-card:hover .boaz-news-card-image img {
  transform: scale(1.06);
}

.boaz-news-pagination .page-link {
  border-radius: 999px !important;
  margin: 0 0.15rem;
  border: none;
  color: #404040;
}

.boaz-news-pagination .page-item.active .page-link {
  background-color: var(--boaz-accent);
  color: #ffffff;
}

.boaz-news-pagination .page-link:hover {
  background-color: #e5eef8;
}

@media (max-width: 991.98px) {
  .boaz-footer-main {
    text-align: center;
  }

  .boaz-footer-main .boaz-footer-heading,
  .boaz-footer-main .boaz-footer-copy,
  .boaz-footer-main .boaz-footer-contact,
  .boaz-footer-main .boaz-footer-menu {
    text-align: center;
  }

  .boaz-footer-contact li {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .boaz-footer-col-large {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .boaz-footer-col-small {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.boaz-titlebar {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.boaz-titlebar-inner {
  width: 100%;
  padding: 1.5rem 0;
}

.boaz-titlebar-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
}

.boaz-hero-404 {
  padding: 6rem 0;
  text-align: center;
}

.boaz-hero-404 h1 {
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.boaz-hero-404 p {
  margin-bottom: 2rem;
  color: #555555;
}

/* Single post */
.boaz-post-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.boaz-post-hero--noimage {
  background-image: linear-gradient(135deg, #0055a6, #003a73);
}

.boaz-post-hero-inner {
  width: 100%;
  padding: 3.25rem 0;
}

.boaz-post-hero-title {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  font-weight: 600;
}

.boaz-post-hero-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.boaz-post-hero-category {
  color: var(--boaz-accent);
}

.boaz-post-hero-date {
  color: rgba(255, 255, 255, 0.8);
}

.boaz-post-wrapper {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.boaz-post-meta-detail {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.boaz-post-meta-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
}

.boaz-post-meta-list i {
  font-size: 0.95em;
}

.boaz-post-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

.boaz-post-content p {
  margin-bottom: 1.2rem;
}

.boaz-post-content h2,
.boaz-post-content h3,
.boaz-post-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.boaz-post-content ul,
.boaz-post-content ol {
  margin-bottom: 1.2rem;
}

.boaz-post-content img {
  max-width: 100%;
  height: auto;
}

.boaz-post-content a {
  color: var(--boaz-accent);
}

.boaz-post-content a:hover {
  color: #003a73;
}

/* Single development */
.boaz-dev-hero {
  min-height: 260px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.boaz-dev-hero-inner {
  width: 100%;
  padding: 2.75rem 0;
}

.boaz-dev-hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
}

.boaz-dev-wrapper {
  padding-top: 2.75rem;
  padding-bottom: 4rem;
}

.boaz-dev-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.9rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.boaz-dev-location {
  font-size: 0.95rem;
  color: #555555;
}

.boaz-dev-price {
  font-size: 1.1rem;
  color: var(--boaz-accent);
  font-weight: 600;
}

@media (min-width: 768px) {
  .boaz-dev-price {
    order: 1;
  }

  .boaz-dev-location {
    order: 2;
    text-align: right;
  }
}

.boaz-dev-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

.boaz-dev-section {
  margin-top: 0;
}

.boaz-dev-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.boaz-dev-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin: 2rem 0;
}

.boaz-dev-gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}

.boaz-dev-gallery-item {
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  overflow: hidden;
}

.boaz-dev-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .boaz-dev-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 575.98px) {
  .boaz-dev-gallery-grid {
    column-count: 1;
  }
}

.boaz-dev-floorplan-inner img {
  border-radius: 1rem;
}

.boaz-dev-video-inner {
  border-radius: 1rem;
  overflow: hidden;
}

.boaz-dev-documents-list .boaz-dev-document-link {
  color: #222222;
}

.boaz-dev-documents-list .boaz-dev-document-link:hover {
  color: var(--boaz-accent);
}

.boaz-dev-documents-list .fa-file-pdf {
  color: #e63946;
}

.boaz-dev-map-inner {
  border-radius: 1rem;
  overflow: hidden;
}

.boaz-dev-sidebar {
  position: sticky;
  top: 96px;
}

.boaz-dev-sidebar-card {
  background-color: #f7f9fc;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
}

.boaz-dev-sidebar-title,
.boaz-post-sidebar .widget-title {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--boaz-accent);
}

.boaz-dev-sidebar-text {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 1.25rem;
}

.boaz-dev-sidebar .gform_wrapper form {
  margin-bottom: 0;
}

.boaz-dev-sidebar .gform_wrapper .gfield {
  margin-bottom: 0.25rem;
}

.boaz-dev-sidebar .gform_wrapper .gfield_label {
  margin-bottom: 0.1rem;
}

.boaz-dev-sidebar .gform_wrapper input[type="text"],
.boaz-dev-sidebar .gform_wrapper input[type="email"],
.boaz-dev-sidebar .gform_wrapper input[type="tel"],
.boaz-dev-sidebar .gform_wrapper input[type="number"],
.boaz-dev-sidebar .gform_wrapper select {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.boaz-dev-sidebar .gform_wrapper textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}

.boaz-dev-sidebar .gform_wrapper .gform_footer .gform_button,
.boaz-dev-sidebar .gform_wrapper .gform_page_footer .gform_button {
  width: auto;
  display: inline-block;
}

.boaz-post-sidebar .gform_wrapper input[type="text"],
.boaz-post-sidebar .gform_wrapper input[type="email"],
.boaz-post-sidebar .gform_wrapper input[type="tel"],
.boaz-post-sidebar .gform_wrapper input[type="number"],
.boaz-post-sidebar .gform_wrapper select {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.boaz-post-sidebar .gform_wrapper textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}

/* Contact page */
.boaz-contact-page {
  background-color: #ffffff;
}

.boaz-contact-heading {
  font-weight: 600;
}

.boaz-contact-intro {
  font-size: 0.98rem;
  color: #444444;
}

.boaz-contact-list i {
  color: var(--boaz-accent);
}

.boaz-contact-list a {
  color: #404040;
}

.boaz-contact-list a:hover {
  color: var(--boaz-accent);
}

.boaz-contact-form {
  border-radius: 1rem;
}

.boaz-contact-form h2 {
  color: var(--boaz-accent);
}

.boaz-contact-page .gform_wrapper form {
  margin-bottom: 0;
}

.boaz-contact-page .gform_wrapper .gfield {
  margin-bottom: 0.4rem;
}

.boaz-contact-page .gform_wrapper .gfield_label {
  margin-bottom: 0.25rem;
}

.boaz-contact-page .gform_wrapper input[type="text"],
.boaz-contact-page .gform_wrapper input[type="email"],
.boaz-contact-page .gform_wrapper input[type="tel"],
.boaz-contact-page .gform_wrapper input[type="number"],
.boaz-contact-page .gform_wrapper select {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.boaz-contact-page .gform_wrapper textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}

/* Homepage */
.boaz-home-hero {
  min-height: 640px;
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #e5eef8 0, #ffffff 55%, #f4f7fb 100%);
}

.boaz-home-hero--image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.boaz-home-hero-title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: #404040;
}

.boaz-home-hero--image .boaz-home-hero-title {
  color: #ffffff;
}

.boaz-home-hero-subtitle {
  max-width: 560px;
  font-size: 1rem;
  color: #444444;
}

.boaz-home-hero--image .boaz-home-hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.boaz-home-hero-ctas {
  margin-top: 0.25rem;
}

.btn-boaz-secondary {
  background-color: #ffffff;
  border: none;
  color: #111111;
  border-radius: 0.9rem;
  padding: 0.6rem 1.4rem;
}

.btn-boaz-secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  color: #111111;
}

.boaz-home-intro-image img {
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.boaz-home-intro {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.boaz-home-intro-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #404040;
}

.boaz-home-intro-subtitle {
  font-size: 0.95rem;
  color: var(--boaz-accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.boaz-home-intro-text {
  font-size: 0.98rem;
  color: #444444;
}

.boaz-home-developments {
  background-color: #f7f9fc;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.boaz-locations-section.boaz-home-developments {
  padding-top: 0;
  padding-bottom: 0;
}

.boaz-home-developments-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--boaz-accent);
}

.boaz-home-developments-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
}

.boaz-dev-card {
  border: none;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.boaz-dev-card-image {
  position: relative;
  height: 190px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35)),
    url("http://localhost:8888/boaz-developments/wp-content/uploads/2026/02/pexels-illustrate-digital-ug-924569584-28101470-scaled.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.boaz-dev-card-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: rgba(255, 255, 255, 0.96);
  color: #404040;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.boaz-dev-card-title {
  color: #404040;
}

.boaz-dev-card-location {
  font-size: 0.9rem;
  color: #707070;
}

.boaz-dev-card-investment {
  font-size: 0.9rem;
  color: #222222;
}

.boaz-dev-card-meta {
  color: #777777;
}

.boaz-home-news {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.boaz-section-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin: 0;
}

.boaz-home-developments .row.mb-4,
.boaz-home-news .row.mb-4 {
  margin-bottom: 3.5rem !important;
}

.boaz-home-cta {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #0055a6, #003a73);
  color: #ffffff;
}

.boaz-home-cta-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
}

.boaz-home-cta-input {
  border-radius: 0.9rem;
  border: none;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  flex: 0 0 360px;
  max-width: 480px;
}

.boaz-home-cta-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.boaz-home-cta-form .btn-boaz-primary {
}

@media (max-width: 767.98px) {
  .boaz-home-cta-inline {
    align-items: stretch;
  }

  .boaz-home-cta-input {
    flex: 0 0 auto;
    width: 100% !important;
    max-width: 100%;
    margin: 0;
  }

  .boaz-home-cta-form {
    flex-direction: column !important;
  }

  .boaz-home-cta-form .btn-boaz-primary {
    width: 100%;
  }
}


@media (min-width: 992px) {
  .boaz-post-sidebar {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 2rem;
    margin-left: 0.5rem;
  }
}



.btn-boaz-primary,
.wp-block-button__link,
input[type="submit"],
button,
.gf_button,
.gform_button {
  background-color: var(--boaz-accent);
  border: none;
  color: var(--boaz-white);
  border-radius: 0.9rem;
  padding: 0.6rem 1.4rem;
  display: inline-block;
}

.btn-boaz-primary:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
button:hover,
.gf_button:hover,
.gform_button:hover {
  background-color: #003a73;
  border: none;
  color: var(--boaz-white);
}
