@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");

body {
  font-family: "Raleway", sans-serif;
}

:root {
  --section-padding-top: 5rem; /* same as pt-20 */
  --section-padding-bottom: 7rem; /* same as pb-32 */
  --primaryColor: #f39316;
  --headingColor: #676766;
  --greyColor: #000000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
}

.section-padding {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.accordion-toggle {
  cursor: pointer;
}

.gform_heading {
  display: none !important;
}

/* =================== Menus css here =================== */
.main-menu > li > a {
  font-size: 20px;
  opacity: 0.8;
  color: #000;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: 0.2s ease;
}

.main-menu > li:hover > a {
  color: #f39316;
  font-weight: 600;
  opacity: 1;
}

.main-menu,
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: inline-block;
  padding: 12px 14px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

/* Top hover -> orange + 600 */
.main-menu > li:hover > a,
.main-menu > li.current-menu-item > a,
.main-menu > li.current-menu-parent > a {
  color: #f39316;
  font-weight: 600;
}

/* ===== Caret Icon ===== */
.main-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;

  /* Down arrow */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;

  transition: transform 0.25s ease, border-top-color 0.2s ease;
}

/* Hover / submenu open -> arrow up */
.main-menu li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* =====================
   SUBMENU BOX (centered like screenshot)
===================== */
.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 260px;
  padding: 12px 0;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

/* show on hover */
.main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 6px;
}

/* =====================
   SUBMENU ITEMS (no dividers, underline on hover)
===================== */

.main-menu .sub-menu li a {
  display: block;
  padding: 10px 26px;
  text-decoration: none;
  color: #777;
  font-size: 18px;
  font-weight: 600; /* normal state 600 */
  position: relative;
}

/* orange underline (short, like screenshot) */
.main-menu .sub-menu li a::after {
  content: "";
  position: absolute;
  left: 26px; /* line starts after left padding */
  right: 26px; /* line ends before right padding */
  bottom: 6px;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
  border-bottom: 1px solid #ebebeb;
}

/* hover -> orange text + orange underline */
.main-menu .sub-menu li a:hover {
  font-weight: 600 !important;
  color: #f39316 !important;
}

.main-menu .sub-menu li a:hover::after {
  background: #f39316;
}

/* optional: active submenu item underline */
.main-menu .sub-menu li.current-menu-item > a {
  color: #f39316;
}
.main-menu .sub-menu li.current-menu-item > a::after {
  background: #f39316;
}

@media (max-width: 1023px) {
  /* Mobile menu list */
  .main-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-menu-mobile > li {
    border-bottom: 1px solid #eee;
  }

  .main-menu-mobile > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 4px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #000;
  }

  /* Submenu hidden by default */
  .main-menu-mobile .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
  }

  /* When open */
  .main-menu-mobile li.is-open > .sub-menu {
    display: block;
  }

  .main-menu-mobile .sub-menu li a {
    display: block;
    padding: 10px 4px 10px 18px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-menu-mobile .sub-menu li a:hover {
    color: #F39316;
    border-bottom-color: #F39316;
    font-weight: 600 !important;
  }

  /* Caret (same style as desktop) */
  .main-menu-mobile li.menu-item-has-children > a::after {
    content: "";
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid currentColor;
    transition: transform 0.25s ease;
  }

  /* Rotate caret when open */
  .main-menu-mobile li.is-open > a::after {
    transform: rotate(180deg);
    color: #F39316;
  }

  /* Optional: active parent color */
  .main-menu-mobile li.is-open > a {
    color: #F39316;
  }
}


/* =================== Menus css here =================== */

/* =================== GLOBAL TOKENS =================== */
:root {
  --gf-card-radius: 16px;
  --gf-card-shadow: 0 8px 22px rgba(16, 24, 40, 0.12);
  --gf-border: #e8e8e8;
  --gf-orange: #f39316;
  --gf-text: #121212;
}

/* =================== PROGRESS BAR =================== */

#gform_wrapper_1 .gf_progressbar {
  height: 6px !important;
  border-radius: 999px;
  background: #ececec !important;
}
#gform_wrapper_1 .gf_progressbar_percentage {
  height: 6px !important;
  border-radius: 999px;
  background: var(--gf-orange) !important;
}

/* ================ STAGE 1 + 2 (image choices) ================ */
/* same grid on both pages */
:is(#gform_page_1_1, #gform_page_1_2) :is(.gfield_radio, .gfield_checkbox) {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin: 18px 0 8px;
  padding: 0;
}

