/* ===== Base Styles ===== */
.nf-form-content {
/*  width: 750px !important;
  margin: 0 auto;
  background: white;
  padding: 30px !important;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-height: 400px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;*/
}

/* ===== Typography & Links ===== */
.nf-field-label {
/*  font-size: 18px !important;
  margin-bottom: 20px !important;
  text-align: flex;
  padding-top: 20px;
  padding-bottom: 20px;*/
}
.nf-field-label a {
  text-decoration: underline;
  color: orange;
}

/* ===== Form Structure ===== */
.nf-field-container {
  margin-bottom: 15px !important;
}

/* ===== Radio Button Grid ===== */
.nf-field-element ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0 auto;
  width: 90%;
}

.nf-field-element li,
.gchoice {
  flex: 0 1 200px;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid rgba(0,0,0,0.1) !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nf-field-element li:hover,
.gchoice:hover {
  border-color: #e65c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== Radio Button Customization ===== */
.nf-field-element li input {
  display: none !important;
}

/* Label Alignment Fix - Critical Update */
.list-checkbox-wrap .nf-field-element li label,
.list-image-wrap .nf-field-element li label, 
.list-radio-wrap .nf-field-element li label {
  float: none;
  width: auto;
  /* display: block; and margin-left: 1.5em; remain commented out */
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  height: 120px;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  margin-left: 0px !important;
}

/* Selected state */
.nf-field-element input[type="radio"]:checked + label {
  background-color: #f8f8f8;
  border-color: #e65c00;
}

.gchoice-icon {
  padding-top: 10px;
  margin: 0 auto !important;
  width: 50px !important;
}

/* ===== Submit Button ===== */
.submit-wrap {
  margin-top: auto;
}
.submit-wrap input {
  width: 100% !important;
  height: 65px !important;
  font-size: 22px !important;
}

/* ===== Hide Elements ===== */
.nf-mp-header,
.nf-form-fields-required,
.listradio-wrap .nf-field-element label.nf-checked-label:before,
.listradio-wrap .nf-field-element label:after {
  display: none !important;
}

.nf-mp-footer {
  visibility: hidden !important;
  height: 0 !important;
}

/* ===== Spacing ===== */
.nd_travel_container {
  padding-bottom: 200px;
}

input[type=date], input[type=email], input[type=number],
input[type=password], input[type=search], input[type=tel],
input[type=text], input[type=url], select, textarea {
    padding: 15px;
}

/* ===== Mobile Responsiveness ===== */
@media only screen and (max-width: 600px) {
  .nf-form-content {
    width: 100% !important;
    min-height: 350px !important;
    padding: 20px 15px !important;
  }
  
  .nf-field-element ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .nf-field-element li,
  .gchoice {
    width: 100% !important;
    height: 100px !important;
    max-width: 100% !important;
  }
  
  .list-radio-wrap .nf-field-element li label {
    height: 100%;
    padding: 10px;
    font-size: 16px !important;
  }
  
  .submit-wrap input {
    height: 55px !important;
    font-size: 18px !important;
    font-family: inherit;
    text-transform: uppercase;
  }
}

/* ===== Desktop Enhancements ===== */
@media only screen and (min-width: 601px) {
/*  .nf-form-cont {
    min-height: 400px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }*/
  
  #nf-form-26-cont.nf-form-cont {
    min-height: 400px !important;
  }
    
}   
}