.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1e3c23;
  padding: 12px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
}

.custom-header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left img {
  max-height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.header-link {
  color: #a8ff94;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.header-link:hover {
  color: #ffffff;
}

.header-button {
  background-color: #a8ff94;
  color: #1e3c23;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header-button:hover {
  background-color: #8ed86e;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* ===== WPForms Styling ===== */

/* Labels */
.wpforms-container label,
.wpforms-container .wpforms-field-label,
.wpforms-container .wpforms-field-sublabel {
    color: #ffffff !important;
    font-weight: 600;
}

/* Required asterisk */
.wpforms-required-label {
    color: #A8FF94 !important;
}

/* Input fields */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container textarea,
.wpforms-container select {
    background: #ffffff;
    color: #222;
    border: 2px solid #6FAE3F;
    border-radius: 8px;
    padding: 12px;
}

/* Placeholder text */
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
    color: #777;
}

/* Submit button */
.wpforms-container .wpforms-submit {
    background: #6FAE3F !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease;
}

.wpforms-container .wpforms-submit:hover {
    background: #4D8E2A !important;
    transform: translateY(-2px);
}

/* Validation & helper text */
.wpforms-container em,
.wpforms-container .wpforms-error,
.wpforms-container .wpforms-field-description {
    color: #ffffff !important;
}