/* item base */
:is(#gform_page_1_1, #gform_page_1_2) .gchoice {
  list-style: none;
  margin: 0;
  padding: 0;
}
:is(#gform_page_1_1, #gform_page_1_2) .gfield-choice-input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* card (label) */
:is(#gform_page_1_1, #gform_page_1_2) .gchoice label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  min-height: 100px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--gf-border);
  border-radius: var(--gf-card-radius);
  color: var(--gf-text);
  font-weight: 700;
  line-height: 1.15;
  font-size: 18px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
}
:is(#gform_page_1_1, #gform_page_1_2) .gchoice label:hover {
  transform: translateY(-2px);
  box-shadow: var(--gf-card-shadow);
}

/* icon inside label (fallback) */
:is(#gform_page_1_1, #gform_page_1_2) .gchoice label img {
  height: 64px;
  width: auto;
  display: block;
  transition: filter 0.18s, transform 0.18s, opacity 0.18s;
}

/* selected (label) */
:is(#gform_page_1_1, #gform_page_1_2) .gfield-choice-input:checked + label {
  background: var(--gf-orange);
  border-color: var(--gf-orange);
  color: #fff;
  box-shadow: var(--gf-card-shadow);
}
:is(#gform_page_1_1, #gform_page_1_2) .gfield-choice-input:checked + label img {
  filter: brightness(0) invert(1);
  transform: translateY(-1px);
}

/* responsive */
@media (max-width: 1200px) {
  :is(#gform_page_1_1, #gform_page_1_2) .gfield_radio {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  :is(#gform_page_1_1, #gform_page_1_2) .gfield_radio {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  :is(#gform_page_1_1, #gform_page_1_2) .gfield_radio {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============== SHARED “IMAGE CHOICE” CARD STYLES ============== */
/* apply to #input_1_1, #input_1_4, #input_1_13 */
#gform_wrapper_1 :is(#input_1_1, #input_1_4, #input_1_13) .gchoice {
  position: relative;
  border: 1px solid var(--gf-border);
  border-radius: var(--gf-card-radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s,
    border-color 0.18s;
}
#gform_wrapper_1 :is(#input_1_1, #input_1_4, #input_1_13) .gchoice:hover {
  transform: translateY(-2px);
  box-shadow: var(--gf-card-shadow);
}

/* uniform icon box (image is outside label) */
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gfield-image-choice-wrapper-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  height: 100%;
}
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gfield-choice-image-wrapper {
  width: 90px;
  height: 96px;
  padding: 12px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
}
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gfield-choice-image-wrapper
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* when whole tile gets .is-selected via JS */
#gform_wrapper_1 :is(#input_1_1, #input_1_4, #input_1_13) .gchoice.is-selected {
  background: var(--gf-orange) !important;
  border-color: var(--gf-orange) !important;
  box-shadow: 0 10px 24px rgba(243, 147, 22, 0.35) !important;
}
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gchoice.is-selected
  label {
  color: #fff !important;
}
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gchoice.is-selected
  .gfield-choice-image-wrapper
  img {
  filter: brightness(0) invert(1) !important;
  transform: translateY(-1px);
}
/* hide plugin’s blue check bubble */
#gform_wrapper_1
  :is(#input_1_1, #input_1_4, #input_1_13)
  .gfield-image-choice-selected-indicator {
  display: none !important;
}

/* ================ STAGE 3 (select dropdowns) ================ */
#gform_page_1_3 .gfield_label {
  font-size: 28px;
  font-weight: 800;
  color: #676766;
  text-align: center;
  margin: 8px 0 22px;
}
#gform_page_1_3 .gform_page_fields {
  display: grid;
  justify-content: center;
}
#gform_page_1_3 .ginput_container_select select {
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 44px 12px 16px;
  border: 1px solid var(--gf-border);
  border-radius: 12px;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233A6FF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-shadow: var(--gf-card-shadow);
  font-weight: 700;
  font-size: 16px;
  color: #111;
  transition: box-shadow 0.18s, border-color 0.18s;
}
#gform_page_1_3 .ginput_container_select select:focus {
  outline: none;
  border-color: var(--gf-orange);
  box-shadow: 0 10px 24px rgba(243, 147, 22, 0.28);
}
#gform_page_1_3 .gfield[style*="display: none"] .gfield_label {
  display: none;
}
#gform_page_1_3 .gfield {
  margin-bottom: 12px;
}
#gform_page_1_3 .ginput_container_select::after {
  content: "";
  display: block;
  height: 4px;
  width: 180px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--gf-orange);
  opacity: 0.7;
}

