html {
  scroll-behavior: smooth;
}


/* Dropdown styling */
.sub-menu {
    border-radius: 8px;
}

.nav-button a {
    background-color: #ff3b7a;
    color: white !important;

    padding: 8px px !important;   /* ⬅️ smaller */
    font-size: 14px;                /* ⬅️ slightly smaller text */

    border-radius: 999px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    line-height: 1 !important;
    white-space: nowrap;            /* ⬅️ stop wrapping */

    transition: all 0.2s ease;
}
``

/* Hover */
.nav-button a:hover {
    background-color: #d92a61;
}
/* Dropdown container */
.sub-menu {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Dropdown items */
.sub-menu li a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    color: #1f2937;

    background: transparent;
    transition: all 0.2s ease;
}

.sub-menu li a:hover {
    background-color: #ff3b7a;
    color: #ffffff;
}

.sub-menu {
    margin-top: 8px;
}
.sub-menu li a:hover {
    transform: translateX(3px);
}
/*Form styling 
 * 
 * 
 * *\
 * 
 * /* FORM CONTAINER */
.wpcf7 form {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* FIELD GROUP SPACING */
.wpcf7 p {
    margin: 0 0 18px;
}

/* LABELS */
.wpcf7 label {
    font-weight: 500;
    color: #1f2937;
}

/* INPUTS */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

/* FOCUS */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #ff3b7a;
    box-shadow: 0 0 0 2px rgba(255, 59, 122, 0.2);
}

/* RADIO */
.wpcf7 .wpcf7-radio {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

/* BUTTON */
.wpcf7 input[type="submit"] {
    background: #ff3b7a;
    color: #fff;
    border-radius: 999px;
    padding: 14px 32px;
    border: none;
    margin-top: 20px;
}
/* --- FIX RADIO LAYOUT COMPLETELY --- */
.wpcf7 .wpcf7-radio {
    display: flex;
    gap: 30px;
    margin-top: 8px;
}

/* Fix each radio option */
.wpcf7 .wpcf7-list-item {
    display: flex;
    align-items: center;
    white-space: nowrap; /* ✅ STOP text breaking */
    margin: 0;
}

/* Fix label text */
.wpcf7 .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* ✅ force single line */
}
/* Fix mobile dropdown text visibility */
@media (max-width: 768px) {
  .sub-menu a {
    color: #1F2937 !important;
  }

  .sub-menu {
    background-color: #ffffff !important;
  }
}
/* Mobile menu hover/active state */
@media (max-width: 768px) {
  .menu a:hover,
  .menu a:focus,
  .menu .current-menu-item > a {
    color: #ffffff !important;
  }
}
@media (max-width: 768px) {

  /* Make dropdown match button exactly */
  .menu li {
    position: relative;
  }

  .menu .sub-menu {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
  }

}

/* Force equal grid layout for benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 20px;
}

/* Force each item to behave consistently */
.benefits-grid .wp-block-kadence-infobox {
  width: 100%;
}

/* Align icon + text properly */
.benefits-grid .kt-blocks-info-box-link-wrap {
  display: flex;
  align-items: flex-start;
}

/* Keep icon fixed */
.benefits-grid .kt-blocks-info-box-media {
  flex-shrink: 0;
  margin-right: 12px;
}

/* Force text to fill */
.benefits-grid .kt-infobox-textcontent {
  flex: 1;
}
``
.clean-check-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.clean-check-list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;

  /* match site text */
  font-family: inherit;
  font-size: 1em;
  line-height: 1.6;
  color: inherit;
}

/* icon */
.clean-check-list .icon {
  color: #ff3b7a;
  font-weight: 600;
  line-height: 1.6;
}

.site-header {
    margin-bottom: 30px;
}
/* Base mobile drawer text (main menu stays white on black) */
#mobile-drawer .drawer-inner {
    color: #ffffff;
}

/* Submenu default (light background → dark text) */
#mobile-drawer .sub-menu a {
    color: #1a1a1a !important;
}

/* Fix current/visited items after navigation */
#mobile-drawer .sub-menu .current-menu-item > a,
#mobile-drawer .sub-menu .current_page_item > a,
#mobile-drawer .sub-menu a:visited {
    color: #1a1a1a !important;
}

/* ✅ Restore hover / tap state to WHITE (what you want) */
#mobile-drawer .sub-menu a:hover,
#mobile-drawer .sub-menu a:focus,
#mobile-drawer .sub-menu a:active {
    color: #ffffff !important;
}
``