/* ================ STAGE 4 (countries image choices) ================ */
#gform_wrapper_1 #input_1_13 {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin: 18px 0 8px;
}
@media (max-width: 1200px) {
  #gform_wrapper_1 #input_1_13 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  #gform_wrapper_1 #input_1_13 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  #gform_wrapper_1 #input_1_13 {
    grid-template-columns: repeat(2, 1fr);
  }
}

#gform_wrapper_1 #input_1_13 label.gform-field-label {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #111;
}

/* ============== STAGE 5 — Contact Information ============== */
/* 3-column row, center container */
#gform_page_1_5 .gform_page_fields {
  max-width: 1000px;
  margin: 0 auto;
}
#gform_fields_1_5 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}
@media (max-width: 1024px) {
  #gform_fields_1_5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  #gform_fields_1_5 {
    grid-template-columns: 1fr;
  }
}

/* Big heading + subtitle (HTML field with class "ci-head") */
#gform_page_1_5 .ci-head h2 {
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 800;
  color: #4b5563;
  text-align: center;
}
#gform_page_1_5 .ci-head p {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

/* Labels hide (placeholders instead) */
#gform_page_1_5 .gfield_label,
#gform_page_1_5 legend.gfield_label {
  display: none !important;
}

/* Pill inputs */
#gform_page_1_5 input[type="text"],
#gform_page_1_5 input[type="email"] {
  width: 100%;
  height: 42px;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #111;
  transition: border-color 0.18s, box-shadow 0.18s;
}
#gform_page_1_5 input[type="text"]::placeholder,
#gform_page_1_5 input[type="email"]::placeholder {
  color: #9ca3af;
  font-weight: 600;
}
#gform_page_1_5 input[type="text"]:focus,
#gform_page_1_5 input[type="email"]:focus {
  outline: none;
  border-color: #a3c7ff;
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.25);
}

/* Optional chevron look on Business field */
#gform_page_1_5 #input_1_19 {
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ============== COMMON BUTTONS — pages 1–5 ============== */
#gform_wrapper_1
  .gform_page_footer
  :is(.gform_next_button, .gform_previous_button, .gform_button),
#gform_wrapper_1 .gform_footer .gform_button {
  background: #f39316 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 22px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.15) !important;
  line-height: 1 !important;
}
#gform_wrapper_1
  .gform_page_footer
  :is(.gform_next_button, .gform_previous_button, .gform_button):hover,
#gform_wrapper_1 .gform_footer .gform_button:hover {
  transform: translateY(-1px);
}

/* Centered main submit button accent (page 5 look) */
#gform_page_1_5 .gform_page_footer .gform_button {
  background: linear-gradient(180deg, #4dabff, #2f80ed) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(47, 128, 237, 0.35) !important;
  display: block;
  margin: 12px auto 0 !important;
}
#gform_page_1_5 .gform_page_footer .gform_button:hover {
  transform: translateY(-1px);
}
/* Orange progress accent under button */
#gform_page_1_5 .gform_page_footer:after {
  content: "";
  display: block;
  height: 6px;
  width: 220px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #f39316;
  opacity: 0.9;
}
/* Space tighten */
#gform_page_1_5 .gfield {
  margin-bottom: 0;
}

/* ============== DYNAMIC HEADINGS — big & centered ============== */
/* Stage 1 + 2 legends */
#gform_wrapper_1 :is(#field_1_1, #field_1_4) legend.gfield_label {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #676766 !important;
  text-align: center !important;
  margin: 8px 0 22px !important;
  display: block !important;
}
/* Stage 3 (visible select ka label) */
#gform_wrapper_1
  #gform_page_1_3
  .gfield.gfield--type-select:not([style*="display: none"])
  .gform-field-label {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #676766 !important;
  text-align: center !important;
  margin: 8px 0 22px !important;
  display: block !important;
}
/* Stage 4 heading (legend/label) */
#gform_wrapper_1 #gform_page_1_4 :is(.gform-field-label, legend.gfield_label) {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #676766 !important;
  text-align: center !important;
  margin: 8px 0 22px !important;
}
/* Stage 4 radio labels smaller */
#gform_wrapper_1
  #gform_page_1_4
  .gform-field-label.gform-field-label--type-inline {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-left: 5px !important;
  margin-top: 0 !important;
}
/* Center all multi-page footers for form #1 */
#gform_wrapper_1 .gform-page-footer.gform_page_footer.top_label {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
}

/* Make sure buttons khud float/margin se alignment na bigaadein */
#gform_wrapper_1
  .gform-page-footer.gform_page_footer.top_label
  :is(.gform_next_button, .gform_previous_button, .gform_button) {
  float: none !important;
  margin: 0 6px !important;
}

/* Single service form css */

#gform_wrapper_2 .gf-acc-header {
  position: relative;
  padding-right: 35px;
  /* space for arrow */
  cursor: pointer;
}

/* 🟠 ARROW ICON (DOWN ARROW BY DEFAULT) */
#gform_wrapper_2 .gf-acc-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23707070' stroke-width='2.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}

/* 🟠 WHEN HEADER IS OPEN → ROTATE ARROW UP */
#gform_wrapper_2 .gf-acc-header.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Sirf form ID 3 ke liye apply hoga */
#gform_wrapper_2 .gform_fields {
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  row-gap: 0 !important;
}

/* Har field ke beech thoda spacing (jaise tum chahte ho) */
#gform_wrapper_2 .gfield {
  margin-bottom: 0.75rem;
  /* ~12px, chota neat gap */
}

/* Section header row – flex, border-bottom, spacing */
#gform_wrapper_2 .gf-acc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
  margin-top: 1.5rem;
  /* mt-6 */
  margin-bottom: 1.5rem;
  /* mb-6 */
  padding-bottom: 0.5rem;
  /* pb-2 */
  border-bottom: 1px solid #e5e5ea;
  cursor: pointer;
}

/* Section title text – text-[20px] text-[#707070] font-bold */
#gform_wrapper_2 .gf-acc-header .gsection_title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #707070;
}

/* OPTIONAL: agar tum step number circle chahte ho (1,2,3,...)    To yeh pseudo-element use kar sakte ho */
#gform_wrapper_2 .gf-acc-header {
  position: relative;
}

/* Step circle before text (1/2/3...) */
#gform_wrapper_2 .gf-acc-header::before {
  content: attr(data-step);
  /* aap data-step="1" etc. add kar sakte ho section field pe */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #f39316;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-right: 8px;
}

/* Jab header open ho (JS se .is-open add ho raha hai) */
#gform_wrapper_2 .gf-acc-header.is-open {
  border-bottom-color: #f39316;
}

#gform_wrapper_2 .gfield_label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #707070;
  margin-bottom: 0.25rem;
  /* pb-2 jaisa effect */
}

#gform_wrapper_2 input[type="text"],
#gform_wrapper_2 input[type="email"],
#gform_wrapper_2 select,
#gform_wrapper_2 textarea {
  width: 100%;
  color: #000000;
  border-radius: 5px;
  border: 1px solid #e5e5ea;
  padding: 0.25rem 1rem;
  font-size: 14px;
  box-sizing: border-box;
}

/* Placeholder color */
#gform_wrapper_2 input::placeholder,
#gform_wrapper_2 textarea::placeholder {
  color: #707070 !important;
  opacity: 1;
}

/* Inputs, selects, textarea – same look as Tailwind class */
#gform_wrapper_2 input[type="text"],
#gform_wrapper_2 input[type="email"],
#gform_wrapper_2 select,
#gform_wrapper_2 textarea {
  width: 100%;
  color: #000000;
  /* text-black */
  border-radius: 5px;
  /* rounded-sm */
  border: 1px solid #e5e5ea;
  /* border-[#707070] */
  padding: 0.25rem 1rem;
  /* py-1 px-4 */
  font-size: 14px;
  box-sizing: border-box;
}

/* Textarea height thodi readable */
#gform_wrapper_2 textarea {
  min-height: 120px;
}

/* Field spacing – like mt-4 between fields */
#gform_wrapper_2 .gfield {
  margin-bottom: 1rem;
}

#input_2_20_3_container label {
  visibility: hidden !important;
}

/* Select fields like Stage / Budget */
#gform_wrapper_2 select.gfield_select {
  border-radius: 0.375rem;
  /* rounded-md */
  border: 1px solid #f39316;
  color: #f39316;
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
  cursor: pointer;
}

/* On focus/hover thoda highlight */
#gform_wrapper_2 select.gfield_select:focus {
  outline: none;
  box-shadow: 0 0 0 1px #f39316;
}

/* Checkbox rows – flex gap-2 items-center */
#gform_wrapper_2 .ginput_container_checkbox .gfield_checkbox > div,
#gform_wrapper_2 .ginput_container_consent {
  display: flex;
  align-items: center;
  gap: 4px;
}

#field_2_23 {
  visibility: hidden !important;
}

/* Checkbox labels text style */
#gform_wrapper_2 .ginput_container_checkbox label,
#gform_wrapper_2 .ginput_container_consent label {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
}

/* Privacy Policy link underlined */
#gform_wrapper_2 .ginput_container_consent a,
#gform_wrapper_2 .ginput_container_checkbox a {
  text-decoration: underline;
}

/* Submit button */
#gform_wrapper_2 .gform_footer input[type="submit"],
#gform_wrapper_2 .gform_page_footer input[type="submit"] {
  width: 100%;
  cursor: pointer;
  background: #f39316;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  padding: 0.25rem 1rem;
  /* py-1 approx */
  border-radius: 9999px;
  /* rounded-full */
  border: 2px solid #f39316;
  transition: all 0.2s ease-in-out;
}

/* Hover state */
#gform_wrapper_2 .gform_footer input[type="submit"]:hover,
#gform_wrapper_2 .gform_page_footer input[type="submit"]:hover {
  background: #ffffff;
  color: #f39316;
}



/* ----- NewSingle template: GF sidebar accordion, enabled by .js-gf-section-accordion ----- */
.js-gf-section-accordion .gf-acc-header {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5ea;
}

.js-gf-section-accordion .gf-acc-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23707070' stroke-width='2.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}

.js-gf-section-accordion .gf-acc-header.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.js-gf-section-accordion .gform_fields {
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  row-gap: 0 !important;
}

.js-gf-section-accordion .gf-acc-header .gsection_title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #707070;
}

.js-gf-section-accordion .gf-acc-header::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #707070;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-right: 8px;
}

.js-gf-section-accordion .gf-acc-header.is-open {
  border-bottom-color: #707070;
}

.js-gf-section-accordion .gfield_label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #707070;
  margin-bottom: 0.25rem;
}

.js-gf-section-accordion input[type="text"],
.js-gf-section-accordion input[type="email"],
.js-gf-section-accordion select,
.js-gf-section-accordion textarea {
  width: 100%;
  color: #000000;
  border-radius: 5px;
  border: 1px solid #e5e5ea;
  padding: 0.25rem 1rem;
  font-size: 14px;
  box-sizing: border-box;
}

.js-gf-section-accordion input::placeholder,
.js-gf-section-accordion textarea::placeholder {
  color: #707070 !important;
  opacity: 1;
}

.js-gf-section-accordion textarea {
  min-height: 120px;
}

.js-gf-section-accordion .gfield {
  margin-bottom: 1rem;
}

.js-gf-section-accordion select.gfield_select {
  border-radius: 0.375rem;
  border: 1px solid #707070;
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
  cursor: pointer;
}

.js-gf-section-accordion select.gfield_select:focus {
  outline: none;
  box-shadow: 0 0 0 1px #707070;
}

.js-gf-section-accordion .ginput_container_checkbox .gfield_checkbox > div,
.js-gf-section-accordion .ginput_container_consent {
  display: flex;
  align-items: center;
  gap: 4px;
}

.js-gf-section-accordion .ginput_container_checkbox label,
.js-gf-section-accordion .ginput_container_consent label {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
}

.js-gf-section-accordion .ginput_container_consent a,
.js-gf-section-accordion .ginput_container_checkbox a {
  text-decoration: underline;
}

.js-gf-section-accordion .gform_footer input[type="submit"],
.js-gf-section-accordion .gform_page_footer input[type="submit"] {
  width: 100%;
  cursor: pointer;
  background: #707070;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 2px solid #707070;
  transition: all 0.2s ease-in-out;
}

.js-gf-section-accordion .gform_footer input[type="submit"]:hover,
.js-gf-section-accordion .gform_page_footer input[type="submit"]:hover {
  background: #ffffff;
  color: #707070;
}

.js-gf-section-accordion .gf-always-visible {
  display: block !important;
}

.footer-link li:not(.menu-item-has-children) {
  margin-bottom: 16px;
}